fix
This commit is contained in:
@@ -205,7 +205,7 @@ class OrderDetailPage extends ConsumerWidget {
|
||||
children: [
|
||||
// Order Number and Status Badge
|
||||
Text(
|
||||
'#${order.name}',
|
||||
order.name,
|
||||
style: TextStyle(
|
||||
fontSize: 20,
|
||||
fontWeight: FontWeight.w700,
|
||||
|
||||
@@ -248,7 +248,7 @@ class PaymentDetailPage extends ConsumerWidget {
|
||||
Column(
|
||||
children: [
|
||||
Text(
|
||||
'#$invoiceNumber',
|
||||
'$invoiceNumber',
|
||||
style: TextStyle(
|
||||
fontSize: 24,
|
||||
fontWeight: FontWeight.w700,
|
||||
|
||||
@@ -227,7 +227,7 @@ class PaymentsPage extends ConsumerWidget {
|
||||
children: [
|
||||
_DetailRow(
|
||||
label: 'Mã giao dịch:',
|
||||
value: '#${payment.name}',
|
||||
value: '${payment.name}',
|
||||
),
|
||||
_DetailRow(
|
||||
label: 'Loại giao dịch:',
|
||||
@@ -325,7 +325,7 @@ class _TransactionCard extends StatelessWidget {
|
||||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||
children: [
|
||||
Text(
|
||||
'#${payment.name}',
|
||||
payment.name,
|
||||
style: TextStyle(
|
||||
fontSize: 15,
|
||||
fontWeight: FontWeight.w700,
|
||||
|
||||
@@ -48,7 +48,7 @@ class OrderCard extends StatelessWidget {
|
||||
children: [
|
||||
// Order number
|
||||
Text(
|
||||
'#${order.name}',
|
||||
'${order.name}',
|
||||
style: TextStyle(
|
||||
fontSize: 16,
|
||||
fontWeight: FontWeight.w700,
|
||||
|
||||
Reference in New Issue
Block a user