refactor(FE-344): Add Cost of Revenue Expedition table

This commit is contained in:
rstubryan
2025-12-11 14:27:29 +07:00
parent 3c03494bd3
commit 4262e8e286
4 changed files with 148 additions and 120 deletions
+16
View File
@@ -47,6 +47,22 @@ export type BaseClosing = {
export type Closing = BaseMetadata & BaseClosing;
export type BaseCostOfRevenueExpedition = {
id: number;
expedition_name: string;
hpp: number;
};
export type BaseClosingCostOfRevenueExpedition = {
project_type: string;
flock_id: number;
period: number;
cos_expeditions: BaseCostOfRevenueExpedition[];
};
export type ClosingCostOfRevenueExpedition = BaseMetadata &
BaseClosingCostOfRevenueExpedition;
export type BaseClosingGeneralInformation = BaseClosing & {
flock_id: number;
period: number;