This commit is contained in:
Phuoc Nguyen
2025-12-11 16:55:25 +07:00
parent fc6a4f038e
commit 4546e7d8e8
15 changed files with 91 additions and 106 deletions

View File

@@ -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,

View File

@@ -248,7 +248,7 @@ class PaymentDetailPage extends ConsumerWidget {
Column(
children: [
Text(
'#$invoiceNumber',
'$invoiceNumber',
style: TextStyle(
fontSize: 24,
fontWeight: FontWeight.w700,

View File

@@ -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,