fix: the request approaval pricing ui

This commit is contained in:
ghost2023
2026-06-06 11:44:15 +03:00
parent c76c6dbf90
commit e152e7e986
2 changed files with 26 additions and 47 deletions

View File

@@ -244,6 +244,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 {