mirror of
https://github.com/Tria-plc/edr-platform.git
synced 2026-08-26 18:42:49 +00:00
Merge branch 'freight/develop' of github.com:Tria-plc/edr-platform into freight_feature/change_to_mantine
This commit is contained in:
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user