mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
feat(FE-345): Add Cost of Services expedition types and export
ClosingSales
This commit is contained in:
Vendored
+14
@@ -26,4 +26,18 @@ export type BaseClosingSales = {
|
||||
sales: BaseSales[];
|
||||
};
|
||||
|
||||
export type BaseCosExpedition = {
|
||||
id: number;
|
||||
expedition_name: string;
|
||||
hpp: number;
|
||||
};
|
||||
|
||||
export type BaseClosingCosExpedition = {
|
||||
project_type: string;
|
||||
flock_id: number;
|
||||
period: number;
|
||||
cos_expeditions: BaseCosExpedition[];
|
||||
};
|
||||
|
||||
export type ClosingSales = BaseMetadata & BaseClosingSales;
|
||||
export type ClosingCosExpedition = BaseMetadata & BaseClosingCosExpedition;
|
||||
|
||||
Reference in New Issue
Block a user