@ah-automation.nl/component-lib 0.0.115 → 0.0.116
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/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 +1274 -2
- 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,13 +1,1285 @@
|
|
|
1
1
|
import type { CosmosDocumentDTO, CountryDTO, EntityTypeDTO } from "../../../../types";
|
|
2
|
+
export type VehicleDTO = {
|
|
3
|
+
Description: string | null;
|
|
4
|
+
Key: string | null;
|
|
5
|
+
LicensePlate: string | null;
|
|
6
|
+
Qr: string | null;
|
|
7
|
+
ShowStatus: number | null;
|
|
8
|
+
} & CosmosDocumentDTO;
|
|
9
|
+
export type AccountCertificateDTO = {
|
|
10
|
+
Account: string | null;
|
|
11
|
+
Certificate: string | null;
|
|
12
|
+
} & CosmosDocumentDTO;
|
|
13
|
+
export type AccountDaysDTO = {
|
|
14
|
+
AccountId: string | null;
|
|
15
|
+
Days: EntityTypeDTO[] | null;
|
|
16
|
+
} & CosmosDocumentDTO;
|
|
17
|
+
export type AccountDeliveryDaysDTO = {
|
|
18
|
+
Account: string | null;
|
|
19
|
+
DeliveryDayTourTypes: EntityTypeDTO[] | null;
|
|
20
|
+
} & CosmosDocumentDTO;
|
|
21
|
+
export type AccountInvoicesDTO = {
|
|
22
|
+
AccountId: string | null;
|
|
23
|
+
Invoices: EntityTypeDTO[] | null;
|
|
24
|
+
} & CosmosDocumentDTO;
|
|
25
|
+
export type AdminNumberTypesDTO = {
|
|
26
|
+
AdminNumberTypes: EntityTypeDTO[] | null;
|
|
27
|
+
} & CosmosDocumentDTO;
|
|
28
|
+
export type AlbaDTO = EntityTypeDTO;
|
|
29
|
+
export type AlbaGroupsDTO = {
|
|
30
|
+
AlbaGroups: EntityTypeDTO[] | null;
|
|
31
|
+
} & CosmosDocumentDTO;
|
|
32
|
+
export type BarcodeTypesDTO = {
|
|
33
|
+
BarcodeTypes: EntityTypeDTO[] | null;
|
|
34
|
+
} & CosmosDocumentDTO;
|
|
35
|
+
export type BookTypesDTO = {
|
|
36
|
+
AccountId: string | null;
|
|
37
|
+
BookTypes: EntityTypeDTO[] | null;
|
|
38
|
+
} & CosmosDocumentDTO;
|
|
39
|
+
export type BranchesDTO = {
|
|
40
|
+
Branches: EntityTypeDTO[] | null;
|
|
41
|
+
} & CosmosDocumentDTO;
|
|
42
|
+
export type CalculationNumbersDTO = {
|
|
43
|
+
CalculationNumbers: EntityTypeDTO[] | null;
|
|
44
|
+
} & CosmosDocumentDTO;
|
|
45
|
+
export type CategoriesDTO = {
|
|
46
|
+
Categories: EntityTypeDTO[] | null;
|
|
47
|
+
} & CosmosDocumentDTO;
|
|
48
|
+
export type ClaimInvoicesDTO = {
|
|
49
|
+
AccountId: string | null;
|
|
50
|
+
ClaimInvoices: EntityTypeDTO[] | null;
|
|
51
|
+
} & CosmosDocumentDTO;
|
|
52
|
+
export type CompanyAddressTypesDTO = {
|
|
53
|
+
AddressTypes: EntityTypeDTO[] | null;
|
|
54
|
+
} & CosmosDocumentDTO;
|
|
55
|
+
export type CompanyBranchesDTO = {
|
|
56
|
+
Branches: EntityTypeDTO[] | null;
|
|
57
|
+
} & CosmosDocumentDTO;
|
|
58
|
+
export type CompanyCategoriesDTO = {
|
|
59
|
+
Categories: EntityTypeDTO[] | null;
|
|
60
|
+
} & CosmosDocumentDTO;
|
|
61
|
+
export type CompanyCertificatesDTO = {
|
|
62
|
+
Certificates: EntityTypeDTO[] | null;
|
|
63
|
+
} & CosmosDocumentDTO;
|
|
64
|
+
export type CompanyFunctionTypesDTO = {
|
|
65
|
+
FunctionTypes: EntityTypeDTO[] | null;
|
|
66
|
+
} & CosmosDocumentDTO;
|
|
67
|
+
export type ContactPersonFunctionsDTO = {
|
|
68
|
+
Functions: EntityTypeDTO[] | null;
|
|
69
|
+
} & CosmosDocumentDTO;
|
|
2
70
|
export type CountriesDTO = {
|
|
3
71
|
AccountId: string | null;
|
|
4
72
|
Countries: CountryDTO[];
|
|
5
73
|
} & CosmosDocumentDTO;
|
|
6
|
-
export type
|
|
7
|
-
|
|
74
|
+
export type CostingGroupsDTO = {
|
|
75
|
+
CostingGroups: EntityTypeDTO[] | null;
|
|
76
|
+
} & CosmosDocumentDTO;
|
|
77
|
+
export type CostingTypesDTO = {
|
|
78
|
+
CostingTypes: EntityTypeDTO[] | null;
|
|
8
79
|
} & CosmosDocumentDTO;
|
|
9
80
|
export type CurrenciesDTO = {
|
|
10
81
|
AccountId: string | null;
|
|
11
82
|
Currencies: EntityTypeDTO[] | null;
|
|
12
83
|
} & CosmosDocumentDTO;
|
|
84
|
+
export type DeliveryDaysDTO = {
|
|
85
|
+
DeliveryDays: EntityTypeDTO[] | null;
|
|
86
|
+
} & CosmosDocumentDTO;
|
|
87
|
+
export type DiscountDTO = {
|
|
88
|
+
AccountId: string | null;
|
|
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;
|
|
97
|
+
} & CosmosDocumentDTO;
|
|
98
|
+
export type DiscountsDTO = {
|
|
99
|
+
AccountId: string | null;
|
|
100
|
+
Discounts: DiscountDTO[] | null;
|
|
101
|
+
} & CosmosDocumentDTO;
|
|
102
|
+
export type DiscountTypesDTO = {
|
|
103
|
+
DiscountTypes: EntityTypeDTO[] | null;
|
|
104
|
+
} & CosmosDocumentDTO;
|
|
105
|
+
export type DotEventsDTO = {
|
|
106
|
+
Events: EntityTypeDTO[] | null;
|
|
107
|
+
} & CosmosDocumentDTO;
|
|
108
|
+
export type DotStatusDTO = {
|
|
109
|
+
AccountId: string | null;
|
|
110
|
+
DotStatus: EntityTypeDTO[] | null;
|
|
111
|
+
} & CosmosDocumentDTO;
|
|
112
|
+
export type DotStatusesDTO = {
|
|
113
|
+
DotStatuses: EntityTypeDTO[] | null;
|
|
114
|
+
} & CosmosDocumentDTO;
|
|
115
|
+
export type DotTypesDTO = {
|
|
116
|
+
DotTypes: EntityTypeDTO[] | null;
|
|
117
|
+
} & CosmosDocumentDTO;
|
|
118
|
+
export type EdiAddressDTO = {
|
|
119
|
+
City: string | null;
|
|
120
|
+
Country: string | null;
|
|
121
|
+
HouseNumber: string | null;
|
|
122
|
+
PostalCode: string | null;
|
|
123
|
+
Street: string | null;
|
|
124
|
+
} & CosmosDocumentDTO;
|
|
125
|
+
export type EdiCountryDTO = {
|
|
126
|
+
CountryCode: string | null;
|
|
127
|
+
Gln: string | null;
|
|
128
|
+
} & CosmosDocumentDTO;
|
|
129
|
+
export type EdiGlnProfileDTO = {
|
|
130
|
+
AccountId: string | null;
|
|
131
|
+
CompanyName: string | null;
|
|
132
|
+
Gln: string | null;
|
|
133
|
+
IsActive: number | null;
|
|
134
|
+
MessageTypes: EntityTypeDTO[] | null;
|
|
135
|
+
} & CosmosDocumentDTO;
|
|
136
|
+
export type EdiGlnProfileMessageTypesDTO = {
|
|
137
|
+
AccountId: string | null;
|
|
138
|
+
MessageTypes: EntityTypeDTO[] | null;
|
|
139
|
+
} & CosmosDocumentDTO;
|
|
140
|
+
export type EdiGlnProfilesDTO = {
|
|
141
|
+
AccountId: string | null;
|
|
142
|
+
Profiles: EdiGlnProfileDTO[] | null;
|
|
143
|
+
} & CosmosDocumentDTO;
|
|
144
|
+
export type EdiItemDTO = {
|
|
145
|
+
AccountId: string | null;
|
|
146
|
+
Description: string | null;
|
|
147
|
+
IsActive: number | null;
|
|
148
|
+
ItemCode: string | null;
|
|
149
|
+
} & CosmosDocumentDTO;
|
|
150
|
+
export type EdiMessageTypeDTO = {
|
|
151
|
+
AccountId: string | null;
|
|
152
|
+
Description: string | null;
|
|
153
|
+
EdiType: string | null;
|
|
154
|
+
IsActive: number | null;
|
|
155
|
+
Name: string | null;
|
|
156
|
+
} & CosmosDocumentDTO;
|
|
157
|
+
export type EdiMessageTypesDTO = {
|
|
158
|
+
MessageTypes: EntityTypeDTO[] | null;
|
|
159
|
+
} & CosmosDocumentDTO;
|
|
160
|
+
export type EdiStatusesDTO = {
|
|
161
|
+
Statuses: EntityTypeDTO[] | null;
|
|
162
|
+
} & CosmosDocumentDTO;
|
|
163
|
+
export type FinancialAccountDTO = {
|
|
164
|
+
Account: string | null;
|
|
165
|
+
AccountNumber: string | null;
|
|
166
|
+
} & CosmosDocumentDTO;
|
|
167
|
+
export type FinancialAccountsDTO = {
|
|
168
|
+
Accounts: FinancialAccountDTO[] | null;
|
|
169
|
+
} & CosmosDocumentDTO;
|
|
170
|
+
export type FinancialJournalTypesDTO = {
|
|
171
|
+
JournalTypes: EntityTypeDTO[] | null;
|
|
172
|
+
} & CosmosDocumentDTO;
|
|
173
|
+
export type FinancialLedgersDTO = {
|
|
174
|
+
Ledgers: EntityTypeDTO[] | null;
|
|
175
|
+
} & CosmosDocumentDTO;
|
|
176
|
+
export type FinancialVatDTO = {
|
|
177
|
+
VatCodes: EntityTypeDTO[] | null;
|
|
178
|
+
} & CosmosDocumentDTO;
|
|
179
|
+
export type FoodCertificateTypesDTO = {
|
|
180
|
+
CertificateTypes: EntityTypeDTO[] | null;
|
|
181
|
+
} & CosmosDocumentDTO;
|
|
182
|
+
export type FunctionTypesDTO = {
|
|
183
|
+
FunctionTypes: EntityTypeDTO[] | null;
|
|
184
|
+
} & CosmosDocumentDTO;
|
|
185
|
+
export type GenericDTO = {
|
|
186
|
+
Code: string | null;
|
|
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;
|
|
195
|
+
} & CosmosDocumentDTO;
|
|
196
|
+
export type GendersDTO = {
|
|
197
|
+
Genders: EntityTypeDTO[] | null;
|
|
198
|
+
} & CosmosDocumentDTO;
|
|
199
|
+
export type GlnProfileDTO = {
|
|
200
|
+
CompanyName: string | null;
|
|
201
|
+
Gln: string | null;
|
|
202
|
+
} & CosmosDocumentDTO;
|
|
203
|
+
export type GraiDTO = {
|
|
204
|
+
ActiveIngredients: string | null;
|
|
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;
|
|
262
|
+
} & CosmosDocumentDTO;
|
|
263
|
+
export type GraiForUsesDTO = {
|
|
264
|
+
ForUses: EntityTypeDTO[] | null;
|
|
265
|
+
} & CosmosDocumentDTO;
|
|
266
|
+
export type GraiGroupTypesDTO = {
|
|
267
|
+
GroupTypes: EntityTypeDTO[] | null;
|
|
268
|
+
} & CosmosDocumentDTO;
|
|
269
|
+
export type GraiPublicationsDTO = {
|
|
270
|
+
Publications: EntityTypeDTO[] | null;
|
|
271
|
+
} & CosmosDocumentDTO;
|
|
272
|
+
export type GraiWeightDTO = {
|
|
273
|
+
Weight: string | null;
|
|
274
|
+
WeightUnit: string | null;
|
|
275
|
+
} & CosmosDocumentDTO;
|
|
276
|
+
export type GroupDTO = {
|
|
277
|
+
Description: string | null;
|
|
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;
|
|
287
|
+
} & CosmosDocumentDTO;
|
|
288
|
+
export type GtinDTO = {
|
|
289
|
+
BestBeforeDateGenerator: string | null;
|
|
290
|
+
BrandName: string | null;
|
|
291
|
+
Category: string | null;
|
|
292
|
+
CertificationInfo: string | null;
|
|
293
|
+
Country: string | null;
|
|
294
|
+
Description: string | null;
|
|
295
|
+
Exp: string | null;
|
|
296
|
+
Fao: string | null;
|
|
297
|
+
ForeignKey: string | null;
|
|
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;
|
|
332
|
+
export type IcpsDTO = {
|
|
333
|
+
Code: string | null;
|
|
334
|
+
Description: string | null;
|
|
335
|
+
IsActive: number | null;
|
|
336
|
+
Key: string | null;
|
|
337
|
+
LastUpdate: string | null;
|
|
338
|
+
Name: string | null;
|
|
339
|
+
Sequence: number | null;
|
|
340
|
+
ShowStatus: number | null;
|
|
341
|
+
} & CosmosDocumentDTO;
|
|
342
|
+
export type IcpTransactionsDTO = {
|
|
343
|
+
Transactions: EntityTypeDTO[] | null;
|
|
344
|
+
} & CosmosDocumentDTO;
|
|
345
|
+
export type IngredientGroupDTO = {
|
|
346
|
+
Description: string | null;
|
|
347
|
+
ForeignKey: string | null;
|
|
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;
|
|
356
|
+
} & CosmosDocumentDTO;
|
|
357
|
+
export type IngredientGroupsDTO = {
|
|
358
|
+
IngredientGroups: IngredientGroupDTO[] | null;
|
|
359
|
+
} & CosmosDocumentDTO;
|
|
360
|
+
export type IngredientTypesDTO = {
|
|
361
|
+
IngredientTypes: EntityTypeDTO[] | null;
|
|
362
|
+
} & CosmosDocumentDTO;
|
|
363
|
+
export type IntrastatActiveDTO = {
|
|
364
|
+
Code: string | null;
|
|
365
|
+
Description: string | null;
|
|
366
|
+
IsActive: number | null;
|
|
367
|
+
Key: string | null;
|
|
368
|
+
LastUpdate: string | null;
|
|
369
|
+
Name: string | null;
|
|
370
|
+
Sequence: number | null;
|
|
371
|
+
ShowStatus: number | null;
|
|
372
|
+
} & CosmosDocumentDTO;
|
|
373
|
+
export type IntrastatCountriesDTO = {
|
|
374
|
+
Code: string | null;
|
|
375
|
+
Description: string | null;
|
|
376
|
+
IsActive: number | null;
|
|
377
|
+
Key: string | null;
|
|
378
|
+
LastUpdate: string | null;
|
|
379
|
+
Name: string | null;
|
|
380
|
+
Sequence: number | null;
|
|
381
|
+
ShowStatus: number | null;
|
|
382
|
+
} & CosmosDocumentDTO;
|
|
383
|
+
export type IntrastatDelConditionsDTO = {
|
|
384
|
+
Code: string | null;
|
|
385
|
+
Description: string | null;
|
|
386
|
+
IsActive: number | null;
|
|
387
|
+
Key: string | null;
|
|
388
|
+
LastUpdate: string | null;
|
|
389
|
+
Name: string | null;
|
|
390
|
+
Sequence: number | null;
|
|
391
|
+
ShowStatus: number | null;
|
|
392
|
+
} & CosmosDocumentDTO;
|
|
393
|
+
export type IntrastatDeliveryConditionsDTO = {
|
|
394
|
+
DeliveryConditions: EntityTypeDTO[] | null;
|
|
395
|
+
} & CosmosDocumentDTO;
|
|
396
|
+
export type IntrastatDestinationCountriesDTO = {
|
|
397
|
+
DestinationCountries: EntityTypeDTO[] | null;
|
|
398
|
+
} & CosmosDocumentDTO;
|
|
399
|
+
export type IntrastatLoadDTO = {
|
|
400
|
+
IntrastatLoads: EntityTypeDTO[] | null;
|
|
401
|
+
} & CosmosDocumentDTO;
|
|
402
|
+
export type IntrastatLoadingOptionsDTO = {
|
|
403
|
+
LoadingOptions: EntityTypeDTO[] | null;
|
|
404
|
+
} & CosmosDocumentDTO;
|
|
405
|
+
export type IntrastatRegionDTO = {
|
|
406
|
+
Code: string | null;
|
|
407
|
+
Description: string | null;
|
|
408
|
+
IsActive: number | null;
|
|
409
|
+
Key: string | null;
|
|
410
|
+
LastUpdate: string | null;
|
|
411
|
+
Name: string | null;
|
|
412
|
+
Sequence: number | null;
|
|
413
|
+
ShowStatus: number | null;
|
|
414
|
+
} & CosmosDocumentDTO;
|
|
415
|
+
export type IntrastatStatusDTO = {
|
|
416
|
+
Code: string | null;
|
|
417
|
+
Description: string | null;
|
|
418
|
+
IsActive: number | null;
|
|
419
|
+
Key: string | null;
|
|
420
|
+
LastUpdate: string | null;
|
|
421
|
+
Name: string | null;
|
|
422
|
+
Sequence: number | null;
|
|
423
|
+
ShowStatus: number | null;
|
|
424
|
+
} & CosmosDocumentDTO;
|
|
425
|
+
export type IntrastatSystemDTO = {
|
|
426
|
+
IntrastatSystems: EntityTypeDTO[] | null;
|
|
427
|
+
} & CosmosDocumentDTO;
|
|
428
|
+
export type IntrastatTransportDTO = {
|
|
429
|
+
IntrastatTransport: EntityTypeDTO[] | null;
|
|
430
|
+
} & CosmosDocumentDTO;
|
|
431
|
+
export type IntrastatTransTypeDTO = {
|
|
432
|
+
IntrastatTransTypes: EntityTypeDTO[] | null;
|
|
433
|
+
} & CosmosDocumentDTO;
|
|
434
|
+
export type InvoiceCodesDTO = {
|
|
435
|
+
InvoiceCodes: EntityTypeDTO[] | null;
|
|
436
|
+
} & CosmosDocumentDTO;
|
|
437
|
+
export type InvoiceDiscountsDTO = {
|
|
438
|
+
AccountId: string | null;
|
|
439
|
+
DiscountGroups: EntityTypeDTO[] | null;
|
|
440
|
+
} & CosmosDocumentDTO;
|
|
441
|
+
export type InvoiceGraiCodesDTO = {
|
|
442
|
+
InvoiceGraiCodes: EntityTypeDTO[] | null;
|
|
443
|
+
} & CosmosDocumentDTO;
|
|
444
|
+
export type InvoiceGroupsDTO = {
|
|
445
|
+
InvoiceGroups: EntityTypeDTO[] | null;
|
|
446
|
+
} & CosmosDocumentDTO;
|
|
447
|
+
export type LanguagesDTO = {
|
|
448
|
+
Languages: EntityTypeDTO[] | null;
|
|
449
|
+
} & CosmosDocumentDTO;
|
|
450
|
+
export type MasterDTO = {
|
|
451
|
+
Master: EntityTypeDTO[] | null;
|
|
452
|
+
} & CosmosDocumentDTO;
|
|
453
|
+
export type MeasurementDTO = {
|
|
454
|
+
Code: string | null;
|
|
455
|
+
Description: string | null;
|
|
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;
|
|
463
|
+
} & CosmosDocumentDTO;
|
|
464
|
+
export type MenuCyclusCategoryDTO = {
|
|
465
|
+
Categories: EntityTypeDTO[] | null;
|
|
466
|
+
} & CosmosDocumentDTO;
|
|
467
|
+
export type MenuCyclusGroupsDTO = {
|
|
468
|
+
Groups: EntityTypeDTO[] | null;
|
|
469
|
+
} & CosmosDocumentDTO;
|
|
470
|
+
export type MenuCyclusMenuCategoryDTO = EntityTypeDTO;
|
|
471
|
+
export type MenuCyclusMenuSetDTO = {
|
|
472
|
+
Description: string | null;
|
|
473
|
+
IsActive: number | null;
|
|
474
|
+
Key: string | null;
|
|
475
|
+
LastUpdate: string | null;
|
|
476
|
+
Name: string | null;
|
|
477
|
+
Sequence: number | null;
|
|
478
|
+
} & CosmosDocumentDTO;
|
|
479
|
+
export type MenuCyclusMenuSetsDTO = {
|
|
480
|
+
MenuSets: MenuCyclusMenuSetDTO[] | null;
|
|
481
|
+
} & CosmosDocumentDTO;
|
|
482
|
+
export type MenuCyclusStatusDTO = {
|
|
483
|
+
Statuses: EntityTypeDTO[] | null;
|
|
484
|
+
} & CosmosDocumentDTO;
|
|
485
|
+
export type MenuSettingDTO = {
|
|
486
|
+
AccountId: string | null;
|
|
487
|
+
Description: string | null;
|
|
488
|
+
IsActive: number | null;
|
|
489
|
+
Key: string | null;
|
|
490
|
+
LastUpdate: string | null;
|
|
491
|
+
MenuId: string | null;
|
|
492
|
+
Name: string | null;
|
|
493
|
+
Sequence: number | null;
|
|
494
|
+
} & CosmosDocumentDTO;
|
|
495
|
+
export type MenuSettingsDTO = {
|
|
496
|
+
AccountId: string | null;
|
|
497
|
+
MenuSettings: MenuSettingDTO[] | null;
|
|
498
|
+
} & CosmosDocumentDTO;
|
|
499
|
+
export type MenuSettingsGroupDTO = {
|
|
500
|
+
Settings: MenuSettingDTO[] | null;
|
|
501
|
+
} & CosmosDocumentDTO;
|
|
502
|
+
export type MessageTypesDTO = {
|
|
503
|
+
MessageTypes: EntityTypeDTO[] | null;
|
|
504
|
+
} & CosmosDocumentDTO;
|
|
505
|
+
export type NoteGroupTypesDTO = {
|
|
506
|
+
GroupTypes: EntityTypeDTO[] | null;
|
|
507
|
+
} & CosmosDocumentDTO;
|
|
508
|
+
export type NoteTypesDTO = {
|
|
509
|
+
NoteTypes: EntityTypeDTO[] | null;
|
|
510
|
+
} & CosmosDocumentDTO;
|
|
511
|
+
export type NutritionDefinitionDTO = {
|
|
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;
|
|
522
|
+
Sequence: number | null;
|
|
523
|
+
Unit: string | null;
|
|
524
|
+
} & CosmosDocumentDTO;
|
|
525
|
+
export type NutritionDefinitionsDTO = {
|
|
526
|
+
NutritionDefinitions: NutritionDefinitionDTO[] | null;
|
|
527
|
+
} & CosmosDocumentDTO;
|
|
528
|
+
export type OrderDiscountTypesDTO = {
|
|
529
|
+
DiscountTypes: EntityTypeDTO[] | null;
|
|
530
|
+
} & CosmosDocumentDTO;
|
|
531
|
+
export type OrderIndicatorsDTO = {
|
|
532
|
+
Indicators: EntityTypeDTO[] | null;
|
|
533
|
+
} & CosmosDocumentDTO;
|
|
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;
|
|
580
|
+
} & CosmosDocumentDTO;
|
|
581
|
+
export type PayableVatsDTO = {
|
|
582
|
+
VatCodes: EntityTypeDTO[] | null;
|
|
583
|
+
} & CosmosDocumentDTO;
|
|
584
|
+
export type PaymentDiscountsDTO = {
|
|
585
|
+
PaymentDiscounts: EntityTypeDTO[] | null;
|
|
586
|
+
} & CosmosDocumentDTO;
|
|
587
|
+
export type PaymentMethodsDTO = {
|
|
588
|
+
PaymentMethods: EntityTypeDTO[] | null;
|
|
589
|
+
} & CosmosDocumentDTO;
|
|
590
|
+
export type PaymentStatusesDTO = {
|
|
591
|
+
Statuses: EntityTypeDTO[] | null;
|
|
592
|
+
} & CosmosDocumentDTO;
|
|
593
|
+
export type PhoneTypesDTO = {
|
|
594
|
+
PhoneTypes: EntityTypeDTO[] | null;
|
|
595
|
+
} & CosmosDocumentDTO;
|
|
596
|
+
export type PosEmployeeButtonStatusDTO = {
|
|
597
|
+
Statuses: EntityTypeDTO[] | null;
|
|
598
|
+
} & CosmosDocumentDTO;
|
|
599
|
+
export type ProductCategoriesDTO = {
|
|
600
|
+
Categories: EntityTypeDTO[] | null;
|
|
601
|
+
} & CosmosDocumentDTO;
|
|
602
|
+
export type ProductContentTypesDTO = {
|
|
603
|
+
ContentTypes: EntityTypeDTO[] | null;
|
|
604
|
+
} & CosmosDocumentDTO;
|
|
605
|
+
export type ProductDeliveryDayTourTypesDTO = {
|
|
606
|
+
DeliveryDayTourTypes: EntityTypeDTO[] | null;
|
|
607
|
+
} & CosmosDocumentDTO;
|
|
608
|
+
export type ProductDetailsDTO = {
|
|
609
|
+
AccountId: string | null;
|
|
610
|
+
BarcodeType: string | null;
|
|
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;
|
|
673
|
+
Name: string | null;
|
|
674
|
+
NutritionInfo: string | null;
|
|
675
|
+
Qty: number | null;
|
|
676
|
+
ReferenceProductKey: string | null;
|
|
677
|
+
ServiceProductCode: string | null;
|
|
678
|
+
ShowStatus: number | null;
|
|
679
|
+
Sort: string | null;
|
|
680
|
+
SortDescription: string | null;
|
|
681
|
+
SortIsActive: number | null;
|
|
682
|
+
SortIsSystem: number | null;
|
|
683
|
+
SortKey: string | null;
|
|
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;
|
|
698
|
+
} & CosmosDocumentDTO;
|
|
699
|
+
export type ProductDTO = {
|
|
700
|
+
AccountId: string | null;
|
|
701
|
+
BrandName: string | null;
|
|
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;
|
|
724
|
+
} & CosmosDocumentDTO;
|
|
725
|
+
export type ProductFinancialVatGroupsDTO = {
|
|
726
|
+
VatGroups: EntityTypeDTO[] | null;
|
|
727
|
+
} & CosmosDocumentDTO;
|
|
728
|
+
export type ProductGeneratorGroup1DTO = {
|
|
729
|
+
Group1Items: EntityTypeDTO[] | null;
|
|
730
|
+
} & CosmosDocumentDTO;
|
|
731
|
+
export type ProductGeneratorGroup2DTO = {
|
|
732
|
+
Group2Items: EntityTypeDTO[] | null;
|
|
733
|
+
} & CosmosDocumentDTO;
|
|
734
|
+
export type ProductGeneratorGroup3DTO = {
|
|
735
|
+
Group3Items: EntityTypeDTO[] | null;
|
|
736
|
+
} & CosmosDocumentDTO;
|
|
737
|
+
export type ProductGeneratorGroup4DTO = {
|
|
738
|
+
Group4Items: EntityTypeDTO[] | null;
|
|
739
|
+
} & CosmosDocumentDTO;
|
|
740
|
+
export type ProductionBonusDTO = {
|
|
741
|
+
Amount: number | null;
|
|
742
|
+
BonusType: string | null;
|
|
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;
|
|
751
|
+
} & CosmosDocumentDTO;
|
|
752
|
+
export type ProductionCalculationsDTO = {
|
|
753
|
+
Calculations: EntityTypeDTO[] | null;
|
|
754
|
+
} & CosmosDocumentDTO;
|
|
755
|
+
export type ProductionCostsDTO = {
|
|
756
|
+
Costs: EntityTypeDTO[] | null;
|
|
757
|
+
} & CosmosDocumentDTO;
|
|
758
|
+
export type ProductionDiscountsDTO = {
|
|
759
|
+
Discounts: EntityTypeDTO[] | null;
|
|
760
|
+
} & CosmosDocumentDTO;
|
|
761
|
+
export type ProductionGroupDTO = {
|
|
762
|
+
Description: string | null;
|
|
763
|
+
GroupCode: string | null;
|
|
764
|
+
IsActive: number | null;
|
|
765
|
+
Key: string | null;
|
|
766
|
+
LastUpdate: string | null;
|
|
767
|
+
Name: string | null;
|
|
768
|
+
Sequence: number | null;
|
|
769
|
+
} & CosmosDocumentDTO;
|
|
770
|
+
export type ProductionLinesDTO = {
|
|
771
|
+
Lines: EntityTypeDTO[] | null;
|
|
772
|
+
} & CosmosDocumentDTO;
|
|
773
|
+
export type ProductionLocationItemDTO = {
|
|
774
|
+
Account: string | null;
|
|
775
|
+
Description: string | null;
|
|
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;
|
|
797
|
+
} & CosmosDocumentDTO;
|
|
798
|
+
export type ProductionOrderStatusDTO = {
|
|
799
|
+
Statuses: EntityTypeDTO[] | null;
|
|
800
|
+
} & CosmosDocumentDTO;
|
|
801
|
+
export type ProductionsDTO = {
|
|
802
|
+
Productions: EntityTypeDTO[] | null;
|
|
803
|
+
} & CosmosDocumentDTO;
|
|
804
|
+
export type ProductionShiftsDTO = {
|
|
805
|
+
Shifts: EntityTypeDTO[] | null;
|
|
806
|
+
} & CosmosDocumentDTO;
|
|
807
|
+
export type ProductionTransportsDTO = {
|
|
808
|
+
Transports: EntityTypeDTO[] | null;
|
|
809
|
+
} & CosmosDocumentDTO;
|
|
810
|
+
export type ProductSeasonsDTO = {
|
|
811
|
+
Seasons: EntityTypeDTO[] | null;
|
|
812
|
+
} & CosmosDocumentDTO;
|
|
813
|
+
export type ProductSortsDTO = {
|
|
814
|
+
Sorts: EntityTypeDTO[] | null;
|
|
815
|
+
} & CosmosDocumentDTO;
|
|
816
|
+
export type ProductStatusDTO = {
|
|
817
|
+
Statuses: EntityTypeDTO[] | null;
|
|
818
|
+
} & CosmosDocumentDTO;
|
|
819
|
+
export type ProductTagsDTO = {
|
|
820
|
+
Tags: EntityTypeDTO[] | null;
|
|
821
|
+
} & CosmosDocumentDTO;
|
|
822
|
+
export type PublicationsDTO = {
|
|
823
|
+
Publications: EntityTypeDTO[] | null;
|
|
824
|
+
} & CosmosDocumentDTO;
|
|
825
|
+
export type PurchaseDiscountsDTO = {
|
|
826
|
+
Discounts: EntityTypeDTO[] | null;
|
|
827
|
+
} & CosmosDocumentDTO;
|
|
828
|
+
export type PurchaseBonusDTO = {
|
|
829
|
+
Amount: number | null;
|
|
830
|
+
BonusType: string | null;
|
|
831
|
+
Description: string | null;
|
|
832
|
+
EndDate: string | null;
|
|
833
|
+
IsActive: number | null;
|
|
834
|
+
Key: string | null;
|
|
835
|
+
LastUpdate: string | null;
|
|
836
|
+
Name: string | null;
|
|
837
|
+
SalesTarget: number | null;
|
|
838
|
+
StartDate: string | null;
|
|
839
|
+
} & CosmosDocumentDTO;
|
|
840
|
+
export type PurchaseCostsDTO = {
|
|
841
|
+
Costs: EntityTypeDTO[] | null;
|
|
842
|
+
} & CosmosDocumentDTO;
|
|
843
|
+
export type PurchaseOrderStatusDTO = {
|
|
844
|
+
Statuses: EntityTypeDTO[] | null;
|
|
845
|
+
} & CosmosDocumentDTO;
|
|
846
|
+
export type PurchaseOrderTermsOfDeliveryDTO = {
|
|
847
|
+
TermsOfDelivery: EntityTypeDTO[] | null;
|
|
848
|
+
} & CosmosDocumentDTO;
|
|
849
|
+
export type PurchaseTransportsDTO = {
|
|
850
|
+
Transports: EntityTypeDTO[] | null;
|
|
851
|
+
} & CosmosDocumentDTO;
|
|
852
|
+
export type PurchasesDTO = {
|
|
853
|
+
Purchases: EntityTypeDTO[] | null;
|
|
854
|
+
} & CosmosDocumentDTO;
|
|
855
|
+
export type RayonsDTO = {
|
|
856
|
+
Rayons: EntityTypeDTO[] | null;
|
|
857
|
+
} & CosmosDocumentDTO;
|
|
858
|
+
export type RelCertificateDTO = {
|
|
859
|
+
Certificate: string | null;
|
|
860
|
+
CertificateType: string | null;
|
|
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;
|
|
878
|
+
} & CosmosDocumentDTO;
|
|
879
|
+
export type RelEdiDTO = {
|
|
880
|
+
Company: string | null;
|
|
881
|
+
Country: string | null;
|
|
882
|
+
Description: string | null;
|
|
883
|
+
Gln: string | null;
|
|
884
|
+
IsActive: number | null;
|
|
885
|
+
IsSystem: number | null;
|
|
886
|
+
Key: string | null;
|
|
887
|
+
LastUpdate: string | null;
|
|
888
|
+
MessageType: string | null;
|
|
889
|
+
Name: string | null;
|
|
890
|
+
Sequence: number | null;
|
|
891
|
+
ShowStatus: number | null;
|
|
892
|
+
} & CosmosDocumentDTO;
|
|
893
|
+
export type RelGraiDTO = {
|
|
894
|
+
Company: string | null;
|
|
895
|
+
Description: string | null;
|
|
896
|
+
Grai: string | null;
|
|
897
|
+
IsActive: number | null;
|
|
898
|
+
IsSystem: number | null;
|
|
899
|
+
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
|
+
Description: string | null;
|
|
934
|
+
Dunning: string | null;
|
|
935
|
+
DunningDescription: string | null;
|
|
936
|
+
DunningIsActive: number | null;
|
|
937
|
+
DunningIsSystem: number | null;
|
|
938
|
+
DunningKey: string | null;
|
|
939
|
+
DunningLastUpdate: string | null;
|
|
940
|
+
DunningName: string | null;
|
|
941
|
+
DunningSequence: number | null;
|
|
942
|
+
DunningShowStatus: number | null;
|
|
943
|
+
ExternalAccountId: string | null;
|
|
944
|
+
FollowUpProfile: string | null;
|
|
945
|
+
FollowUpProfileDescription: string | null;
|
|
946
|
+
FollowUpProfileIsActive: number | null;
|
|
947
|
+
FollowUpProfileIsSystem: number | null;
|
|
948
|
+
FollowUpProfileKey: string | null;
|
|
949
|
+
FollowUpProfileLastUpdate: string | null;
|
|
950
|
+
FollowUpProfileName: string | null;
|
|
951
|
+
FollowUpProfileSequence: number | null;
|
|
952
|
+
FollowUpProfileShowStatus: number | null;
|
|
953
|
+
IsActive: number | null;
|
|
954
|
+
IsSystem: number | null;
|
|
955
|
+
Key: string | null;
|
|
956
|
+
LastUpdate: string | null;
|
|
957
|
+
Name: string | null;
|
|
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 = {
|
|
1050
|
+
AccountId: string | null;
|
|
1051
|
+
Code: string | null;
|
|
1052
|
+
Description: string | null;
|
|
1053
|
+
IsActive: number | null;
|
|
1054
|
+
IsPublished: number | null;
|
|
1055
|
+
Key: string | null;
|
|
1056
|
+
LastUpdate: string | null;
|
|
1057
|
+
Name: string | null;
|
|
1058
|
+
ReportType: string | null;
|
|
1059
|
+
Sequence: number | null;
|
|
1060
|
+
ShowStatus: number | null;
|
|
1061
|
+
Url: string | null;
|
|
1062
|
+
} & CosmosDocumentDTO;
|
|
1063
|
+
export type ReportsDTO = {
|
|
1064
|
+
Reports: ReportEntryDTO[] | null;
|
|
1065
|
+
} & CosmosDocumentDTO;
|
|
1066
|
+
export type ReportTypesDTO = {
|
|
1067
|
+
ReportTypes: EntityTypeDTO[] | null;
|
|
1068
|
+
} & CosmosDocumentDTO;
|
|
1069
|
+
export type ResidentStatusDTO = {
|
|
1070
|
+
Statuses: EntityTypeDTO[] | null;
|
|
1071
|
+
} & CosmosDocumentDTO;
|
|
1072
|
+
export type RfidProductionLocationsDTO = {
|
|
1073
|
+
Locations: EntityTypeDTO[] | null;
|
|
1074
|
+
} & CosmosDocumentDTO;
|
|
1075
|
+
export type SalesChannelsDTO = {
|
|
1076
|
+
Channels: EntityTypeDTO[] | null;
|
|
1077
|
+
} & CosmosDocumentDTO;
|
|
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;
|
|
1110
|
+
} & CosmosDocumentDTO;
|
|
1111
|
+
export type ShipmentMethodsDTO = {
|
|
1112
|
+
ShipmentMethods: EntityTypeDTO[] | null;
|
|
1113
|
+
} & CosmosDocumentDTO;
|
|
1114
|
+
export type ShipmentStatusDTO = {
|
|
1115
|
+
Statuses: EntityTypeDTO[] | null;
|
|
1116
|
+
} & CosmosDocumentDTO;
|
|
1117
|
+
export type SocialMediaTypesDTO = {
|
|
1118
|
+
SocialMediaTypes: EntityTypeDTO[] | null;
|
|
1119
|
+
} & CosmosDocumentDTO;
|
|
1120
|
+
export type StockDTO = {
|
|
1121
|
+
Stock: EntityTypeDTO[] | null;
|
|
1122
|
+
} & CosmosDocumentDTO;
|
|
1123
|
+
export type StockInvoicesDTO = {
|
|
1124
|
+
Invoices: EntityTypeDTO[] | null;
|
|
1125
|
+
} & CosmosDocumentDTO;
|
|
1126
|
+
export type StockLocationWrapperDTO = {
|
|
1127
|
+
Description: string | null;
|
|
1128
|
+
GroupKey: string | null;
|
|
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;
|
|
1148
|
+
} & CosmosDocumentDTO;
|
|
1149
|
+
export type StockLocationsDTO = {
|
|
1150
|
+
Locations: StockLocationWrapperDTO[] | null;
|
|
1151
|
+
} & CosmosDocumentDTO;
|
|
1152
|
+
export type StockWarehousesDTO = {
|
|
1153
|
+
Warehouses: EntityTypeDTO[] | null;
|
|
1154
|
+
} & CosmosDocumentDTO;
|
|
1155
|
+
export type TatlotDTO = {
|
|
1156
|
+
Account: string | null;
|
|
1157
|
+
AccountKey: string | null;
|
|
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;
|
|
1239
|
+
} & CosmosDocumentDTO;
|
|
1240
|
+
export type TatlotEventsDTO = {
|
|
1241
|
+
Events: EntityTypeDTO[] | null;
|
|
1242
|
+
} & CosmosDocumentDTO;
|
|
1243
|
+
export type ToPayTheBillsDTO = {
|
|
1244
|
+
Items: EntityTypeDTO[] | null;
|
|
1245
|
+
} & CosmosDocumentDTO;
|
|
1246
|
+
export type TransportToursDTO = {
|
|
1247
|
+
TransportTours: EntityTypeDTO[] | null;
|
|
1248
|
+
} & CosmosDocumentDTO;
|
|
1249
|
+
export type WarehouseAccountDTO = {
|
|
1250
|
+
Account: string | null;
|
|
1251
|
+
Warehouse: string | null;
|
|
1252
|
+
} & CosmosDocumentDTO;
|
|
1253
|
+
export type WarehouseStockLocationDTO = {
|
|
1254
|
+
Description: string | null;
|
|
1255
|
+
GroupKey: string | null;
|
|
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;
|
|
1275
|
+
} & CosmosDocumentDTO;
|
|
1276
|
+
export type WarehouseStockLocationsDTO = {
|
|
1277
|
+
Locations: WarehouseStockLocationDTO[] | null;
|
|
1278
|
+
} & CosmosDocumentDTO;
|
|
1279
|
+
export type WarehousesDTO = {
|
|
1280
|
+
Warehouses: EntityTypeDTO[] | null;
|
|
1281
|
+
} & CosmosDocumentDTO;
|
|
1282
|
+
export type VehiclesDTO = {
|
|
1283
|
+
Vehicles: VehicleDTO[];
|
|
1284
|
+
} & CosmosDocumentDTO;
|
|
13
1285
|
//# sourceMappingURL=master-data.d.ts.map
|