@ah-automation.nl/component-lib 0.0.122 → 0.0.123
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/types/dtos/index.d.ts +1 -1
- package/dist/types/dtos/index.d.ts.map +1 -1
- package/dist/types/dtos/master/data/master-data.d.ts +682 -1103
- package/dist/types/dtos/master/data/master-data.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -1,1285 +1,864 @@
|
|
|
1
|
-
import type { CosmosDocumentDTO, CountryDTO, EntityTypeDTO } from "../../../../types";
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
1
|
+
import type { AccountBaseDTO, AddressDTO, BestBeforeDateGenerator, CosmosDocumentDTO, CountryDTO, DataSetDTO, DescriptionV3, EntityTypeDTO, GroupGenerator, GroupSimpleV3, IdentityVehicleDTO, ProductDetails } from "../../../../types";
|
|
2
|
+
import type { MDataDTO } from "./master-data-full";
|
|
3
|
+
export type VehicleDTO = IdentityVehicleDTO;
|
|
4
|
+
export type MasterDataDTO = {
|
|
5
|
+
id: string;
|
|
6
|
+
AccountId: string;
|
|
7
|
+
Company: string;
|
|
8
|
+
MasterData: MDataDTO[];
|
|
9
|
+
};
|
|
10
|
+
export type BranchesDTO = {
|
|
11
|
+
Branches: EntityTypeDTO[] | null;
|
|
8
12
|
} & CosmosDocumentDTO;
|
|
9
|
-
export type
|
|
10
|
-
|
|
11
|
-
Certificate: string | null;
|
|
13
|
+
export type WarehousesDTO = {
|
|
14
|
+
Warehouses: EntityTypeDTO[] | null;
|
|
12
15
|
} & CosmosDocumentDTO;
|
|
13
|
-
export type
|
|
14
|
-
|
|
15
|
-
Days: EntityTypeDTO[] | null;
|
|
16
|
+
export type ProductFinancialVatGroupsDTO = {
|
|
17
|
+
ProductFinancialVatGroups: EntityTypeDTO[] | null;
|
|
16
18
|
} & CosmosDocumentDTO;
|
|
17
|
-
export type
|
|
18
|
-
|
|
19
|
-
DeliveryDayTourTypes: EntityTypeDTO[] | null;
|
|
19
|
+
export type SalesDTO = {
|
|
20
|
+
Sales: EntityTypeDTO[] | null;
|
|
20
21
|
} & CosmosDocumentDTO;
|
|
21
|
-
export type
|
|
22
|
-
|
|
23
|
-
Invoices: EntityTypeDTO[] | null;
|
|
22
|
+
export type SalesBonusDTO = {
|
|
23
|
+
SalesBonus: EntityTypeDTO[] | null;
|
|
24
24
|
} & CosmosDocumentDTO;
|
|
25
|
-
export type
|
|
26
|
-
|
|
25
|
+
export type SalesDiscountsDTO = {
|
|
26
|
+
SalesDiscounts: EntityTypeDTO[] | null;
|
|
27
27
|
} & CosmosDocumentDTO;
|
|
28
|
-
export type
|
|
29
|
-
|
|
30
|
-
AlbaGroups: EntityTypeDTO[] | null;
|
|
28
|
+
export type SalesCostsDTO = {
|
|
29
|
+
SalesCosts: EntityTypeDTO[] | null;
|
|
31
30
|
} & CosmosDocumentDTO;
|
|
32
|
-
export type
|
|
33
|
-
|
|
31
|
+
export type SalesTransportsDTO = {
|
|
32
|
+
SalesTransports: EntityTypeDTO[] | null;
|
|
34
33
|
} & CosmosDocumentDTO;
|
|
35
|
-
export type
|
|
36
|
-
|
|
37
|
-
BookTypes: EntityTypeDTO[] | null;
|
|
34
|
+
export type PurchasesDTO = {
|
|
35
|
+
Purchases: EntityTypeDTO[] | null;
|
|
38
36
|
} & CosmosDocumentDTO;
|
|
39
|
-
export type
|
|
40
|
-
|
|
37
|
+
export type PurchaseDiscountsDTO = {
|
|
38
|
+
PurchaseDiscounts: EntityTypeDTO[] | null;
|
|
41
39
|
} & CosmosDocumentDTO;
|
|
42
|
-
export type
|
|
43
|
-
|
|
40
|
+
export type PurchaseBonusDTO = {
|
|
41
|
+
PurchaseBonus: EntityTypeDTO[] | null;
|
|
44
42
|
} & CosmosDocumentDTO;
|
|
45
|
-
export type
|
|
46
|
-
|
|
43
|
+
export type PurchaseCostsDTO = {
|
|
44
|
+
PurchaseCosts: EntityTypeDTO[] | null;
|
|
47
45
|
} & CosmosDocumentDTO;
|
|
48
|
-
export type
|
|
49
|
-
|
|
50
|
-
ClaimInvoices: EntityTypeDTO[] | null;
|
|
46
|
+
export type PurchaseTransportsDTO = {
|
|
47
|
+
PurchaseTransports: EntityTypeDTO[] | null;
|
|
51
48
|
} & CosmosDocumentDTO;
|
|
52
|
-
export type
|
|
53
|
-
|
|
49
|
+
export type ProductionsDTO = {
|
|
50
|
+
Productions: EntityTypeDTO[] | null;
|
|
54
51
|
} & CosmosDocumentDTO;
|
|
55
|
-
export type
|
|
56
|
-
|
|
52
|
+
export type ProductionDiscountsDTO = {
|
|
53
|
+
ProductionDiscounts: EntityTypeDTO[] | null;
|
|
57
54
|
} & CosmosDocumentDTO;
|
|
58
|
-
export type
|
|
59
|
-
|
|
55
|
+
export type ProductionBonusDTO = {
|
|
56
|
+
ProductionBonus: EntityTypeDTO[] | null;
|
|
60
57
|
} & CosmosDocumentDTO;
|
|
61
|
-
export type
|
|
62
|
-
|
|
58
|
+
export type ProductionCostsDTO = {
|
|
59
|
+
ProductionCosts: EntityTypeDTO[] | null;
|
|
63
60
|
} & CosmosDocumentDTO;
|
|
64
|
-
export type
|
|
65
|
-
|
|
61
|
+
export type ProductionTransportsDTO = {
|
|
62
|
+
ProductionTransports: EntityTypeDTO[] | null;
|
|
66
63
|
} & CosmosDocumentDTO;
|
|
67
|
-
export type
|
|
68
|
-
|
|
64
|
+
export type StockWarehousesDTO = {
|
|
65
|
+
StockWarehouses: EntityTypeDTO[] | null;
|
|
69
66
|
} & CosmosDocumentDTO;
|
|
70
|
-
export type
|
|
71
|
-
|
|
72
|
-
Countries: CountryDTO[];
|
|
67
|
+
export type StockDTO = {
|
|
68
|
+
Stock: EntityTypeDTO[] | null;
|
|
73
69
|
} & CosmosDocumentDTO;
|
|
74
|
-
export type
|
|
75
|
-
|
|
70
|
+
export type ProductDTO = {
|
|
71
|
+
Product: EntityTypeDTO[] | null;
|
|
76
72
|
} & CosmosDocumentDTO;
|
|
77
|
-
export type
|
|
78
|
-
|
|
73
|
+
export type CompanyBranchesDTO = {
|
|
74
|
+
CompanyBranches: EntityTypeDTO[] | null;
|
|
79
75
|
} & CosmosDocumentDTO;
|
|
80
|
-
export type
|
|
81
|
-
|
|
82
|
-
Currencies: EntityTypeDTO[] | null;
|
|
76
|
+
export type CompanyCategoriesDTO = {
|
|
77
|
+
CompanyCategories: EntityTypeDTO[] | null;
|
|
83
78
|
} & CosmosDocumentDTO;
|
|
84
|
-
export type
|
|
85
|
-
|
|
79
|
+
export type GroupsDTO = {
|
|
80
|
+
Groups: EntityTypeDTO[] | null;
|
|
86
81
|
} & CosmosDocumentDTO;
|
|
87
|
-
export type
|
|
88
|
-
|
|
89
|
-
DiscountGroup: string | null;
|
|
90
|
-
DiscountType: string | null;
|
|
91
|
-
EndDate: string | null;
|
|
92
|
-
IsActive: number | null;
|
|
93
|
-
IsPercentage: number | null;
|
|
94
|
-
Name: string | null;
|
|
95
|
-
StartDate: string | null;
|
|
96
|
-
Value: number | null;
|
|
82
|
+
export type ProductBranchesDTO = {
|
|
83
|
+
ProductBranches: EntityTypeDTO[] | null;
|
|
97
84
|
} & CosmosDocumentDTO;
|
|
98
|
-
export type
|
|
99
|
-
|
|
100
|
-
Discounts: DiscountDTO[] | null;
|
|
85
|
+
export type ProductCalculationTypesDTO = {
|
|
86
|
+
ProductCalculationTypes: EntityTypeDTO[] | null;
|
|
101
87
|
} & CosmosDocumentDTO;
|
|
102
|
-
export type
|
|
103
|
-
|
|
88
|
+
export type ProductCalculationGroupsDTO = {
|
|
89
|
+
ProductCalculationGroups: EntityTypeDTO[] | null;
|
|
104
90
|
} & CosmosDocumentDTO;
|
|
105
|
-
export type
|
|
106
|
-
|
|
91
|
+
export type ProductSortsDTO = {
|
|
92
|
+
ProductSorts: EntityTypeDTO[] | null;
|
|
107
93
|
} & CosmosDocumentDTO;
|
|
108
|
-
export type
|
|
109
|
-
|
|
110
|
-
DotStatus: EntityTypeDTO[] | null;
|
|
94
|
+
export type FinancialAccountsDTO = {
|
|
95
|
+
FinancialAccounts: EntityTypeDTO[] | null;
|
|
111
96
|
} & CosmosDocumentDTO;
|
|
112
|
-
export type
|
|
113
|
-
|
|
97
|
+
export type ProductTagsDTO = {
|
|
98
|
+
ProductTags: EntityTypeDTO[] | null;
|
|
114
99
|
} & CosmosDocumentDTO;
|
|
115
|
-
export type
|
|
116
|
-
|
|
100
|
+
export type OrderDiscountTypesDTO = {
|
|
101
|
+
OrderDiscountTypes: EntityTypeDTO[] | null;
|
|
117
102
|
} & CosmosDocumentDTO;
|
|
118
|
-
export type
|
|
119
|
-
|
|
120
|
-
Country: string | null;
|
|
121
|
-
HouseNumber: string | null;
|
|
122
|
-
PostalCode: string | null;
|
|
123
|
-
Street: string | null;
|
|
103
|
+
export type LanguagesDTO = {
|
|
104
|
+
Languages: EntityTypeDTO[] | null;
|
|
124
105
|
} & CosmosDocumentDTO;
|
|
125
|
-
export type
|
|
126
|
-
|
|
127
|
-
Gln: string | null;
|
|
106
|
+
export type CategoriesDTO = {
|
|
107
|
+
Categories: EntityTypeDTO[] | null;
|
|
128
108
|
} & CosmosDocumentDTO;
|
|
129
|
-
export type
|
|
130
|
-
|
|
131
|
-
CompanyName: string | null;
|
|
132
|
-
Gln: string | null;
|
|
133
|
-
IsActive: number | null;
|
|
134
|
-
MessageTypes: EntityTypeDTO[] | null;
|
|
109
|
+
export type ContactPersonFunctionsDTO = {
|
|
110
|
+
ContactPersonFunctions: EntityTypeDTO[] | null;
|
|
135
111
|
} & CosmosDocumentDTO;
|
|
136
|
-
export type
|
|
137
|
-
|
|
138
|
-
MessageTypes: EntityTypeDTO[] | null;
|
|
112
|
+
export type FunctionTypesDTO = {
|
|
113
|
+
FunctionTypes: EntityTypeDTO[] | null;
|
|
139
114
|
} & CosmosDocumentDTO;
|
|
140
|
-
export type
|
|
115
|
+
export type BookTypesDTO = {
|
|
141
116
|
AccountId: string | null;
|
|
142
|
-
|
|
117
|
+
BookTypes: EntityTypeDTO[] | null;
|
|
143
118
|
} & CosmosDocumentDTO;
|
|
144
|
-
export type
|
|
119
|
+
export type ClaimInvoicesDTO = {
|
|
145
120
|
AccountId: string | null;
|
|
146
|
-
|
|
147
|
-
IsActive: number | null;
|
|
148
|
-
ItemCode: string | null;
|
|
121
|
+
ClaimInvoices: EntityTypeDTO[] | null;
|
|
149
122
|
} & CosmosDocumentDTO;
|
|
150
|
-
export type
|
|
123
|
+
export type CompanyFunctionTypesDTO = {
|
|
151
124
|
AccountId: string | null;
|
|
152
|
-
|
|
153
|
-
EdiType: string | null;
|
|
154
|
-
IsActive: number | null;
|
|
155
|
-
Name: string | null;
|
|
125
|
+
CompanyFunctionTypes: EntityTypeDTO[] | null;
|
|
156
126
|
} & CosmosDocumentDTO;
|
|
157
|
-
export type
|
|
158
|
-
|
|
127
|
+
export type GendersDTO = {
|
|
128
|
+
Genders: EntityTypeDTO[] | null;
|
|
159
129
|
} & CosmosDocumentDTO;
|
|
160
|
-
export type
|
|
161
|
-
|
|
130
|
+
export type NoteTypesDTO = {
|
|
131
|
+
NoteTypes: EntityTypeDTO[] | null;
|
|
162
132
|
} & CosmosDocumentDTO;
|
|
163
|
-
export type
|
|
164
|
-
|
|
165
|
-
AccountNumber: string | null;
|
|
133
|
+
export type MessageTypesDTO = {
|
|
134
|
+
MessageTypes: EntityTypeDTO[] | null;
|
|
166
135
|
} & CosmosDocumentDTO;
|
|
167
|
-
export type
|
|
168
|
-
|
|
136
|
+
export type MenuSettingsDTO = {
|
|
137
|
+
CompanyId: string | null;
|
|
138
|
+
SubEntity: string | null;
|
|
139
|
+
Settings: MenuSettingsGroupDTO[] | null;
|
|
169
140
|
} & CosmosDocumentDTO;
|
|
170
|
-
export type
|
|
171
|
-
|
|
141
|
+
export type MenuSettingsGroupDTO = {
|
|
142
|
+
Group: string | null;
|
|
143
|
+
SequenceNumber: number;
|
|
144
|
+
Settings: MenuSettingDTO[] | null;
|
|
145
|
+
};
|
|
146
|
+
export type MenuSettingDTO = {
|
|
147
|
+
Key: string | null;
|
|
148
|
+
Value: string | null;
|
|
149
|
+
Notes: string | null;
|
|
150
|
+
ShowStatus: number;
|
|
151
|
+
Description: string | null;
|
|
152
|
+
IsBool: boolean;
|
|
153
|
+
Modified: string;
|
|
154
|
+
SequenceNumber: number;
|
|
155
|
+
};
|
|
156
|
+
export type RayonsDTO = {
|
|
157
|
+
Rayons: EntityTypeDTO[] | null;
|
|
172
158
|
} & CosmosDocumentDTO;
|
|
173
|
-
export type
|
|
174
|
-
|
|
159
|
+
export type SalutationsDTO = {
|
|
160
|
+
Salutations: EntityTypeDTO[] | null;
|
|
175
161
|
} & CosmosDocumentDTO;
|
|
176
|
-
export type
|
|
177
|
-
|
|
162
|
+
export type CountriesDTO = {
|
|
163
|
+
Countries: CountryDTO[] | null;
|
|
178
164
|
} & CosmosDocumentDTO;
|
|
179
|
-
export type
|
|
180
|
-
|
|
165
|
+
export type AccountManagerTypesDTO = {
|
|
166
|
+
AccountManagerTypes: EntityTypeDTO[] | null;
|
|
181
167
|
} & CosmosDocumentDTO;
|
|
182
|
-
export type
|
|
183
|
-
|
|
168
|
+
export type AdminNumberTypesDTO = {
|
|
169
|
+
AdminNumberTypes: EntityTypeDTO[] | null;
|
|
184
170
|
} & CosmosDocumentDTO;
|
|
185
|
-
export type
|
|
186
|
-
|
|
187
|
-
Description: string | null;
|
|
188
|
-
IsActive: number | null;
|
|
189
|
-
IsSystem: number | null;
|
|
190
|
-
Key: string | null;
|
|
191
|
-
LastUpdate: string | null;
|
|
192
|
-
Name: string | null;
|
|
193
|
-
Sequence: number | null;
|
|
194
|
-
ShowStatus: number | null;
|
|
171
|
+
export type CompanyAddressTypesDTO = {
|
|
172
|
+
CompanyAddressTypes: EntityTypeDTO[] | null;
|
|
195
173
|
} & CosmosDocumentDTO;
|
|
196
|
-
export type
|
|
197
|
-
|
|
174
|
+
export type FoodCertificateTypesDTO = {
|
|
175
|
+
FoodCertificateTypes: EntityTypeDTO[] | null;
|
|
198
176
|
} & CosmosDocumentDTO;
|
|
199
|
-
export type
|
|
200
|
-
|
|
201
|
-
Gln: string | null;
|
|
177
|
+
export type PhoneTypesDTO = {
|
|
178
|
+
PhoneTypes: EntityTypeDTO[] | null;
|
|
202
179
|
} & CosmosDocumentDTO;
|
|
203
|
-
export type
|
|
204
|
-
|
|
205
|
-
AllergenInfo: string | null;
|
|
206
|
-
BestBeforeDateGenerator: string | null;
|
|
207
|
-
Biological: string | null;
|
|
208
|
-
BrandName: string | null;
|
|
209
|
-
CertificationInfo: string | null;
|
|
210
|
-
Country: string | null;
|
|
211
|
-
Description: string | null;
|
|
212
|
-
Exp: string | null;
|
|
213
|
-
Fao: string | null;
|
|
214
|
-
ForeignKey: string | null;
|
|
215
|
-
ForUse: EntityTypeDTO[] | null;
|
|
216
|
-
Grai: string | null;
|
|
217
|
-
GraiTraceability: string | null;
|
|
218
|
-
Ingredients: string | null;
|
|
219
|
-
Irradiated: string | null;
|
|
220
|
-
IsActive: number | null;
|
|
221
|
-
IsStandard: number | null;
|
|
222
|
-
ItemPublications: string | null;
|
|
223
|
-
ItemTraceability: string | null;
|
|
224
|
-
Key: string | null;
|
|
225
|
-
KosherInfo: string | null;
|
|
226
|
-
Language: string | null;
|
|
227
|
-
LastUpdate: string | null;
|
|
228
|
-
ManufacturerAddress: string | null;
|
|
229
|
-
ManufacturerCountry: string | null;
|
|
230
|
-
ManufacturerName: string | null;
|
|
231
|
-
MixedOriginInfo: string | null;
|
|
232
|
-
ModificationInfo: string | null;
|
|
233
|
-
Nfo: string | null;
|
|
234
|
-
NutritionInfo: string | null;
|
|
235
|
-
OrderUnit: string | null;
|
|
236
|
-
OrganicCertification: string | null;
|
|
237
|
-
PackagingInfo: string | null;
|
|
238
|
-
PrecautionaryAllergen: string | null;
|
|
239
|
-
PreservativeInfo: string | null;
|
|
240
|
-
ProductionMethod: string | null;
|
|
241
|
-
Publications: EntityTypeDTO[] | null;
|
|
242
|
-
RecallInfo: string | null;
|
|
243
|
-
RecallLink: string | null;
|
|
244
|
-
RequiredStorageConditions: string | null;
|
|
245
|
-
RiskStatement: string | null;
|
|
246
|
-
SafetyPeriod: string | null;
|
|
247
|
-
SafetyStatement: string | null;
|
|
248
|
-
Season: string | null;
|
|
249
|
-
ShapeForm: string | null;
|
|
250
|
-
ShowStatus: number | null;
|
|
251
|
-
SourceFileLastUpdate: string | null;
|
|
252
|
-
SourceFileUrl: string | null;
|
|
253
|
-
Species: string | null;
|
|
254
|
-
StorageInformation: string | null;
|
|
255
|
-
TraceabilityLink: string | null;
|
|
256
|
-
TraceabilityStatement: string | null;
|
|
257
|
-
UseByDate: string | null;
|
|
258
|
-
VarietySpecies: string | null;
|
|
259
|
-
VolumeWeight: string | null;
|
|
260
|
-
Warning: string | null;
|
|
261
|
-
WeightInfo: string | null;
|
|
180
|
+
export type PosEmployeeButtonStatusDTO = {
|
|
181
|
+
PosEmployeeButtonStatus: EntityTypeDTO[] | null;
|
|
262
182
|
} & CosmosDocumentDTO;
|
|
263
|
-
export type
|
|
264
|
-
|
|
183
|
+
export type SocialMediaTypesDTO = {
|
|
184
|
+
SocialMediaTypes: EntityTypeDTO[] | null;
|
|
265
185
|
} & CosmosDocumentDTO;
|
|
266
|
-
export type
|
|
267
|
-
|
|
186
|
+
export type ReportTypesDTO = {
|
|
187
|
+
ReportTypes: EntityTypeDTO[] | null;
|
|
268
188
|
} & CosmosDocumentDTO;
|
|
269
|
-
export type
|
|
270
|
-
|
|
189
|
+
export type ReportsDTO = {
|
|
190
|
+
Reports: ReportEntryDTO[] | null;
|
|
271
191
|
} & CosmosDocumentDTO;
|
|
272
|
-
export type
|
|
273
|
-
|
|
274
|
-
|
|
192
|
+
export type ReportEntryDTO = {
|
|
193
|
+
ReportType: EntityTypeDTO;
|
|
194
|
+
Email: EntityTypeDTO;
|
|
195
|
+
ShowStatus: number;
|
|
196
|
+
};
|
|
197
|
+
export type DiscountTypesDTO = {
|
|
198
|
+
DiscountTypes: EntityTypeDTO[] | null;
|
|
275
199
|
} & CosmosDocumentDTO;
|
|
276
|
-
export type
|
|
277
|
-
|
|
278
|
-
GroupCode: string | null;
|
|
279
|
-
GroupType: string | null;
|
|
280
|
-
IsActive: number | null;
|
|
281
|
-
IsPublished: number | null;
|
|
282
|
-
Key: string | null;
|
|
283
|
-
LastUpdate: string | null;
|
|
284
|
-
Name: string | null;
|
|
285
|
-
ParentGroup: string | null;
|
|
286
|
-
Sequence: number | null;
|
|
200
|
+
export type DiscountsDTO = {
|
|
201
|
+
Discounts: DiscountDTO[] | null;
|
|
287
202
|
} & CosmosDocumentDTO;
|
|
288
|
-
export type
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
Category: string | null;
|
|
292
|
-
CertificationInfo: string | null;
|
|
293
|
-
Country: string | null;
|
|
203
|
+
export type DiscountDTO = {
|
|
204
|
+
DiscountType: EntityTypeDTO | null;
|
|
205
|
+
Percentage: number;
|
|
294
206
|
Description: string | null;
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
Grai: string | null;
|
|
299
|
-
GraiTraceability: string | null;
|
|
300
|
-
GroupCode: string | null;
|
|
301
|
-
Gtin: string | null;
|
|
302
|
-
Ingredients: string | null;
|
|
303
|
-
Irradiated: string | null;
|
|
304
|
-
IsActive: number | null;
|
|
305
|
-
IsStandard: number | null;
|
|
306
|
-
Key: string | null;
|
|
307
|
-
KosherInfo: string | null;
|
|
308
|
-
Language: string | null;
|
|
309
|
-
LastUpdate: string | null;
|
|
310
|
-
ManufacturerAddress: string | null;
|
|
311
|
-
ManufacturerCountry: string | null;
|
|
312
|
-
ManufacturerName: string | null;
|
|
313
|
-
Nfo: string | null;
|
|
314
|
-
NutritionInfo: string | null;
|
|
315
|
-
OrderUnit: string | null;
|
|
316
|
-
PackagingInfo: string | null;
|
|
317
|
-
PartOfGroup: string | null;
|
|
318
|
-
Qty: number | null;
|
|
319
|
-
ShowStatus: number | null;
|
|
320
|
-
SourceFileLastUpdate: string | null;
|
|
321
|
-
Species: string | null;
|
|
322
|
-
UseByDate: string | null;
|
|
323
|
-
VarietySpecies: string | null;
|
|
324
|
-
VolumeWeight: string | null;
|
|
325
|
-
} & CosmosDocumentDTO;
|
|
326
|
-
export type GtinTypesDTO = {
|
|
327
|
-
GtinTypes: EntityTypeDTO[] | null;
|
|
328
|
-
} & CosmosDocumentDTO;
|
|
329
|
-
export type HolidayTypesDTO = {
|
|
330
|
-
HolidayTypes: EntityTypeDTO[] | null;
|
|
331
|
-
} & CosmosDocumentDTO;
|
|
207
|
+
Notes: string | null;
|
|
208
|
+
ShowStatus: number;
|
|
209
|
+
};
|
|
332
210
|
export type IcpsDTO = {
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
IsActive: number | null;
|
|
336
|
-
Key: string | null;
|
|
337
|
-
LastUpdate: string | null;
|
|
338
|
-
Name: string | null;
|
|
339
|
-
Sequence: number | null;
|
|
340
|
-
ShowStatus: number | null;
|
|
211
|
+
AccountId: string | null;
|
|
212
|
+
Icps: EntityTypeDTO[] | null;
|
|
341
213
|
} & CosmosDocumentDTO;
|
|
342
214
|
export type IcpTransactionsDTO = {
|
|
343
|
-
|
|
215
|
+
AccountId: string | null;
|
|
216
|
+
IcpTransactions: EntityTypeDTO[] | null;
|
|
344
217
|
} & CosmosDocumentDTO;
|
|
345
|
-
export type
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
GroupCode: string | null;
|
|
349
|
-
IsActive: number | null;
|
|
350
|
-
IsStandard: number | null;
|
|
351
|
-
Key: string | null;
|
|
352
|
-
Language: string | null;
|
|
353
|
-
LastUpdate: string | null;
|
|
354
|
-
Name: string | null;
|
|
355
|
-
Sequence: number | null;
|
|
218
|
+
export type InvoiceCodesDTO = {
|
|
219
|
+
AccountId: string | null;
|
|
220
|
+
InvoiceCodes: EntityTypeDTO[] | null;
|
|
356
221
|
} & CosmosDocumentDTO;
|
|
357
|
-
export type
|
|
358
|
-
|
|
222
|
+
export type InvoiceGraiCodesDTO = {
|
|
223
|
+
AccountId: string | null;
|
|
224
|
+
InvoiceGraiCodes: EntityTypeDTO[] | null;
|
|
359
225
|
} & CosmosDocumentDTO;
|
|
360
|
-
export type
|
|
361
|
-
|
|
226
|
+
export type AccountInvoicesDTO = {
|
|
227
|
+
AccountId: string | null;
|
|
228
|
+
AccountInvoices: EntityTypeDTO[] | null;
|
|
362
229
|
} & CosmosDocumentDTO;
|
|
363
|
-
export type
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
IsActive: number | null;
|
|
367
|
-
Key: string | null;
|
|
368
|
-
LastUpdate: string | null;
|
|
369
|
-
Name: string | null;
|
|
370
|
-
Sequence: number | null;
|
|
371
|
-
ShowStatus: number | null;
|
|
230
|
+
export type ToPayTheBillsDTO = {
|
|
231
|
+
AccountId: string | null;
|
|
232
|
+
ToPayTheBills: EntityTypeDTO[] | null;
|
|
372
233
|
} & CosmosDocumentDTO;
|
|
373
|
-
export type
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
IsActive: number | null;
|
|
377
|
-
Key: string | null;
|
|
378
|
-
LastUpdate: string | null;
|
|
379
|
-
Name: string | null;
|
|
380
|
-
Sequence: number | null;
|
|
381
|
-
ShowStatus: number | null;
|
|
234
|
+
export type PayableVatsDTO = {
|
|
235
|
+
AccountId: string | null;
|
|
236
|
+
PayableVats: EntityTypeDTO[] | null;
|
|
382
237
|
} & CosmosDocumentDTO;
|
|
383
|
-
export type
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
IsActive: number | null;
|
|
387
|
-
Key: string | null;
|
|
388
|
-
LastUpdate: string | null;
|
|
389
|
-
Name: string | null;
|
|
390
|
-
Sequence: number | null;
|
|
391
|
-
ShowStatus: number | null;
|
|
238
|
+
export type MasterDTO = {
|
|
239
|
+
AccountId: string | null;
|
|
240
|
+
Master: EntityTypeDTO[] | null;
|
|
392
241
|
} & CosmosDocumentDTO;
|
|
393
|
-
export type
|
|
394
|
-
|
|
242
|
+
export type PaymentDiscountsDTO = {
|
|
243
|
+
AccountId: string | null;
|
|
244
|
+
PaymentDiscounts: EntityTypeDTO[] | null;
|
|
395
245
|
} & CosmosDocumentDTO;
|
|
396
|
-
export type
|
|
397
|
-
|
|
246
|
+
export type InvoiceDiscountsDTO = {
|
|
247
|
+
AccountId: string | null;
|
|
248
|
+
InvoiceDiscounts: EntityTypeDTO[] | null;
|
|
398
249
|
} & CosmosDocumentDTO;
|
|
399
|
-
export type
|
|
400
|
-
|
|
250
|
+
export type StockInvoicesDTO = {
|
|
251
|
+
AccountId: string | null;
|
|
252
|
+
StockInvoices: EntityTypeDTO[] | null;
|
|
401
253
|
} & CosmosDocumentDTO;
|
|
402
|
-
export type
|
|
403
|
-
|
|
254
|
+
export type PalletLocationsDTO = {
|
|
255
|
+
AccountId: string | null;
|
|
256
|
+
PalletLocations: PalletLocationDTO[] | null;
|
|
404
257
|
} & CosmosDocumentDTO;
|
|
405
|
-
export type
|
|
406
|
-
|
|
407
|
-
Description: string | null;
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
258
|
+
export type PalletLocationDTO = {
|
|
259
|
+
Number: string | null;
|
|
260
|
+
Description: string | null;
|
|
261
|
+
PalletLocationType: EntityTypeDTO | null;
|
|
262
|
+
ItemNumber: string | null;
|
|
263
|
+
Group: EntityTypeDTO | null;
|
|
264
|
+
WeightMax: number | null;
|
|
265
|
+
QuantityMax: number | null;
|
|
266
|
+
Barcode: string | null;
|
|
267
|
+
StockLocation: EntityTypeDTO | null;
|
|
268
|
+
Showstatus: number | null;
|
|
269
|
+
};
|
|
270
|
+
export type CurrenciesDTO = {
|
|
271
|
+
AccountId: string | null;
|
|
272
|
+
Currencies: EntityTypeDTO[] | null;
|
|
414
273
|
} & CosmosDocumentDTO;
|
|
415
|
-
export type
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
IsActive: number | null;
|
|
419
|
-
Key: string | null;
|
|
420
|
-
LastUpdate: string | null;
|
|
421
|
-
Name: string | null;
|
|
422
|
-
Sequence: number | null;
|
|
423
|
-
ShowStatus: number | null;
|
|
274
|
+
export type TatlotEventsDTO = {
|
|
275
|
+
AccountId: string | null;
|
|
276
|
+
TatlotEvents: EntityTypeDTO[] | null;
|
|
424
277
|
} & CosmosDocumentDTO;
|
|
425
|
-
export type
|
|
426
|
-
|
|
278
|
+
export type ProductionCalculationsDTO = {
|
|
279
|
+
AccountId: string | null;
|
|
280
|
+
ProductionCalculations: EntityTypeDTO[] | null;
|
|
427
281
|
} & CosmosDocumentDTO;
|
|
428
|
-
export type
|
|
429
|
-
|
|
282
|
+
export type ProductionLinesDTO = {
|
|
283
|
+
AccountId: string | null;
|
|
284
|
+
ProductionLines: EntityTypeDTO[] | null;
|
|
430
285
|
} & CosmosDocumentDTO;
|
|
431
|
-
export type
|
|
432
|
-
|
|
286
|
+
export type ProductionShiftsDTO = {
|
|
287
|
+
AccountId: string | null;
|
|
288
|
+
ProductionShifts: EntityTypeDTO[] | null;
|
|
433
289
|
} & CosmosDocumentDTO;
|
|
434
|
-
export type
|
|
435
|
-
|
|
290
|
+
export type DotTypesDTO = {
|
|
291
|
+
AccountId: string | null;
|
|
292
|
+
DotTypes: EntityTypeDTO[] | null;
|
|
436
293
|
} & CosmosDocumentDTO;
|
|
437
|
-
export type
|
|
294
|
+
export type DotStatusesDTO = {
|
|
438
295
|
AccountId: string | null;
|
|
439
|
-
|
|
296
|
+
DotStatuses: EntityTypeDTO[] | null;
|
|
440
297
|
} & CosmosDocumentDTO;
|
|
441
|
-
export type
|
|
442
|
-
|
|
298
|
+
export type StockLocationsDTO = {
|
|
299
|
+
AccountId: string | null;
|
|
300
|
+
StockLocations: StockLocationWrapperDTO[] | null;
|
|
443
301
|
} & CosmosDocumentDTO;
|
|
444
|
-
export type
|
|
445
|
-
|
|
302
|
+
export type StockLocationWrapperDTO = {
|
|
303
|
+
StockLocation: EntityTypeDTO | null;
|
|
304
|
+
StockLocationDescription: EntityTypeDTO | null;
|
|
305
|
+
};
|
|
306
|
+
export type TatLotDTO = {
|
|
307
|
+
LotNumber: string | null;
|
|
308
|
+
LotDate: string | null;
|
|
309
|
+
TatLotEvent: MasterDTO | null;
|
|
310
|
+
Account: AccountBaseDTO | null;
|
|
311
|
+
BirthDate: string | null;
|
|
312
|
+
BirthDescription: string | null;
|
|
313
|
+
BirthReference: string | null;
|
|
314
|
+
RearerDate: string | null;
|
|
315
|
+
RearerDescription: string | null;
|
|
316
|
+
RearerReference: string | null;
|
|
317
|
+
SlaughterDate: string | null;
|
|
318
|
+
SlaughterDescription: string | null;
|
|
319
|
+
SlaughterReference: string | null;
|
|
320
|
+
ProductionDate: string | null;
|
|
321
|
+
ProductionDescription: string | null;
|
|
322
|
+
ProductionReference: string | null;
|
|
323
|
+
ProductionDateMutation: string | null;
|
|
324
|
+
Languages: MasterDTO[] | null;
|
|
325
|
+
ShowStatus: number;
|
|
326
|
+
};
|
|
327
|
+
export type GtinTypesDTO = {
|
|
328
|
+
AccountId: string | null;
|
|
329
|
+
GtinTypes: EntityTypeDTO[] | null;
|
|
446
330
|
} & CosmosDocumentDTO;
|
|
447
|
-
export type
|
|
448
|
-
|
|
331
|
+
export type GroupDTO = {
|
|
332
|
+
AccountId: string | null;
|
|
333
|
+
Group: EntityTypeDTO[] | null;
|
|
449
334
|
} & CosmosDocumentDTO;
|
|
450
|
-
export type
|
|
451
|
-
|
|
335
|
+
export type PalletLocationTypeDTO = {
|
|
336
|
+
AccountId: string | null;
|
|
337
|
+
PalletLocationType: EntityTypeDTO[] | null;
|
|
452
338
|
} & CosmosDocumentDTO;
|
|
453
|
-
export type
|
|
454
|
-
|
|
455
|
-
|
|
456
|
-
IsActive: number | null;
|
|
457
|
-
IsSystem: number | null;
|
|
458
|
-
Key: string | null;
|
|
459
|
-
LastUpdate: string | null;
|
|
460
|
-
Name: string | null;
|
|
461
|
-
Sequence: number | null;
|
|
462
|
-
ShowStatus: number | null;
|
|
339
|
+
export type ShippedCheckedDTO = {
|
|
340
|
+
AccountId: string | null;
|
|
341
|
+
ShippedChecked: EntityTypeDTO[] | null;
|
|
463
342
|
} & CosmosDocumentDTO;
|
|
464
|
-
export type
|
|
465
|
-
|
|
343
|
+
export type PackingTypesDTO = {
|
|
344
|
+
AccountId: string | null;
|
|
345
|
+
PackingTypes: EntityTypeDTO[] | null;
|
|
466
346
|
} & CosmosDocumentDTO;
|
|
467
|
-
export type
|
|
468
|
-
|
|
347
|
+
export type CostingTypesDTO = {
|
|
348
|
+
AccountId: string | null;
|
|
349
|
+
CostingTypes: EntityTypeDTO[] | null;
|
|
469
350
|
} & CosmosDocumentDTO;
|
|
470
|
-
export type
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
IsActive: number | null;
|
|
474
|
-
Key: string | null;
|
|
475
|
-
LastUpdate: string | null;
|
|
476
|
-
Name: string | null;
|
|
477
|
-
Sequence: number | null;
|
|
351
|
+
export type DotEventsDTO = {
|
|
352
|
+
AccountId: string | null;
|
|
353
|
+
DotEvents: EntityTypeDTO[] | null;
|
|
478
354
|
} & CosmosDocumentDTO;
|
|
479
|
-
export type
|
|
480
|
-
|
|
355
|
+
export type ProductGeneratorGroup1DTO = {
|
|
356
|
+
AccountId: string | null;
|
|
357
|
+
ProductGeneratorGroup1: EntityTypeDTO[] | null;
|
|
481
358
|
} & CosmosDocumentDTO;
|
|
482
|
-
export type
|
|
483
|
-
|
|
359
|
+
export type ProductGeneratorGroup2DTO = {
|
|
360
|
+
AccountId: string | null;
|
|
361
|
+
ProductGeneratorGroup2: EntityTypeDTO[] | null;
|
|
484
362
|
} & CosmosDocumentDTO;
|
|
485
|
-
export type
|
|
363
|
+
export type ProductGeneratorGroup3DTO = {
|
|
486
364
|
AccountId: string | null;
|
|
487
|
-
|
|
488
|
-
IsActive: number | null;
|
|
489
|
-
Key: string | null;
|
|
490
|
-
LastUpdate: string | null;
|
|
491
|
-
MenuId: string | null;
|
|
492
|
-
Name: string | null;
|
|
493
|
-
Sequence: number | null;
|
|
365
|
+
ProductGeneratorGroup3: EntityTypeDTO[] | null;
|
|
494
366
|
} & CosmosDocumentDTO;
|
|
495
|
-
export type
|
|
367
|
+
export type ProductGeneratorGroup4DTO = {
|
|
496
368
|
AccountId: string | null;
|
|
497
|
-
|
|
369
|
+
ProductGeneratorGroup4: EntityTypeDTO[] | null;
|
|
498
370
|
} & CosmosDocumentDTO;
|
|
499
|
-
export type
|
|
500
|
-
|
|
371
|
+
export type ResidentStatusDTO = {
|
|
372
|
+
AccountId: string | null;
|
|
373
|
+
ResidentStatuses: EntityTypeDTO[] | null;
|
|
501
374
|
} & CosmosDocumentDTO;
|
|
502
|
-
export type
|
|
503
|
-
|
|
375
|
+
export type MenuCyclusGroupsDTO = {
|
|
376
|
+
AccountId: string | null;
|
|
377
|
+
MenuCyclusGroups: EntityTypeDTO[] | null;
|
|
504
378
|
} & CosmosDocumentDTO;
|
|
505
|
-
export type
|
|
506
|
-
|
|
379
|
+
export type MenuCyclusStatusDTO = {
|
|
380
|
+
AccountId: string | null;
|
|
381
|
+
MenuCyclusStatus: EntityTypeDTO[] | null;
|
|
507
382
|
} & CosmosDocumentDTO;
|
|
508
|
-
export type
|
|
509
|
-
|
|
383
|
+
export type MenuCyclusCategoryDTO = {
|
|
384
|
+
AccountId: string | null;
|
|
385
|
+
MenuCyclusCategory: MenuCyclusMenuCategoryDTO[] | null;
|
|
510
386
|
} & CosmosDocumentDTO;
|
|
511
|
-
export type
|
|
512
|
-
Code: string | null;
|
|
513
|
-
Description: string | null;
|
|
514
|
-
ForeignKey: string | null;
|
|
515
|
-
IsActive: number | null;
|
|
516
|
-
IsStandard: number | null;
|
|
517
|
-
Key: string | null;
|
|
518
|
-
Language: string | null;
|
|
519
|
-
LastUpdate: string | null;
|
|
520
|
-
Name: string | null;
|
|
521
|
-
NutrientTypeCode: string | null;
|
|
387
|
+
export type MenuCyclusMenuCategoryDTO = {
|
|
522
388
|
Sequence: number | null;
|
|
523
|
-
|
|
389
|
+
Image: string | null;
|
|
390
|
+
MaxItems: number | null;
|
|
391
|
+
} & EntityTypeDTO;
|
|
392
|
+
export type SalesOrderStatusDTO = {
|
|
393
|
+
AccountId: string | null;
|
|
394
|
+
SalesOrderStatus: EntityTypeDTO[] | null;
|
|
524
395
|
} & CosmosDocumentDTO;
|
|
525
|
-
export type
|
|
526
|
-
|
|
396
|
+
export type PurchaseOrderStatusDTO = {
|
|
397
|
+
AccountId: string | null;
|
|
398
|
+
PurchaseOrderStatus: EntityTypeDTO[] | null;
|
|
527
399
|
} & CosmosDocumentDTO;
|
|
528
|
-
export type
|
|
529
|
-
|
|
400
|
+
export type ProductionOrderStatusDTO = {
|
|
401
|
+
AccountId: string | null;
|
|
402
|
+
ProductionOrderStatus: EntityTypeDTO[] | null;
|
|
530
403
|
} & CosmosDocumentDTO;
|
|
531
404
|
export type OrderIndicatorsDTO = {
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
export type OrderIncoTermsDTO = {
|
|
535
|
-
IncoTerms: EntityTypeDTO[] | null;
|
|
536
|
-
} & CosmosDocumentDTO;
|
|
537
|
-
export type PalletLocationDTO = {
|
|
538
|
-
Account: string | null;
|
|
539
|
-
Description: string | null;
|
|
540
|
-
IsActive: number | null;
|
|
541
|
-
IsSystem: number | null;
|
|
542
|
-
Key: string | null;
|
|
543
|
-
LastUpdate: string | null;
|
|
544
|
-
LocationCode: string | null;
|
|
545
|
-
LocationGroupKey: string | null;
|
|
546
|
-
LocationGroupName: string | null;
|
|
547
|
-
LocationGroupSequence: number | null;
|
|
548
|
-
LocationLocationType: string | null;
|
|
549
|
-
LocationTypeDescription: string | null;
|
|
550
|
-
LocationTypeIsActive: number | null;
|
|
551
|
-
LocationTypeIsSystem: number | null;
|
|
552
|
-
LocationTypeKey: string | null;
|
|
553
|
-
LocationTypeLastUpdate: string | null;
|
|
554
|
-
LocationTypeName: string | null;
|
|
555
|
-
LocationTypeSequence: number | null;
|
|
556
|
-
Name: string | null;
|
|
557
|
-
Sequence: number | null;
|
|
558
|
-
ShowStatus: number | null;
|
|
559
|
-
Warehouse: string | null;
|
|
560
|
-
} & CosmosDocumentDTO;
|
|
561
|
-
export type PalletLocationGroupsDTO = {
|
|
562
|
-
Account: string | null;
|
|
563
|
-
Groups: EntityTypeDTO[] | null;
|
|
564
|
-
} & CosmosDocumentDTO;
|
|
565
|
-
export type PalletLocationTypeDTO = {
|
|
566
|
-
Description: string | null;
|
|
567
|
-
IsActive: number | null;
|
|
568
|
-
IsSystem: number | null;
|
|
569
|
-
Key: string | null;
|
|
570
|
-
LastUpdate: string | null;
|
|
571
|
-
Name: string | null;
|
|
572
|
-
Sequence: number | null;
|
|
573
|
-
} & CosmosDocumentDTO;
|
|
574
|
-
export type PalletLocationsDTO = {
|
|
575
|
-
Account: string | null;
|
|
576
|
-
PalletLocations: PalletLocationDTO[] | null;
|
|
577
|
-
} & CosmosDocumentDTO;
|
|
578
|
-
export type PackingTypesDTO = {
|
|
579
|
-
PackingTypes: EntityTypeDTO[] | null;
|
|
405
|
+
AccountId: string | null;
|
|
406
|
+
OrderIndicators: EntityTypeDTO[] | null;
|
|
580
407
|
} & CosmosDocumentDTO;
|
|
581
|
-
export type
|
|
582
|
-
|
|
408
|
+
export type FinancialAccountDTO = {
|
|
409
|
+
AccountId: string | null;
|
|
410
|
+
FinancialAccount: EntityTypeDTO[] | null;
|
|
583
411
|
} & CosmosDocumentDTO;
|
|
584
|
-
export type
|
|
585
|
-
|
|
412
|
+
export type FinancialVatDTO = {
|
|
413
|
+
AccountId: string | null;
|
|
414
|
+
FinancialVat: EntityTypeDTO[] | null;
|
|
586
415
|
} & CosmosDocumentDTO;
|
|
587
|
-
export type
|
|
588
|
-
|
|
416
|
+
export type OrderIncoTermsDTO = {
|
|
417
|
+
AccountId: string | null;
|
|
418
|
+
OrderIncoTerms: EntityTypeDTO[] | null;
|
|
589
419
|
} & CosmosDocumentDTO;
|
|
590
|
-
export type
|
|
591
|
-
|
|
420
|
+
export type FinancialJournalTypesDTO = {
|
|
421
|
+
AccountId: string | null;
|
|
422
|
+
FinancialJournalTypes: EntityTypeDTO[] | null;
|
|
592
423
|
} & CosmosDocumentDTO;
|
|
593
|
-
export type
|
|
594
|
-
|
|
424
|
+
export type PurchaseOrderTermsOfDeliveryDTO = {
|
|
425
|
+
AccountId: string | null;
|
|
426
|
+
PurchaseOrderTermsOfDelivery: EntityTypeDTO[] | null;
|
|
595
427
|
} & CosmosDocumentDTO;
|
|
596
|
-
export type
|
|
597
|
-
|
|
428
|
+
export type SalesOrderTermsOfDeliveryDTO = {
|
|
429
|
+
AccountId: string | null;
|
|
430
|
+
SalesOrderTermsOfDelivery: EntityTypeDTO[] | null;
|
|
598
431
|
} & CosmosDocumentDTO;
|
|
599
|
-
export type
|
|
600
|
-
|
|
432
|
+
export type VehiclesDTO = {
|
|
433
|
+
AccountId: string | null;
|
|
434
|
+
Vehicles: VehicleDTO[] | null;
|
|
601
435
|
} & CosmosDocumentDTO;
|
|
602
|
-
export type
|
|
603
|
-
|
|
436
|
+
export type ProductionGroupDTO = {
|
|
437
|
+
AccountId: string | null;
|
|
438
|
+
Productions: EntityTypeDTO[] | null;
|
|
604
439
|
} & CosmosDocumentDTO;
|
|
605
|
-
export type
|
|
606
|
-
|
|
440
|
+
export type GenericDTO = {
|
|
441
|
+
AccountId: string | null;
|
|
442
|
+
Items: EntityTypeDTO[] | null;
|
|
607
443
|
} & CosmosDocumentDTO;
|
|
608
|
-
export type
|
|
444
|
+
export type WarehouseStockLocationDTO = {
|
|
445
|
+
Code: string | null;
|
|
446
|
+
Number: string | null;
|
|
447
|
+
Description: string | null;
|
|
448
|
+
WarehouseAccount: WarehouseAccountDTO | null;
|
|
449
|
+
LocationPosition: number | null;
|
|
450
|
+
Location: StockLocationWrapperDTO | null;
|
|
451
|
+
IsTransiTo: boolean | null;
|
|
452
|
+
IsInternal: boolean | null;
|
|
453
|
+
};
|
|
454
|
+
export type WarehouseAccountDTO = {
|
|
609
455
|
AccountId: string | null;
|
|
610
|
-
|
|
611
|
-
BestBeforeDateGenerator: string | null;
|
|
612
|
-
BrandName: string | null;
|
|
613
|
-
Category: string | null;
|
|
614
|
-
CategoryDescription: string | null;
|
|
615
|
-
CategoryIsActive: number | null;
|
|
616
|
-
CategoryIsSystem: number | null;
|
|
617
|
-
CategoryKey: string | null;
|
|
618
|
-
CategoryLastUpdate: string | null;
|
|
619
|
-
CategoryName: string | null;
|
|
620
|
-
CategorySequence: number | null;
|
|
621
|
-
CategoryShowStatus: number | null;
|
|
622
|
-
CostingGroup: string | null;
|
|
623
|
-
CostingGroupDescription: string | null;
|
|
624
|
-
CostingGroupIsActive: number | null;
|
|
625
|
-
CostingGroupIsSystem: number | null;
|
|
626
|
-
CostingGroupKey: string | null;
|
|
627
|
-
CostingGroupLastUpdate: string | null;
|
|
628
|
-
CostingGroupName: string | null;
|
|
629
|
-
CostingGroupSequence: number | null;
|
|
630
|
-
CostingGroupShowStatus: number | null;
|
|
631
|
-
CostingType: string | null;
|
|
632
|
-
CostingTypeDescription: string | null;
|
|
633
|
-
CostingTypeIsActive: number | null;
|
|
634
|
-
CostingTypeIsSystem: number | null;
|
|
635
|
-
CostingTypeKey: string | null;
|
|
636
|
-
CostingTypeLastUpdate: string | null;
|
|
637
|
-
CostingTypeLastUpdateNew: string | null;
|
|
638
|
-
CostingTypeName: string | null;
|
|
639
|
-
CostingTypeSequence: number | null;
|
|
640
|
-
CostingTypeShowStatus: number | null;
|
|
641
|
-
DeliveryDayTourType: string | null;
|
|
642
|
-
DeliveryDayTourTypeDescription: string | null;
|
|
643
|
-
DeliveryDayTourTypeIsActive: number | null;
|
|
644
|
-
DeliveryDayTourTypeIsSystem: number | null;
|
|
645
|
-
DeliveryDayTourTypeKey: string | null;
|
|
646
|
-
DeliveryDayTourTypeLastUpdate: string | null;
|
|
647
|
-
DeliveryDayTourTypeName: string | null;
|
|
648
|
-
DeliveryDayTourTypeSequence: number | null;
|
|
649
|
-
DeliveryDayTourTypeShowStatus: number | null;
|
|
650
|
-
Description: string | null;
|
|
651
|
-
ExactCode: string | null;
|
|
652
|
-
ForGroups: string | null;
|
|
653
|
-
GroupCode: string | null;
|
|
654
|
-
GroupName: string | null;
|
|
655
|
-
Gtin: string | null;
|
|
656
|
-
Ingredients: string | null;
|
|
657
|
-
IsActive: number | null;
|
|
658
|
-
IsPreferredSupplier: number | null;
|
|
659
|
-
IsProduct: number | null;
|
|
660
|
-
IsStandard: number | null;
|
|
661
|
-
Key: string | null;
|
|
662
|
-
Language: string | null;
|
|
663
|
-
LastUpdate: string | null;
|
|
664
|
-
MeasureUnitType: string | null;
|
|
665
|
-
MeasureUnitTypeDescription: string | null;
|
|
666
|
-
MeasureUnitTypeIsActive: number | null;
|
|
667
|
-
MeasureUnitTypeIsSystem: number | null;
|
|
668
|
-
MeasureUnitTypeKey: string | null;
|
|
669
|
-
MeasureUnitTypeLastUpdate: string | null;
|
|
670
|
-
MeasureUnitTypeName: string | null;
|
|
671
|
-
MeasureUnitTypeSequence: number | null;
|
|
672
|
-
MeasureUnitTypeShowStatus: number | null;
|
|
456
|
+
AccountNumber: string | null;
|
|
673
457
|
Name: string | null;
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
SortLastUpdate: string | null;
|
|
685
|
-
SortName: string | null;
|
|
686
|
-
SortSequence: number | null;
|
|
687
|
-
SortShowStatus: number | null;
|
|
688
|
-
Unit: string | null;
|
|
689
|
-
VatGroup: string | null;
|
|
690
|
-
VatGroupDescription: string | null;
|
|
691
|
-
VatGroupIsActive: number | null;
|
|
692
|
-
VatGroupIsSystem: number | null;
|
|
693
|
-
VatGroupKey: string | null;
|
|
694
|
-
VatGroupLastUpdate: string | null;
|
|
695
|
-
VatGroupName: string | null;
|
|
696
|
-
VatGroupSequence: number | null;
|
|
697
|
-
VatGroupShowStatus: number | null;
|
|
458
|
+
Address: string | null;
|
|
459
|
+
AddressNumber: string | null;
|
|
460
|
+
AddressLetter: string | null;
|
|
461
|
+
PostalCode: string | null;
|
|
462
|
+
City: string | null;
|
|
463
|
+
Country: CountryDTO | null;
|
|
464
|
+
};
|
|
465
|
+
export type InvoiceGroupsDTO = {
|
|
466
|
+
AccountId: string | null;
|
|
467
|
+
InvoiceGroups: EntityTypeDTO[] | null;
|
|
698
468
|
} & CosmosDocumentDTO;
|
|
699
|
-
export type
|
|
469
|
+
export type IntrastatActiveDTO = {
|
|
700
470
|
AccountId: string | null;
|
|
701
|
-
|
|
702
|
-
Category: string | null;
|
|
703
|
-
Code: string | null;
|
|
704
|
-
CostingGroup: string | null;
|
|
705
|
-
CostingType: string | null;
|
|
706
|
-
Description: string | null;
|
|
707
|
-
ExactCode: string | null;
|
|
708
|
-
ForGroups: string | null;
|
|
709
|
-
GroupCode: string | null;
|
|
710
|
-
GroupName: string | null;
|
|
711
|
-
Gtin: string | null;
|
|
712
|
-
IsActive: number | null;
|
|
713
|
-
IsPreferredSupplier: number | null;
|
|
714
|
-
IsProduct: number | null;
|
|
715
|
-
Key: string | null;
|
|
716
|
-
LastUpdate: string | null;
|
|
717
|
-
MeasureUnitType: string | null;
|
|
718
|
-
Name: string | null;
|
|
719
|
-
Qty: number | null;
|
|
720
|
-
ReferenceProductKey: string | null;
|
|
721
|
-
ServiceProductCode: string | null;
|
|
722
|
-
Sort: string | null;
|
|
723
|
-
VatGroup: string | null;
|
|
471
|
+
IntrastatActive: EntityTypeDTO[] | null;
|
|
724
472
|
} & CosmosDocumentDTO;
|
|
725
|
-
export type
|
|
726
|
-
|
|
473
|
+
export type IntrastatCountriesDTO = {
|
|
474
|
+
AccountId: string | null;
|
|
475
|
+
IntrastatCountries: EntityTypeDTO[] | null;
|
|
727
476
|
} & CosmosDocumentDTO;
|
|
728
|
-
export type
|
|
729
|
-
|
|
477
|
+
export type IntrastatDelConditionsDTO = {
|
|
478
|
+
AccountId: string | null;
|
|
479
|
+
IntrastatDelConditions: EntityTypeDTO[] | null;
|
|
730
480
|
} & CosmosDocumentDTO;
|
|
731
|
-
export type
|
|
732
|
-
|
|
481
|
+
export type IntrastatDestinationCountriesDTO = {
|
|
482
|
+
AccountId: string | null;
|
|
483
|
+
IntrastatDestinationCountries: EntityTypeDTO[] | null;
|
|
733
484
|
} & CosmosDocumentDTO;
|
|
734
|
-
export type
|
|
735
|
-
|
|
485
|
+
export type IntrastatLoadDTO = {
|
|
486
|
+
AccountId: string | null;
|
|
487
|
+
IntrastatLoad: EntityTypeDTO[] | null;
|
|
736
488
|
} & CosmosDocumentDTO;
|
|
737
|
-
export type
|
|
738
|
-
|
|
489
|
+
export type IntrastatRegionDTO = {
|
|
490
|
+
AccountId: string | null;
|
|
491
|
+
IntrastatRegion: EntityTypeDTO[] | null;
|
|
739
492
|
} & CosmosDocumentDTO;
|
|
740
|
-
export type
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
Description: string | null;
|
|
744
|
-
EndDate: string | null;
|
|
745
|
-
IsActive: number | null;
|
|
746
|
-
Key: string | null;
|
|
747
|
-
LastUpdate: string | null;
|
|
748
|
-
Name: string | null;
|
|
749
|
-
SalesTarget: number | null;
|
|
750
|
-
StartDate: string | null;
|
|
493
|
+
export type IntrastatStatusDTO = {
|
|
494
|
+
AccountId: string | null;
|
|
495
|
+
IntrastatStatus: EntityTypeDTO[] | null;
|
|
751
496
|
} & CosmosDocumentDTO;
|
|
752
|
-
export type
|
|
753
|
-
|
|
497
|
+
export type IntrastatSystemDTO = {
|
|
498
|
+
AccountId: string | null;
|
|
499
|
+
IntrastatSystem: EntityTypeDTO[] | null;
|
|
754
500
|
} & CosmosDocumentDTO;
|
|
755
|
-
export type
|
|
756
|
-
|
|
501
|
+
export type IntrastatTransportDTO = {
|
|
502
|
+
AccountId: string | null;
|
|
503
|
+
IntrastatTransport: EntityTypeDTO[] | null;
|
|
757
504
|
} & CosmosDocumentDTO;
|
|
758
|
-
export type
|
|
759
|
-
|
|
505
|
+
export type IntrastatTransTypeDTO = {
|
|
506
|
+
AccountId: string | null;
|
|
507
|
+
IntrastatTransType: EntityTypeDTO[] | null;
|
|
760
508
|
} & CosmosDocumentDTO;
|
|
761
|
-
export type
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
IsActive: number | null;
|
|
765
|
-
Key: string | null;
|
|
766
|
-
LastUpdate: string | null;
|
|
767
|
-
Name: string | null;
|
|
768
|
-
Sequence: number | null;
|
|
509
|
+
export type IntrastatDeliveryConditionsDTO = {
|
|
510
|
+
AccountId: string | null;
|
|
511
|
+
IntrastatDeliveryConditions: EntityTypeDTO[] | null;
|
|
769
512
|
} & CosmosDocumentDTO;
|
|
770
|
-
export type
|
|
771
|
-
|
|
513
|
+
export type IntrastatLoadingOptionsDTO = {
|
|
514
|
+
AccountId: string | null;
|
|
515
|
+
IntrastatLoadingOptions: EntityTypeDTO[] | null;
|
|
772
516
|
} & CosmosDocumentDTO;
|
|
773
|
-
export type
|
|
774
|
-
|
|
775
|
-
|
|
776
|
-
GroupKey: string | null;
|
|
777
|
-
GroupName: string | null;
|
|
778
|
-
GroupSequence: number | null;
|
|
779
|
-
IsActive: number | null;
|
|
780
|
-
IsSystem: number | null;
|
|
781
|
-
Key: string | null;
|
|
782
|
-
LastUpdate: string | null;
|
|
783
|
-
LocationCode: string | null;
|
|
784
|
-
LocationGroup: string | null;
|
|
785
|
-
LocationTypeKey: string | null;
|
|
786
|
-
LocationTypeName: string | null;
|
|
787
|
-
Name: string | null;
|
|
788
|
-
Sequence: number | null;
|
|
789
|
-
ShowStatus: number | null;
|
|
790
|
-
TypeDescription: string | null;
|
|
791
|
-
TypeIsActive: number | null;
|
|
792
|
-
TypeIsSystem: number | null;
|
|
793
|
-
TypeLastUpdate: string | null;
|
|
794
|
-
TypeSequence: number | null;
|
|
795
|
-
TypeShowStatus: string | null;
|
|
796
|
-
Warehouse: string | null;
|
|
517
|
+
export type NoteGroupTypesDTO = {
|
|
518
|
+
AccountId: string | null;
|
|
519
|
+
NoteGroupTypes: EntityTypeDTO[] | null;
|
|
797
520
|
} & CosmosDocumentDTO;
|
|
798
|
-
export type
|
|
799
|
-
|
|
521
|
+
export type BarcodeTypesDTO = {
|
|
522
|
+
AccountId: string | null;
|
|
523
|
+
BarcodeTypes: EntityTypeDTO[] | null;
|
|
800
524
|
} & CosmosDocumentDTO;
|
|
801
|
-
export type
|
|
802
|
-
|
|
525
|
+
export type FinancialLedgersDTO = {
|
|
526
|
+
AccountId: string | null;
|
|
527
|
+
FinancialLedgers: EntityTypeDTO[] | null;
|
|
803
528
|
} & CosmosDocumentDTO;
|
|
804
|
-
export type
|
|
805
|
-
|
|
529
|
+
export type CostingGroupsDTO = {
|
|
530
|
+
AccountId: string | null;
|
|
531
|
+
CostingGroups: EntityTypeDTO[] | null;
|
|
806
532
|
} & CosmosDocumentDTO;
|
|
807
|
-
export type
|
|
808
|
-
|
|
533
|
+
export type CalculationNumbersDTO = {
|
|
534
|
+
AccountId: string | null;
|
|
535
|
+
CalculationNumbers: EntityTypeDTO[] | null;
|
|
809
536
|
} & CosmosDocumentDTO;
|
|
810
537
|
export type ProductSeasonsDTO = {
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
export type ProductSortsDTO = {
|
|
814
|
-
Sorts: EntityTypeDTO[] | null;
|
|
538
|
+
AccountId: string | null;
|
|
539
|
+
ProductSeasons: EntityTypeDTO[] | null;
|
|
815
540
|
} & CosmosDocumentDTO;
|
|
816
541
|
export type ProductStatusDTO = {
|
|
817
|
-
|
|
542
|
+
AccountId: string | null;
|
|
543
|
+
ProductStatus: EntityTypeDTO[] | null;
|
|
818
544
|
} & CosmosDocumentDTO;
|
|
819
|
-
export type
|
|
820
|
-
|
|
545
|
+
export type ProductDeliveryDayTourTypesDTO = {
|
|
546
|
+
AccountId: string | null;
|
|
547
|
+
ProductDeliveryDayTourTypes: EntityTypeDTO[] | null;
|
|
821
548
|
} & CosmosDocumentDTO;
|
|
822
|
-
export type
|
|
823
|
-
|
|
549
|
+
export type PalletLocationGroupsDTO = {
|
|
550
|
+
AccountId: string | null;
|
|
551
|
+
PalletLocationGroups: EntityTypeDTO[] | null;
|
|
824
552
|
} & CosmosDocumentDTO;
|
|
825
|
-
export type
|
|
826
|
-
|
|
553
|
+
export type MenuCyclusMenuSetsDTO = {
|
|
554
|
+
AccountId: string | null;
|
|
555
|
+
MenuCyclusMenuSets: MenuCyclusMenuSetDTO[] | null;
|
|
827
556
|
} & CosmosDocumentDTO;
|
|
828
|
-
export type
|
|
829
|
-
|
|
830
|
-
|
|
831
|
-
|
|
832
|
-
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
LastUpdate: string | null;
|
|
836
|
-
Name: string | null;
|
|
837
|
-
SalesTarget: number | null;
|
|
838
|
-
StartDate: string | null;
|
|
557
|
+
export type MenuCyclusMenuSetDTO = {
|
|
558
|
+
Sequence: number | null;
|
|
559
|
+
Image: string | null;
|
|
560
|
+
} & EntityTypeDTO;
|
|
561
|
+
export type ProductContentTypesDTO = {
|
|
562
|
+
AccountId: string | null;
|
|
563
|
+
ProductContentTypes: EntityTypeDTO[] | null;
|
|
839
564
|
} & CosmosDocumentDTO;
|
|
840
|
-
export type
|
|
841
|
-
|
|
565
|
+
export type AccountDeliveryDaysDTO = {
|
|
566
|
+
AccountId: string | null;
|
|
567
|
+
DeliveryDays: DeliveryDaysDTO[] | null;
|
|
842
568
|
} & CosmosDocumentDTO;
|
|
843
|
-
export type
|
|
844
|
-
|
|
569
|
+
export type DeliveryDaysDTO = {
|
|
570
|
+
HolidayType: EntityTypeDTO | null;
|
|
571
|
+
Module: EntityTypeDTO | null;
|
|
572
|
+
Notes: string | null;
|
|
573
|
+
Monday: AccountDaysDTO | null;
|
|
574
|
+
Tuesday: AccountDaysDTO | null;
|
|
575
|
+
Wednesday: AccountDaysDTO | null;
|
|
576
|
+
Thursday: AccountDaysDTO | null;
|
|
577
|
+
Friday: AccountDaysDTO | null;
|
|
578
|
+
Saturday: AccountDaysDTO | null;
|
|
579
|
+
Sunday: AccountDaysDTO | null;
|
|
580
|
+
};
|
|
581
|
+
export type AccountDaysDTO = {
|
|
582
|
+
IsActive: boolean;
|
|
583
|
+
TransportFrom: string;
|
|
584
|
+
TransportTo: string;
|
|
585
|
+
Transport: VehicleDTO | null;
|
|
586
|
+
TransportTour: EntityTypeDTO | null;
|
|
587
|
+
Notes: string | null;
|
|
588
|
+
};
|
|
589
|
+
export type EdiStatusesDTO = {
|
|
590
|
+
AccountId: string | null;
|
|
591
|
+
EdiStatuses: EntityTypeDTO[] | null;
|
|
845
592
|
} & CosmosDocumentDTO;
|
|
846
|
-
export type
|
|
847
|
-
|
|
593
|
+
export type EdiGlnProfilesDTO = {
|
|
594
|
+
AccountId: string | null;
|
|
595
|
+
EdiGlnProfiles: EdiGlnProfileDTO[] | null;
|
|
848
596
|
} & CosmosDocumentDTO;
|
|
849
|
-
export type
|
|
850
|
-
|
|
597
|
+
export type EdiGlnProfileDTO = {
|
|
598
|
+
MessageType: EntityTypeDTO | null;
|
|
599
|
+
Gln: string | null;
|
|
600
|
+
Address: AddressDTO | null;
|
|
601
|
+
};
|
|
602
|
+
export type EdiGlnProfileMessageTypesDTO = {
|
|
603
|
+
AccountId: string | null;
|
|
604
|
+
EdiGlnProfileMessageTypes: EntityTypeDTO[] | null;
|
|
851
605
|
} & CosmosDocumentDTO;
|
|
852
|
-
export type
|
|
853
|
-
|
|
606
|
+
export type EdiMessageTypesDTO = {
|
|
607
|
+
AccountId: string | null;
|
|
608
|
+
EdiMessageTypes: EntityTypeDTO[] | null;
|
|
854
609
|
} & CosmosDocumentDTO;
|
|
855
|
-
export type
|
|
856
|
-
|
|
610
|
+
export type RfidProductionLocationsDTO = {
|
|
611
|
+
AccountId: string | null;
|
|
612
|
+
RfidProductionLocations: ProductionLocationItemDTO[] | null;
|
|
613
|
+
} & CosmosDocumentDTO;
|
|
614
|
+
export type ProductionLocationItemDTO = {
|
|
615
|
+
Number: string | null;
|
|
616
|
+
Description: string | null;
|
|
617
|
+
Modified: string | null;
|
|
618
|
+
WarehouseLocation: WarehouseStockLocationDTO | null;
|
|
619
|
+
ShowStatus: number;
|
|
620
|
+
};
|
|
621
|
+
export type TransportToursDTO = {
|
|
622
|
+
AccountId: string | null;
|
|
623
|
+
TransportTours: EntityTypeDTO[] | null;
|
|
857
624
|
} & CosmosDocumentDTO;
|
|
858
625
|
export type RelCertificateDTO = {
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
CertificateTypeDescription: string | null;
|
|
862
|
-
CertificateTypeIsActive: number | null;
|
|
863
|
-
CertificateTypeIsSystem: number | null;
|
|
864
|
-
CertificateTypeKey: string | null;
|
|
865
|
-
CertificateTypeLastUpdate: string | null;
|
|
866
|
-
CertificateTypeName: string | null;
|
|
867
|
-
CertificateTypeSequence: number | null;
|
|
868
|
-
CertificateTypeShowStatus: number | null;
|
|
869
|
-
Company: string | null;
|
|
870
|
-
ExpirationDate: string | null;
|
|
871
|
-
IsActive: number | null;
|
|
872
|
-
IsSystem: number | null;
|
|
873
|
-
Key: string | null;
|
|
874
|
-
LastUpdate: string | null;
|
|
875
|
-
Name: string | null;
|
|
876
|
-
Sequence: number | null;
|
|
877
|
-
ShowStatus: number | null;
|
|
626
|
+
AccountId: string | null;
|
|
627
|
+
Certificates: AccountCertificateDTO[];
|
|
878
628
|
} & CosmosDocumentDTO;
|
|
879
|
-
export type
|
|
880
|
-
|
|
881
|
-
Country: string | null;
|
|
629
|
+
export type AccountCertificateDTO = {
|
|
630
|
+
Key: string | null;
|
|
882
631
|
Description: string | null;
|
|
632
|
+
DescriptionDe: string | null;
|
|
633
|
+
DescriptionEn: string | null;
|
|
634
|
+
ShowStatus: number;
|
|
635
|
+
Notes: string | null;
|
|
636
|
+
StartDate: string | null;
|
|
637
|
+
ExpireDate: string | null;
|
|
638
|
+
Type: EntityTypeDTO | null;
|
|
639
|
+
};
|
|
640
|
+
export type RelEdiDTO = {
|
|
641
|
+
AccountId: string | null;
|
|
642
|
+
Edis: EdiItemDTO[];
|
|
643
|
+
} & CosmosDocumentDTO;
|
|
644
|
+
export type EdiItemDTO = {
|
|
645
|
+
Module: EntityTypeDTO | null;
|
|
646
|
+
Status: EntityTypeDTO | null;
|
|
647
|
+
GlnProfiles: GlnProfileDTO[];
|
|
648
|
+
MessageTypes: EdiMessageTypeDTO[];
|
|
649
|
+
};
|
|
650
|
+
export type GlnProfileDTO = {
|
|
651
|
+
MessageType: EntityTypeDTO | null;
|
|
883
652
|
Gln: string | null;
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
MessageType: string | null;
|
|
653
|
+
Address: EdiAddressDTO | null;
|
|
654
|
+
};
|
|
655
|
+
export type EdiAddressDTO = {
|
|
656
|
+
Type: EntityTypeDTO | null;
|
|
889
657
|
Name: string | null;
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
|
|
893
|
-
|
|
894
|
-
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
658
|
+
Name2: string | null;
|
|
659
|
+
Address: string | null;
|
|
660
|
+
AddressNumber: string | null;
|
|
661
|
+
AddressLetter: string | null;
|
|
662
|
+
Address2: string | null;
|
|
663
|
+
PostalCode: string | null;
|
|
664
|
+
City: string | null;
|
|
665
|
+
State: string | null;
|
|
666
|
+
Region: string | null;
|
|
667
|
+
Municipality: string | null;
|
|
668
|
+
Phone: EntityTypeDTO | null;
|
|
669
|
+
Email: EntityTypeDTO | null;
|
|
670
|
+
Rayon: EntityTypeDTO | null;
|
|
671
|
+
ContactPerson: string | null;
|
|
672
|
+
Latitude: number;
|
|
673
|
+
Longitude: number;
|
|
674
|
+
Country: EdiCountryDTO | null;
|
|
675
|
+
Province: string | null;
|
|
676
|
+
Notes: string | null;
|
|
677
|
+
ShowStatus: number;
|
|
678
|
+
};
|
|
679
|
+
export type EdiCountryDTO = {
|
|
899
680
|
Key: string | null;
|
|
900
|
-
LastUpdate: string | null;
|
|
901
|
-
Name: string | null;
|
|
902
|
-
Sequence: number | null;
|
|
903
|
-
ShowStatus: number | null;
|
|
904
|
-
} & CosmosDocumentDTO;
|
|
905
|
-
export type ReltatDTO = {
|
|
906
|
-
Account: string | null;
|
|
907
|
-
AccountKey: string | null;
|
|
908
|
-
Balance: number | null;
|
|
909
|
-
BankAccountNumbers: EntityTypeDTO[] | null;
|
|
910
|
-
Category: string | null;
|
|
911
|
-
Code: string | null;
|
|
912
|
-
CompanyName: string | null;
|
|
913
|
-
CreditLimit: number | null;
|
|
914
|
-
Currency: string | null;
|
|
915
|
-
CurrencyCode: string | null;
|
|
916
|
-
CurrencyDescription: string | null;
|
|
917
|
-
CurrencyIsActive: number | null;
|
|
918
|
-
CurrencyIsSystem: number | null;
|
|
919
|
-
CurrencyKey: string | null;
|
|
920
|
-
CurrencyLastUpdate: string | null;
|
|
921
|
-
CurrencyName: string | null;
|
|
922
|
-
CurrencySequence: number | null;
|
|
923
|
-
CurrencyShowStatus: number | null;
|
|
924
|
-
Debtor: string | null;
|
|
925
|
-
DebtorDescription: string | null;
|
|
926
|
-
DebtorIsActive: number | null;
|
|
927
|
-
DebtorIsSystem: number | null;
|
|
928
|
-
DebtorKey: string | null;
|
|
929
|
-
DebtorLastUpdate: string | null;
|
|
930
|
-
DebtorName: string | null;
|
|
931
|
-
DebtorSequence: number | null;
|
|
932
|
-
DebtorShowStatus: number | null;
|
|
933
681
|
Description: string | null;
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
947
|
-
|
|
948
|
-
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
PaymentMethod: string | null;
|
|
959
|
-
PaymentMethodDescription: string | null;
|
|
960
|
-
PaymentMethodIsActive: number | null;
|
|
961
|
-
PaymentMethodIsSystem: number | null;
|
|
962
|
-
PaymentMethodKey: string | null;
|
|
963
|
-
PaymentMethodLastUpdate: string | null;
|
|
964
|
-
PaymentMethodName: string | null;
|
|
965
|
-
PaymentMethodSequence: number | null;
|
|
966
|
-
PaymentMethodShowStatus: number | null;
|
|
967
|
-
PaymentTerms: string | null;
|
|
968
|
-
PaymentTermsDescription: string | null;
|
|
969
|
-
PaymentTermsIsActive: number | null;
|
|
970
|
-
PaymentTermsIsSystem: number | null;
|
|
971
|
-
PaymentTermsKey: string | null;
|
|
972
|
-
PaymentTermsLastUpdate: string | null;
|
|
973
|
-
PaymentTermsName: string | null;
|
|
974
|
-
PaymentTermsSequence: number | null;
|
|
975
|
-
PaymentTermsShowStatus: number | null;
|
|
976
|
-
Pricegroup: string | null;
|
|
977
|
-
PricegroupDescription: string | null;
|
|
978
|
-
PricegroupIsActive: number | null;
|
|
979
|
-
PricegroupIsSystem: number | null;
|
|
980
|
-
PricegroupKey: string | null;
|
|
981
|
-
PricegroupLastUpdate: string | null;
|
|
982
|
-
PricegroupName: string | null;
|
|
983
|
-
PricegroupSequence: number | null;
|
|
984
|
-
PricegroupShowStatus: number | null;
|
|
985
|
-
Rayoncode: string | null;
|
|
986
|
-
Rayonname: string | null;
|
|
987
|
-
Sequence: number | null;
|
|
988
|
-
ShippingAddress: string | null;
|
|
989
|
-
ShowStatus: number | null;
|
|
990
|
-
SortOrderCode: string | null;
|
|
991
|
-
SortOrderCodeDescription: string | null;
|
|
992
|
-
SortOrderCodeIsActive: number | null;
|
|
993
|
-
SortOrderCodeIsSystem: number | null;
|
|
994
|
-
SortOrderCodeKey: string | null;
|
|
995
|
-
SortOrderCodeLastUpdate: string | null;
|
|
996
|
-
SortOrderCodeName: string | null;
|
|
997
|
-
SortOrderCodeSequence: number | null;
|
|
998
|
-
SortOrderCodeShowStatus: number | null;
|
|
999
|
-
Status: string | null;
|
|
1000
|
-
StatusDescription: string | null;
|
|
1001
|
-
StatusIsActive: number | null;
|
|
1002
|
-
StatusIsSystem: number | null;
|
|
1003
|
-
StatusKey: string | null;
|
|
1004
|
-
StatusLastUpdate: string | null;
|
|
1005
|
-
StatusName: string | null;
|
|
1006
|
-
StatusSequence: number | null;
|
|
1007
|
-
StatusShowStatus: number | null;
|
|
1008
|
-
SysCompanyTypeCode: string | null;
|
|
1009
|
-
SysCompanyTypeCodeDescription: string | null;
|
|
1010
|
-
SysCompanyTypeCodeIsActive: number | null;
|
|
1011
|
-
SysCompanyTypeCodeIsSystem: number | null;
|
|
1012
|
-
SysCompanyTypeCodeKey: string | null;
|
|
1013
|
-
SysCompanyTypeCodeLastUpdate: string | null;
|
|
1014
|
-
SysCompanyTypeCodeName: string | null;
|
|
1015
|
-
SysCompanyTypeCodeSequence: number | null;
|
|
1016
|
-
SysCompanyTypeCodeShowStatus: number | null;
|
|
1017
|
-
TatlotNumber: string | null;
|
|
1018
|
-
Territory: string | null;
|
|
1019
|
-
TerritoryDescription: string | null;
|
|
1020
|
-
TerritoryIsActive: number | null;
|
|
1021
|
-
TerritoryIsSystem: number | null;
|
|
1022
|
-
TerritoryKey: string | null;
|
|
1023
|
-
TerritoryLastUpdate: string | null;
|
|
1024
|
-
TerritoryName: string | null;
|
|
1025
|
-
TerritorySequence: number | null;
|
|
1026
|
-
TerritoryShowStatus: number | null;
|
|
1027
|
-
TradeName: string | null;
|
|
1028
|
-
TypeCode: string | null;
|
|
1029
|
-
Unit: string | null;
|
|
1030
|
-
UnitDescription: string | null;
|
|
1031
|
-
UnitIsActive: number | null;
|
|
1032
|
-
UnitIsSystem: number | null;
|
|
1033
|
-
UnitKey: string | null;
|
|
1034
|
-
UnitLastUpdate: string | null;
|
|
1035
|
-
UnitName: string | null;
|
|
1036
|
-
UnitSequence: number | null;
|
|
1037
|
-
UnitShowStatus: number | null;
|
|
1038
|
-
VatNumber: string | null;
|
|
1039
|
-
Vehicle: string | null;
|
|
1040
|
-
VehicleDescription: string | null;
|
|
1041
|
-
VehicleIsActive: number | null;
|
|
1042
|
-
VehicleIsSystem: number | null;
|
|
1043
|
-
VehicleKey: string | null;
|
|
1044
|
-
VehicleLastUpdate: string | null;
|
|
1045
|
-
VehicleName: string | null;
|
|
1046
|
-
VehicleSequence: number | null;
|
|
1047
|
-
VehicleShowStatus: number | null;
|
|
1048
|
-
} & CosmosDocumentDTO;
|
|
1049
|
-
export type ReportEntryDTO = {
|
|
682
|
+
Iso: string | null;
|
|
683
|
+
Iso2: string | null;
|
|
684
|
+
Iso3: string | null;
|
|
685
|
+
PhonePrefix: string | null;
|
|
686
|
+
Currency: EntityTypeDTO | null;
|
|
687
|
+
Language: EntityTypeDTO | null;
|
|
688
|
+
ShowStatus: number;
|
|
689
|
+
};
|
|
690
|
+
export type EdiMessageTypeDTO = {
|
|
691
|
+
Type: EntityTypeDTO | null;
|
|
692
|
+
EdiMessageLevel: number;
|
|
693
|
+
Mess: boolean;
|
|
694
|
+
Check: boolean;
|
|
695
|
+
Orders: boolean;
|
|
696
|
+
Aperak: boolean;
|
|
697
|
+
SendMess: boolean;
|
|
698
|
+
Invoice: boolean;
|
|
699
|
+
DlvPlanning: boolean;
|
|
700
|
+
};
|
|
701
|
+
export type ReltatDTO = {
|
|
702
|
+
id: string | null;
|
|
703
|
+
PartitionKey: string | null;
|
|
704
|
+
CompanyNumber: string | null;
|
|
705
|
+
Entity: string | null;
|
|
1050
706
|
AccountId: string | null;
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
707
|
+
Tatlots: TatlotDTO[] | null;
|
|
708
|
+
DataSet: DataSetDTO | null;
|
|
709
|
+
};
|
|
710
|
+
export type TatlotDTO = {
|
|
711
|
+
LotNumber: string | null;
|
|
712
|
+
LotDate: string | null;
|
|
713
|
+
Account: AccountBaseDTO | null;
|
|
714
|
+
BirthDate: string | null;
|
|
715
|
+
BirthDescription: string | null;
|
|
716
|
+
BirthReference: string | null;
|
|
717
|
+
RearerDate: string | null;
|
|
718
|
+
RearerDescription: string | null;
|
|
719
|
+
RearerReference: string | null;
|
|
720
|
+
SlaughterDate: string | null;
|
|
721
|
+
SlaughterDescription: string | null;
|
|
722
|
+
SlaughterReference: string | null;
|
|
723
|
+
ProductionDate: string | null;
|
|
724
|
+
ProductionDescription: string | null;
|
|
725
|
+
ProductionReference: string | null;
|
|
726
|
+
ProductionDateMutation: string | null;
|
|
727
|
+
Languages: EntityTypeDTO[] | null;
|
|
728
|
+
ShowStatus: number;
|
|
729
|
+
};
|
|
730
|
+
export type GraiDTO = {
|
|
731
|
+
id: string | null;
|
|
732
|
+
PartitionKey: string | null;
|
|
733
|
+
CompanyNumber: string | null;
|
|
734
|
+
Entity: string | null;
|
|
735
|
+
AccountId: string | null;
|
|
736
|
+
RelGrais: RelGraiDTO[] | null;
|
|
737
|
+
DataSet: DataSetDTO | null;
|
|
738
|
+
};
|
|
739
|
+
export type RelGraiDTO = {
|
|
740
|
+
Number: number;
|
|
741
|
+
NumberString: string | null;
|
|
742
|
+
Sequence: number;
|
|
743
|
+
Description: string | null;
|
|
744
|
+
IsGraiAdministrationProduct: boolean;
|
|
745
|
+
IsAcceptedWhenDamaged: boolean;
|
|
746
|
+
Product: ProductDetails | null;
|
|
747
|
+
GraiGroupTypes: EntityTypeDTO[] | null;
|
|
748
|
+
GraiForUses: EntityTypeDTO[] | null;
|
|
749
|
+
Measurement: MeasurementDTO | null;
|
|
750
|
+
Weight: GraiWeightDTO | null;
|
|
751
|
+
Publications: EntityTypeDTO[] | null;
|
|
752
|
+
Gtins: GtinDTO[] | null;
|
|
753
|
+
};
|
|
754
|
+
export type ProductDetailsDTO = {
|
|
755
|
+
id: string | null;
|
|
756
|
+
Number: string | null;
|
|
757
|
+
Description: DescriptionV3 | null;
|
|
758
|
+
CalculationType: EntityTypeDTO | null;
|
|
759
|
+
Brand: EntityTypeDTO | null;
|
|
760
|
+
GroupGenerator: GroupGenerator | null;
|
|
761
|
+
GroupProductions: GroupSimpleV3[] | null;
|
|
762
|
+
BestBeforeDatesGenerator: BestBeforeDateGenerator[] | null;
|
|
763
|
+
};
|
|
764
|
+
export type GraiWeightDTO = {
|
|
765
|
+
Net: number;
|
|
766
|
+
Max: number;
|
|
767
|
+
Quantity: number;
|
|
768
|
+
};
|
|
769
|
+
export type MeasurementDTO = {
|
|
770
|
+
Length: number;
|
|
771
|
+
Height: number;
|
|
772
|
+
Width: number;
|
|
773
|
+
};
|
|
774
|
+
export type GtinDTO = {
|
|
775
|
+
Ean: string | null;
|
|
776
|
+
GtinType: EntityTypeDTO | null;
|
|
777
|
+
Remark: string | null;
|
|
778
|
+
Quantity: number;
|
|
779
|
+
};
|
|
780
|
+
export type CompanyCertificatesDTO = {
|
|
781
|
+
AccountId: string | null;
|
|
782
|
+
CompanyCertificates: EntityTypeDTO[] | null;
|
|
1068
783
|
} & CosmosDocumentDTO;
|
|
1069
|
-
export type
|
|
1070
|
-
|
|
784
|
+
export type PaymentMethodsDTO = {
|
|
785
|
+
AccountId: string | null;
|
|
786
|
+
PaymentMethods: EntityTypeDTO[] | null;
|
|
1071
787
|
} & CosmosDocumentDTO;
|
|
1072
|
-
export type
|
|
1073
|
-
|
|
788
|
+
export type PaymentStatusesDTO = {
|
|
789
|
+
AccountId: string | null;
|
|
790
|
+
PaymentStatuses: EntityTypeDTO[] | null;
|
|
1074
791
|
} & CosmosDocumentDTO;
|
|
1075
792
|
export type SalesChannelsDTO = {
|
|
1076
|
-
|
|
1077
|
-
|
|
1078
|
-
export type SalesDTO = {
|
|
1079
|
-
Sales: EntityTypeDTO[] | null;
|
|
1080
|
-
} & CosmosDocumentDTO;
|
|
1081
|
-
export type SalesDiscountsDTO = {
|
|
1082
|
-
Discounts: EntityTypeDTO[] | null;
|
|
1083
|
-
} & CosmosDocumentDTO;
|
|
1084
|
-
export type SalesBonusDTO = {
|
|
1085
|
-
Amount: number | null;
|
|
1086
|
-
BonusType: string | null;
|
|
1087
|
-
Description: string | null;
|
|
1088
|
-
EndDate: string | null;
|
|
1089
|
-
IsActive: number | null;
|
|
1090
|
-
Key: string | null;
|
|
1091
|
-
LastUpdate: string | null;
|
|
1092
|
-
Name: string | null;
|
|
1093
|
-
SalesTarget: number | null;
|
|
1094
|
-
StartDate: string | null;
|
|
1095
|
-
} & CosmosDocumentDTO;
|
|
1096
|
-
export type SalesOrderStatusDTO = {
|
|
1097
|
-
Statuses: EntityTypeDTO[] | null;
|
|
1098
|
-
} & CosmosDocumentDTO;
|
|
1099
|
-
export type SalesOrderTermsOfDeliveryDTO = {
|
|
1100
|
-
TermsOfDelivery: EntityTypeDTO[] | null;
|
|
1101
|
-
} & CosmosDocumentDTO;
|
|
1102
|
-
export type SalesTransportsDTO = {
|
|
1103
|
-
Transports: EntityTypeDTO[] | null;
|
|
1104
|
-
} & CosmosDocumentDTO;
|
|
1105
|
-
export type SalutationsDTO = {
|
|
1106
|
-
Salutations: EntityTypeDTO[] | null;
|
|
1107
|
-
} & CosmosDocumentDTO;
|
|
1108
|
-
export type ShippedCheckedDTO = {
|
|
1109
|
-
ShippedChecked: EntityTypeDTO[] | null;
|
|
793
|
+
AccountId: string | null;
|
|
794
|
+
SalesChannels: EntityTypeDTO[] | null;
|
|
1110
795
|
} & CosmosDocumentDTO;
|
|
1111
796
|
export type ShipmentMethodsDTO = {
|
|
797
|
+
AccountId: string | null;
|
|
1112
798
|
ShipmentMethods: EntityTypeDTO[] | null;
|
|
1113
799
|
} & CosmosDocumentDTO;
|
|
1114
800
|
export type ShipmentStatusDTO = {
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
export type SocialMediaTypesDTO = {
|
|
1118
|
-
SocialMediaTypes: EntityTypeDTO[] | null;
|
|
1119
|
-
} & CosmosDocumentDTO;
|
|
1120
|
-
export type StockDTO = {
|
|
1121
|
-
Stock: EntityTypeDTO[] | null;
|
|
801
|
+
AccountId: string | null;
|
|
802
|
+
ShipmentStatuses: EntityTypeDTO[] | null;
|
|
1122
803
|
} & CosmosDocumentDTO;
|
|
1123
|
-
export type
|
|
1124
|
-
|
|
804
|
+
export type PublicationsDTO = {
|
|
805
|
+
AccountId: string | null;
|
|
806
|
+
Publications: EntityTypeDTO[] | null;
|
|
1125
807
|
} & CosmosDocumentDTO;
|
|
1126
|
-
export type
|
|
1127
|
-
|
|
1128
|
-
|
|
1129
|
-
GroupName: string | null;
|
|
1130
|
-
GroupSequence: number | null;
|
|
1131
|
-
IsActive: number | null;
|
|
1132
|
-
IsSystem: number | null;
|
|
1133
|
-
Key: string | null;
|
|
1134
|
-
LastUpdate: string | null;
|
|
1135
|
-
LocationCode: string | null;
|
|
1136
|
-
LocationGroup: string | null;
|
|
1137
|
-
LocationTypeKey: string | null;
|
|
1138
|
-
LocationTypeName: string | null;
|
|
1139
|
-
Name: string | null;
|
|
1140
|
-
Sequence: number | null;
|
|
1141
|
-
ShowStatus: number | null;
|
|
1142
|
-
TypeDescription: string | null;
|
|
1143
|
-
TypeIsActive: number | null;
|
|
1144
|
-
TypeIsSystem: number | null;
|
|
1145
|
-
TypeLastUpdate: string | null;
|
|
1146
|
-
TypeSequence: number | null;
|
|
1147
|
-
TypeShowStatus: string | null;
|
|
808
|
+
export type GraiGroupTypesDTO = {
|
|
809
|
+
AccountId: string | null;
|
|
810
|
+
GraiGroupTypes: EntityTypeDTO[] | null;
|
|
1148
811
|
} & CosmosDocumentDTO;
|
|
1149
|
-
export type
|
|
1150
|
-
|
|
812
|
+
export type GraiForUsesDTO = {
|
|
813
|
+
AccountId: string | null;
|
|
814
|
+
GraiForUses: EntityTypeDTO[] | null;
|
|
1151
815
|
} & CosmosDocumentDTO;
|
|
1152
|
-
export type
|
|
1153
|
-
|
|
816
|
+
export type IngredientTypesDTO = {
|
|
817
|
+
AccountId: string | null;
|
|
818
|
+
IngredientTypes: EntityTypeDTO[] | null;
|
|
1154
819
|
} & CosmosDocumentDTO;
|
|
1155
|
-
export type
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
BestBeforeDate: string | null;
|
|
1159
|
-
Category: string | null;
|
|
1160
|
-
CategoryDescription: string | null;
|
|
1161
|
-
CategoryIsActive: number | null;
|
|
1162
|
-
CategoryIsSystem: number | null;
|
|
1163
|
-
CategoryKey: string | null;
|
|
1164
|
-
CategoryLastUpdate: string | null;
|
|
1165
|
-
CategoryName: string | null;
|
|
1166
|
-
CategorySequence: number | null;
|
|
1167
|
-
CategoryShowStatus: number | null;
|
|
1168
|
-
Code: string | null;
|
|
1169
|
-
Description: string | null;
|
|
1170
|
-
ExpirationDate: string | null;
|
|
1171
|
-
ExternalProductId: string | null;
|
|
1172
|
-
ForecastAmount: number | null;
|
|
1173
|
-
ForeignKey: string | null;
|
|
1174
|
-
Gtin: string | null;
|
|
1175
|
-
GtinProduct: string | null;
|
|
1176
|
-
GtinProductDescription: string | null;
|
|
1177
|
-
GtinProductIsActive: number | null;
|
|
1178
|
-
GtinProductIsSystem: number | null;
|
|
1179
|
-
GtinProductKey: string | null;
|
|
1180
|
-
GtinProductLastUpdate: string | null;
|
|
1181
|
-
GtinProductName: string | null;
|
|
1182
|
-
GtinProductSequence: number | null;
|
|
1183
|
-
GtinProductShowStatus: number | null;
|
|
1184
|
-
IsActive: number | null;
|
|
1185
|
-
IsSystem: number | null;
|
|
1186
|
-
Key: string | null;
|
|
1187
|
-
LastUpdate: string | null;
|
|
1188
|
-
Location: string | null;
|
|
1189
|
-
LocationCode: string | null;
|
|
1190
|
-
LocationDescription: string | null;
|
|
1191
|
-
LocationGroupKey: string | null;
|
|
1192
|
-
LocationGroupName: string | null;
|
|
1193
|
-
LocationGroupSequence: number | null;
|
|
1194
|
-
LocationIsActive: number | null;
|
|
1195
|
-
LocationIsSystem: number | null;
|
|
1196
|
-
LocationKey: string | null;
|
|
1197
|
-
LocationLastUpdate: string | null;
|
|
1198
|
-
LocationName: string | null;
|
|
1199
|
-
LocationSequence: number | null;
|
|
1200
|
-
LocationShowStatus: number | null;
|
|
1201
|
-
LocationTypeDescription: string | null;
|
|
1202
|
-
LocationTypeIsActive: number | null;
|
|
1203
|
-
LocationTypeIsSystem: number | null;
|
|
1204
|
-
LocationTypeKey: string | null;
|
|
1205
|
-
LocationTypeLastUpdate: string | null;
|
|
1206
|
-
LocationTypeName: string | null;
|
|
1207
|
-
LocationTypeSequence: number | null;
|
|
1208
|
-
LocationTypeShowStatus: string | null;
|
|
1209
|
-
Name: string | null;
|
|
1210
|
-
OriginCountry: string | null;
|
|
1211
|
-
OriginCountryDescription: string | null;
|
|
1212
|
-
OriginCountryIsActive: number | null;
|
|
1213
|
-
OriginCountryIsSystem: number | null;
|
|
1214
|
-
OriginCountryKey: string | null;
|
|
1215
|
-
OriginCountryLastUpdate: string | null;
|
|
1216
|
-
OriginCountryName: string | null;
|
|
1217
|
-
OriginCountrySequence: number | null;
|
|
1218
|
-
OriginCountryShowStatus: number | null;
|
|
1219
|
-
ProductionDate: string | null;
|
|
1220
|
-
Qty: number | null;
|
|
1221
|
-
Sequence: number | null;
|
|
1222
|
-
ShowStatus: number | null;
|
|
1223
|
-
Supplier: string | null;
|
|
1224
|
-
SupplierCode: string | null;
|
|
1225
|
-
SupplierCompanyName: string | null;
|
|
1226
|
-
TatlotEvents: EntityTypeDTO[] | null;
|
|
1227
|
-
Unit: string | null;
|
|
1228
|
-
UnitDescription: string | null;
|
|
1229
|
-
UnitIsActive: number | null;
|
|
1230
|
-
UnitIsSystem: number | null;
|
|
1231
|
-
UnitKey: string | null;
|
|
1232
|
-
UnitLastUpdate: string | null;
|
|
1233
|
-
UnitName: string | null;
|
|
1234
|
-
UnitSequence: number | null;
|
|
1235
|
-
UnitShowStatus: number | null;
|
|
1236
|
-
Warehouse: string | null;
|
|
1237
|
-
WarehouseCode: string | null;
|
|
1238
|
-
WarehouseName: string | null;
|
|
820
|
+
export type HolidayTypesDTO = {
|
|
821
|
+
AccountId: string | null;
|
|
822
|
+
HolidayTypes: EntityTypeDTO[] | null;
|
|
1239
823
|
} & CosmosDocumentDTO;
|
|
1240
|
-
export type
|
|
1241
|
-
|
|
824
|
+
export type AlbaDTO = {
|
|
825
|
+
GroupType: string | null;
|
|
826
|
+
LanguageCode: string;
|
|
827
|
+
} & EntityTypeDTO;
|
|
828
|
+
export type IngredientGroupDTO = {
|
|
829
|
+
LanguageCode: string;
|
|
830
|
+
} & EntityTypeDTO;
|
|
831
|
+
export type AlbaGroupsDTO = {
|
|
832
|
+
AccountId: string | null;
|
|
833
|
+
AlbaGroups: EntityTypeDTO[] | null;
|
|
1242
834
|
} & CosmosDocumentDTO;
|
|
1243
|
-
export type
|
|
1244
|
-
|
|
835
|
+
export type IngredientGroupsDTO = {
|
|
836
|
+
AccountId: string | null;
|
|
837
|
+
IngredientGroups: IngredientGroupDTO[] | null;
|
|
1245
838
|
} & CosmosDocumentDTO;
|
|
1246
|
-
export type
|
|
1247
|
-
|
|
839
|
+
export type NutritionDefinitionDTO = {
|
|
840
|
+
Name: string | null;
|
|
841
|
+
NutrionGroup: EntityTypeDTO | null;
|
|
842
|
+
ShowStatus: number;
|
|
843
|
+
};
|
|
844
|
+
export type NutritionDefinitionsDTO = {
|
|
845
|
+
AccountId: string | null;
|
|
846
|
+
NutritionDefinitions: NutritionDefinitionDTO[] | null;
|
|
1248
847
|
} & CosmosDocumentDTO;
|
|
1249
|
-
export type
|
|
1250
|
-
|
|
1251
|
-
|
|
848
|
+
export type ProductCategoriesDTO = {
|
|
849
|
+
AccountId: string | null;
|
|
850
|
+
ProductCategories: EntityTypeDTO[] | null;
|
|
1252
851
|
} & CosmosDocumentDTO;
|
|
1253
|
-
export type
|
|
1254
|
-
|
|
1255
|
-
|
|
1256
|
-
GroupName: string | null;
|
|
1257
|
-
GroupSequence: number | null;
|
|
1258
|
-
IsActive: number | null;
|
|
1259
|
-
IsSystem: number | null;
|
|
1260
|
-
Key: string | null;
|
|
1261
|
-
LastUpdate: string | null;
|
|
1262
|
-
LocationCode: string | null;
|
|
1263
|
-
LocationGroup: string | null;
|
|
1264
|
-
LocationTypeKey: string | null;
|
|
1265
|
-
LocationTypeName: string | null;
|
|
1266
|
-
Name: string | null;
|
|
1267
|
-
Sequence: number | null;
|
|
1268
|
-
ShowStatus: number | null;
|
|
1269
|
-
TypeDescription: string | null;
|
|
1270
|
-
TypeIsActive: number | null;
|
|
1271
|
-
TypeIsSystem: number | null;
|
|
1272
|
-
TypeLastUpdate: string | null;
|
|
1273
|
-
TypeSequence: number | null;
|
|
1274
|
-
TypeShowStatus: string | null;
|
|
852
|
+
export type GraiPublicationsDTO = {
|
|
853
|
+
AccountId: string | null;
|
|
854
|
+
GraiPublications: EntityTypeDTO[] | null;
|
|
1275
855
|
} & CosmosDocumentDTO;
|
|
1276
856
|
export type WarehouseStockLocationsDTO = {
|
|
1277
|
-
|
|
1278
|
-
|
|
1279
|
-
export type WarehousesDTO = {
|
|
1280
|
-
Warehouses: EntityTypeDTO[] | null;
|
|
857
|
+
AccountId: string | null;
|
|
858
|
+
WarehouseStockLocations: WarehouseStockLocationDTO[] | null;
|
|
1281
859
|
} & CosmosDocumentDTO;
|
|
1282
|
-
export type
|
|
1283
|
-
|
|
860
|
+
export type DotStatusDTO = {
|
|
861
|
+
AccountId: string | null;
|
|
862
|
+
DotStatuses: EntityTypeDTO[] | null;
|
|
1284
863
|
} & CosmosDocumentDTO;
|
|
1285
864
|
//# sourceMappingURL=master-data.d.ts.map
|