Merge branch 'feat/FE/US-334/expedition-hpp-report' into 'development'

[FEAT/FE][US#334] Slicing and Integrate API Expedition HPP Report Table

See merge request mbugroup/lti-web-client!111
This commit is contained in:
Adnan Zahir
2025-12-23 10:57:59 +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;