Merge branch 'freight/develop' of github.com:Tria-plc/edr-platform into freight_feature/change_to_mantine

This commit is contained in:
marshal
2026-06-08 10:05:48 +03:00
20 changed files with 2608 additions and 772 deletions

View File

@@ -245,6 +245,21 @@ export interface IBooking extends BaseEntity {
latestChangeRequestNote?: string | null;
contractSummary?: string | null;
pricingBreakdown?: PricingBreakdown | null;
}
export interface PricingBreakdownLineItem {
code: string;
amount: number;
currency: string;
description: string;
}
export interface PricingBreakdown {
currency: string;
lineItems: PricingBreakdownLineItem[];
generatedAt: string;
totalAmount: number;
}
export interface IInvoice extends BaseEntity {