renhao
2023-09-21 1aa9f2bb83dd9e4b7517f1cbf06b0db53979bb31
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
export enum DataFoodBaseUnitCost {
  Account = 'General fixed costs',
  CostDriver = 'Fixed',
  EditStart = '1-Jan',
  UoM = '€/Month',
  Start1 = '1-Jan-2020',
  Start2 = '1-Feb',
  Start3 = '1-Jan-2021',
  Start4 = '2021-01-01',
  EditCost = '999',
}
 
export enum DataFoodBaseUnitCostStart {
  _1Jan2019 = '1-Jan-2019',
  _1Jan2020 = '1-Jan-2020',
}
 
export enum DataFoodBaseUnitCostTimeUnit {
  Month = 'Month',
}
 
export enum DataFoodBaseUnitCostLengOfTime {
  _1 = 1,
}
 
export enum DataFoodBaseUnitCostCost {
  _200 = 200,
  _1000 = 1000,
  _2000 = 2000,
}