Merge branch 'feat/FE/US-334/expedition-hpp-report' of gitlab.com:mbugroup/lti-web-client into dev/restu

This commit is contained in:
rstubryan
2025-12-23 10:55:03 +07:00
5 changed files with 158 additions and 2 deletions
+13
View File
@@ -283,3 +283,16 @@ export interface DataSummarySubTotal {
rp_per_kg: number;
amount: number;
}
export type BaseExpeditionCost = {
id: number;
expedition_vendor_name: string;
hpp_amount: number;
};
export type BaseHppExpedition = {
expedition_costs: BaseExpeditionCost[];
total_hpp_amount: number;
};
export type ClosingHppExpedition = BaseMetadata & BaseHppExpedition;