| 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
31
32
33
 | | export enum DataResetPlanRadioButtonValues { |  |   ResetAll = 'Reset all', |  |   ResetLockedPlanning = 'Reset locked planning', |  |   ResetPlanOfOptimizer = 'Reset plan of optimizer', |  | } |  |   |  | export enum DataMatrixProductPlanningRowName { |  |   LowFat12PKBulgaria = 'Lowfat Strawberry 12 pk in DC - Bulgaria', |  |   BCCBWideInAsia = 'BC CB wide in Asia', |  |   CPNCoilInLaQuinta = 'CPN coil in La Quinta', |  |   CPNCoilInNorthAmerica = 'CPN coil in North America', |  |   CPNCoilInQuentin = 'CPN coil in Quentin', |  |   BCCBWideInQiYing = 'BC CB wide in Qi-Ying', |  | } |  |   |  | export enum DataMatrixProductPlanningAttributeName { |  |   TotalSupply = 'Total supply', |  |   InventoryEnd = 'Inventory end (quantity)', |  |   TotalDemand = 'Total demand', |  | } |  |   |  | export enum DataMatrixProductPlanningColumnName { |  |   Jan2021 = '1-Jan-2021', |  |   Feb2021 = '1-Feb-2021', |  |   Mar2021 = '1-Mar-2021', |  |   Apr2021 = '1-Apr-2021', |  |   May2021 = '1-May-2021', |  |   Jun2021 = '1-Jun-2021', |  | } |  |   |  | export enum DataMatrixProductPlanningValue { |  |   _10000 = '10,000', |  | } | 
 |