This commit is contained in:
natib21
2026-07-04 01:31:08 +00:00
parent 92eabfc94b
commit 58c49d34b2
4 changed files with 51 additions and 20 deletions

View File

@@ -16,6 +16,7 @@ export interface FirstMileBooking {
cargoFreeText?: string | null;
cargoTotalWeightVgm: number;
totalAmount: number;
paymentCurrency?: string | null;
scheduledDate?: string | null;
company?: { id: string; name?: string; phone?: string | null; contactPersonName?: string | null; contactPersonPhone?: string | null } | null;
serviceType?: { id: string; label?: string } | null;

View File

@@ -16,6 +16,7 @@ export interface LastMileBooking {
cargoFreeText?: string | null;
cargoTotalWeightVgm: number;
totalAmount: number;
paymentCurrency?: string | null;
scheduledDate?: string | null;
company?: { id: string; name?: string; phone?: string | null; contactPersonName?: string | null; contactPersonPhone?: string | null } | null;
serviceType?: { id: string; name?: string; label?: string } | null;