fix homepage news, invoice

This commit is contained in:
Phuoc Nguyen
2025-12-09 11:17:32 +07:00
parent e0a9b3b9f4
commit 597c6a0e57
8 changed files with 51 additions and 99 deletions

View File

@@ -75,6 +75,7 @@ class BuyerInfo extends Equatable {
final String? wardCode;
final String? cityName;
final String? wardName;
final String? customerName;
const BuyerInfo({
this.name,
@@ -88,6 +89,7 @@ class BuyerInfo extends Equatable {
this.wardCode,
this.cityName,
this.wardName,
this.customerName
});
/// Get formatted full address
@@ -118,6 +120,7 @@ class BuyerInfo extends Equatable {
wardCode,
cityName,
wardName,
customerName
];
}