mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
fix: types isses
This commit is contained in:
@@ -595,6 +595,7 @@ export interface CreateBulkLineDto {
|
||||
cargoWeightTons?: number;
|
||||
itemCount?: number;
|
||||
hazardousQuantity?: number;
|
||||
reeferQuantity?: number;
|
||||
}
|
||||
|
||||
/** Shipment booking created under a contract (Path A customer, Path B GL ET). */
|
||||
|
||||
@@ -586,6 +586,10 @@ export interface IInvoice extends BaseEntity {
|
||||
companyProfileId: string;
|
||||
companyProfile?: IInvoiceCompanyProfile;
|
||||
totalAmount: number;
|
||||
/** Cumulative amount settled so far (supports partial payment). */
|
||||
paidAmount: number;
|
||||
/** Outstanding balance = totalAmount - paidAmount (0 once fully paid). */
|
||||
balanceAmount: number;
|
||||
currency: string;
|
||||
status: InvoiceStatus;
|
||||
/** Originating subsystem: booking / warehouse / demurrage. */
|
||||
|
||||
Reference in New Issue
Block a user