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

@@ -209,7 +209,7 @@ class _InvoiceCard extends StatelessWidget {
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
'#${invoice.name}',
invoice.name,
style: TextStyle(
fontSize: 16,
fontWeight: FontWeight.w700,
@@ -252,7 +252,7 @@ class _InvoiceCard extends StatelessWidget {
if (invoice.orderId != null)
_DetailRow(
label: 'Đơn hàng:',
value: '#${invoice.orderId}',
value: '${invoice.orderId}',
),
_DetailRow(
label: 'Tổng tiền:',