mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-23 14:55:44 +00:00
refactor(FE-344): Add Cost of Revenue Expedition table
This commit is contained in:
Vendored
+16
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user