chenqinghong
2024-05-07 3ec06a830367465068963156dcc1d8e522571c13
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
Quintiq file version 2.0
#parent: #root
MethodOverride GetDescription () const declarative remote as String
{
  Description: 'Get description of this import object group from the translations'
  TextBody:
  [*
    // Get description of this import object group from the translations
    result := this.Description();
    
    // ObjectGroup Accounts
    if( this.Name() = MPSyncUtility::ID_ObjectGroup_Accounts() )
    {
      result := Translations::MPSync_ObjectGroup_Accounts_Desc();
    }
    // ObjectGroup Actuals
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Actuals() )
    {
      result := Translations::MPSync_ObjectGroup_Actuals_Desc();
    }
    // ObjectGroup Bookmarks
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Bookmarks() )
    {
      result := Translations::MPSync_ObjectGroup_Bookmarks_Desc();
    }
    // ObjectGroup Campaigns
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Campaigns() )
    {
      result := Translations::MPSync_ObjectGroup_Campaigns_Desc();
    }
    // ObjectGroup Capacities
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Capacities() )
    {
      result := Translations::MPSync_ObjectGroup_Capacities_Desc();
    }
    // ObjectGroup EntitiesCosts
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Costs() )
    {
      result := Translations::MPSync_ObjectGroup_Costs_Desc();
    }
    // ObjectGroup Entities
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Entities() )
    {
      result := Translations::MPSync_ObjectGroup_Entities_Desc();
    }
    // ObjectGroup Feedback
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Feedback() )
    {
      result := Translations::MPSync_ObjectGroup_Feedback_Desc();
    }
    // ObjectGroup GlobalParameters
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_GlobalParameters() )
    {
      result := Translations::MPSync_ObjectGroup_GlobalParameters_Desc();
    }
    // ObjectGroup ImportProfiles
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_ImportProfiles() )
    {
      result := Translations::MPSync_ObjectGroup_ImportProfiles_Desc();
    }
    // ObjectGroup InventorySpecifications
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_InventorySpecifications() )
    {
      result := Translations::MPSync_ObjectGroup_InventorySpecifications_Desc();
    }
    // ObjectGroup InventorySupplies
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_InventorySupplies() )
    {
      result := Translations::MPSync_ObjectGroup_InventorySupplies_Desc();
    }
    // Object group KPI setting
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_KPISetting() )
    {
      result := Translations::MPSync_ObjectGroup_KPISetting_Desc();
    }
    // ObjectGroup Lanes
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Lanes() )
    {
      result := Translations::MPSync_ObjectGroup_Lanes_Desc();
    }
    // ObjectGroup Periods
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Periods() )
    {
      result := Translations::MPSync_ObjectGroup_Periods_Desc();
    }
    // ObjectGroup Products
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Products() )
    {
      result := Translations::MPSync_ObjectGroup_Products_Desc();
    }
    // ObjectGroup Recipes
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Recipes() )
    {
      result := Translations::MPSync_ObjectGroup_Recipes_Desc();
    }
    // ObjectGroup Routings
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Routings() )
    {
      result := Translations::MPSync_ObjectGroup_Routings_Desc();
    }
    // ObjectGroup SalesDemands
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Forecast() )
    {
      result := Translations::MPSync_ObjectGroup_Forecasts_Desc();
    }
    // ObjectGroup ServiceLevels
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_ServiceLevels() )
    {
      result := Translations::MPSync_ObjectGroup_ServiceLevels_Desc();
    }
    // ObjectGroup Strategies
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_Strategies() )
    {
      result := Translations::MPSync_ObjectGroup_Strategies_Desc();
    }
    // ObjectGroup SupplyChainParameters
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_SupplyChainParameters() )
    {
      result := Translations::MPSync_ObjectGroup_SupplyChainParameters_Desc();
    }
    // ObjectGroup SupplySpecifications
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_SupplySpecifications() )
    {
      result := Translations::MPSync_ObjectGroup_SupplySpecifications_Desc();
    }
    // ObjectGroup OptimizerPuzzles
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_OptimizerPuzzle() )
    {
      result := Translations::MPSync_ObjectGroup_OptimizerPuzzles_Desc();
    }
    // ObjectGroup PostponementSpecAndFulfillment
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_PostponementSpecAndFulfillmentRestriction() )
    {
      result := Translations::MPSync_ObjectGroup_PostponementSpecAndFulfillmentRestriction_Desc();
    }
    // ObjectGroup PostponementSpecAndFulfillment
    else if( this.Name() = MPSyncUtility::ID_ObjectGroup_CustomerOrder() )
    {
      result := Translations::MPSync_ObjectGroup_CustomerOrder_Desc();
    }
    
    return result;
  *]
}