@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.
@@ -1,1285 +1,864 @@
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;
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 AccountCertificateDTO = {
10
- Account: string | null;
11
- Certificate: string | null;
13
+ export type WarehousesDTO = {
14
+ Warehouses: EntityTypeDTO[] | null;
12
15
  } & CosmosDocumentDTO;
13
- export type AccountDaysDTO = {
14
- AccountId: string | null;
15
- Days: EntityTypeDTO[] | null;
16
+ export type ProductFinancialVatGroupsDTO = {
17
+ ProductFinancialVatGroups: EntityTypeDTO[] | null;
16
18
  } & CosmosDocumentDTO;
17
- export type AccountDeliveryDaysDTO = {
18
- Account: string | null;
19
- DeliveryDayTourTypes: EntityTypeDTO[] | null;
19
+ export type SalesDTO = {
20
+ Sales: EntityTypeDTO[] | null;
20
21
  } & CosmosDocumentDTO;
21
- export type AccountInvoicesDTO = {
22
- AccountId: string | null;
23
- Invoices: EntityTypeDTO[] | null;
22
+ export type SalesBonusDTO = {
23
+ SalesBonus: EntityTypeDTO[] | null;
24
24
  } & CosmosDocumentDTO;
25
- export type AdminNumberTypesDTO = {
26
- AdminNumberTypes: EntityTypeDTO[] | null;
25
+ export type SalesDiscountsDTO = {
26
+ SalesDiscounts: EntityTypeDTO[] | null;
27
27
  } & CosmosDocumentDTO;
28
- export type AlbaDTO = EntityTypeDTO;
29
- export type AlbaGroupsDTO = {
30
- AlbaGroups: EntityTypeDTO[] | null;
28
+ export type SalesCostsDTO = {
29
+ SalesCosts: EntityTypeDTO[] | null;
31
30
  } & CosmosDocumentDTO;
32
- export type BarcodeTypesDTO = {
33
- BarcodeTypes: EntityTypeDTO[] | null;
31
+ export type SalesTransportsDTO = {
32
+ SalesTransports: EntityTypeDTO[] | null;
34
33
  } & CosmosDocumentDTO;
35
- export type BookTypesDTO = {
36
- AccountId: string | null;
37
- BookTypes: EntityTypeDTO[] | null;
34
+ export type PurchasesDTO = {
35
+ Purchases: EntityTypeDTO[] | null;
38
36
  } & CosmosDocumentDTO;
39
- export type BranchesDTO = {
40
- Branches: EntityTypeDTO[] | null;
37
+ export type PurchaseDiscountsDTO = {
38
+ PurchaseDiscounts: EntityTypeDTO[] | null;
41
39
  } & CosmosDocumentDTO;
42
- export type CalculationNumbersDTO = {
43
- CalculationNumbers: EntityTypeDTO[] | null;
40
+ export type PurchaseBonusDTO = {
41
+ PurchaseBonus: EntityTypeDTO[] | null;
44
42
  } & CosmosDocumentDTO;
45
- export type CategoriesDTO = {
46
- Categories: EntityTypeDTO[] | null;
43
+ export type PurchaseCostsDTO = {
44
+ PurchaseCosts: EntityTypeDTO[] | null;
47
45
  } & CosmosDocumentDTO;
48
- export type ClaimInvoicesDTO = {
49
- AccountId: string | null;
50
- ClaimInvoices: EntityTypeDTO[] | null;
46
+ export type PurchaseTransportsDTO = {
47
+ PurchaseTransports: EntityTypeDTO[] | null;
51
48
  } & CosmosDocumentDTO;
52
- export type CompanyAddressTypesDTO = {
53
- AddressTypes: EntityTypeDTO[] | null;
49
+ export type ProductionsDTO = {
50
+ Productions: EntityTypeDTO[] | null;
54
51
  } & CosmosDocumentDTO;
55
- export type CompanyBranchesDTO = {
56
- Branches: EntityTypeDTO[] | null;
52
+ export type ProductionDiscountsDTO = {
53
+ ProductionDiscounts: EntityTypeDTO[] | null;
57
54
  } & CosmosDocumentDTO;
58
- export type CompanyCategoriesDTO = {
59
- Categories: EntityTypeDTO[] | null;
55
+ export type ProductionBonusDTO = {
56
+ ProductionBonus: EntityTypeDTO[] | null;
60
57
  } & CosmosDocumentDTO;
61
- export type CompanyCertificatesDTO = {
62
- Certificates: EntityTypeDTO[] | null;
58
+ export type ProductionCostsDTO = {
59
+ ProductionCosts: EntityTypeDTO[] | null;
63
60
  } & CosmosDocumentDTO;
64
- export type CompanyFunctionTypesDTO = {
65
- FunctionTypes: EntityTypeDTO[] | null;
61
+ export type ProductionTransportsDTO = {
62
+ ProductionTransports: EntityTypeDTO[] | null;
66
63
  } & CosmosDocumentDTO;
67
- export type ContactPersonFunctionsDTO = {
68
- Functions: EntityTypeDTO[] | null;
64
+ export type StockWarehousesDTO = {
65
+ StockWarehouses: EntityTypeDTO[] | null;
69
66
  } & CosmosDocumentDTO;
70
- export type CountriesDTO = {
71
- AccountId: string | null;
72
- Countries: CountryDTO[];
67
+ export type StockDTO = {
68
+ Stock: EntityTypeDTO[] | null;
73
69
  } & CosmosDocumentDTO;
74
- export type CostingGroupsDTO = {
75
- CostingGroups: EntityTypeDTO[] | null;
70
+ export type ProductDTO = {
71
+ Product: EntityTypeDTO[] | null;
76
72
  } & CosmosDocumentDTO;
77
- export type CostingTypesDTO = {
78
- CostingTypes: EntityTypeDTO[] | null;
73
+ export type CompanyBranchesDTO = {
74
+ CompanyBranches: EntityTypeDTO[] | null;
79
75
  } & CosmosDocumentDTO;
80
- export type CurrenciesDTO = {
81
- AccountId: string | null;
82
- Currencies: EntityTypeDTO[] | null;
76
+ export type CompanyCategoriesDTO = {
77
+ CompanyCategories: EntityTypeDTO[] | null;
83
78
  } & CosmosDocumentDTO;
84
- export type DeliveryDaysDTO = {
85
- DeliveryDays: EntityTypeDTO[] | null;
79
+ export type GroupsDTO = {
80
+ Groups: EntityTypeDTO[] | null;
86
81
  } & 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;
82
+ export type ProductBranchesDTO = {
83
+ ProductBranches: EntityTypeDTO[] | null;
97
84
  } & CosmosDocumentDTO;
98
- export type DiscountsDTO = {
99
- AccountId: string | null;
100
- Discounts: DiscountDTO[] | null;
85
+ export type ProductCalculationTypesDTO = {
86
+ ProductCalculationTypes: EntityTypeDTO[] | null;
101
87
  } & CosmosDocumentDTO;
102
- export type DiscountTypesDTO = {
103
- DiscountTypes: EntityTypeDTO[] | null;
88
+ export type ProductCalculationGroupsDTO = {
89
+ ProductCalculationGroups: EntityTypeDTO[] | null;
104
90
  } & CosmosDocumentDTO;
105
- export type DotEventsDTO = {
106
- Events: EntityTypeDTO[] | null;
91
+ export type ProductSortsDTO = {
92
+ ProductSorts: EntityTypeDTO[] | null;
107
93
  } & CosmosDocumentDTO;
108
- export type DotStatusDTO = {
109
- AccountId: string | null;
110
- DotStatus: EntityTypeDTO[] | null;
94
+ export type FinancialAccountsDTO = {
95
+ FinancialAccounts: EntityTypeDTO[] | null;
111
96
  } & CosmosDocumentDTO;
112
- export type DotStatusesDTO = {
113
- DotStatuses: EntityTypeDTO[] | null;
97
+ export type ProductTagsDTO = {
98
+ ProductTags: EntityTypeDTO[] | null;
114
99
  } & CosmosDocumentDTO;
115
- export type DotTypesDTO = {
116
- DotTypes: EntityTypeDTO[] | null;
100
+ export type OrderDiscountTypesDTO = {
101
+ OrderDiscountTypes: EntityTypeDTO[] | null;
117
102
  } & 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;
103
+ export type LanguagesDTO = {
104
+ Languages: EntityTypeDTO[] | null;
124
105
  } & CosmosDocumentDTO;
125
- export type EdiCountryDTO = {
126
- CountryCode: string | null;
127
- Gln: string | null;
106
+ export type CategoriesDTO = {
107
+ Categories: EntityTypeDTO[] | null;
128
108
  } & 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;
109
+ export type ContactPersonFunctionsDTO = {
110
+ ContactPersonFunctions: EntityTypeDTO[] | null;
135
111
  } & CosmosDocumentDTO;
136
- export type EdiGlnProfileMessageTypesDTO = {
137
- AccountId: string | null;
138
- MessageTypes: EntityTypeDTO[] | null;
112
+ export type FunctionTypesDTO = {
113
+ FunctionTypes: EntityTypeDTO[] | null;
139
114
  } & CosmosDocumentDTO;
140
- export type EdiGlnProfilesDTO = {
115
+ export type BookTypesDTO = {
141
116
  AccountId: string | null;
142
- Profiles: EdiGlnProfileDTO[] | null;
117
+ BookTypes: EntityTypeDTO[] | null;
143
118
  } & CosmosDocumentDTO;
144
- export type EdiItemDTO = {
119
+ export type ClaimInvoicesDTO = {
145
120
  AccountId: string | null;
146
- Description: string | null;
147
- IsActive: number | null;
148
- ItemCode: string | null;
121
+ ClaimInvoices: EntityTypeDTO[] | null;
149
122
  } & CosmosDocumentDTO;
150
- export type EdiMessageTypeDTO = {
123
+ export type CompanyFunctionTypesDTO = {
151
124
  AccountId: string | null;
152
- Description: string | null;
153
- EdiType: string | null;
154
- IsActive: number | null;
155
- Name: string | null;
125
+ CompanyFunctionTypes: EntityTypeDTO[] | null;
156
126
  } & CosmosDocumentDTO;
157
- export type EdiMessageTypesDTO = {
158
- MessageTypes: EntityTypeDTO[] | null;
127
+ export type GendersDTO = {
128
+ Genders: EntityTypeDTO[] | null;
159
129
  } & CosmosDocumentDTO;
160
- export type EdiStatusesDTO = {
161
- Statuses: EntityTypeDTO[] | null;
130
+ export type NoteTypesDTO = {
131
+ NoteTypes: EntityTypeDTO[] | null;
162
132
  } & CosmosDocumentDTO;
163
- export type FinancialAccountDTO = {
164
- Account: string | null;
165
- AccountNumber: string | null;
133
+ export type MessageTypesDTO = {
134
+ MessageTypes: EntityTypeDTO[] | null;
166
135
  } & CosmosDocumentDTO;
167
- export type FinancialAccountsDTO = {
168
- Accounts: FinancialAccountDTO[] | null;
136
+ export type MenuSettingsDTO = {
137
+ CompanyId: string | null;
138
+ SubEntity: string | null;
139
+ Settings: MenuSettingsGroupDTO[] | null;
169
140
  } & CosmosDocumentDTO;
170
- export type FinancialJournalTypesDTO = {
171
- JournalTypes: EntityTypeDTO[] | null;
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 FinancialLedgersDTO = {
174
- Ledgers: EntityTypeDTO[] | null;
159
+ export type SalutationsDTO = {
160
+ Salutations: EntityTypeDTO[] | null;
175
161
  } & CosmosDocumentDTO;
176
- export type FinancialVatDTO = {
177
- VatCodes: EntityTypeDTO[] | null;
162
+ export type CountriesDTO = {
163
+ Countries: CountryDTO[] | null;
178
164
  } & CosmosDocumentDTO;
179
- export type FoodCertificateTypesDTO = {
180
- CertificateTypes: EntityTypeDTO[] | null;
165
+ export type AccountManagerTypesDTO = {
166
+ AccountManagerTypes: EntityTypeDTO[] | null;
181
167
  } & CosmosDocumentDTO;
182
- export type FunctionTypesDTO = {
183
- FunctionTypes: EntityTypeDTO[] | null;
168
+ export type AdminNumberTypesDTO = {
169
+ AdminNumberTypes: EntityTypeDTO[] | null;
184
170
  } & 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;
171
+ export type CompanyAddressTypesDTO = {
172
+ CompanyAddressTypes: EntityTypeDTO[] | null;
195
173
  } & CosmosDocumentDTO;
196
- export type GendersDTO = {
197
- Genders: EntityTypeDTO[] | null;
174
+ export type FoodCertificateTypesDTO = {
175
+ FoodCertificateTypes: EntityTypeDTO[] | null;
198
176
  } & CosmosDocumentDTO;
199
- export type GlnProfileDTO = {
200
- CompanyName: string | null;
201
- Gln: string | null;
177
+ export type PhoneTypesDTO = {
178
+ PhoneTypes: EntityTypeDTO[] | null;
202
179
  } & 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;
180
+ export type PosEmployeeButtonStatusDTO = {
181
+ PosEmployeeButtonStatus: EntityTypeDTO[] | null;
262
182
  } & CosmosDocumentDTO;
263
- export type GraiForUsesDTO = {
264
- ForUses: EntityTypeDTO[] | null;
183
+ export type SocialMediaTypesDTO = {
184
+ SocialMediaTypes: EntityTypeDTO[] | null;
265
185
  } & CosmosDocumentDTO;
266
- export type GraiGroupTypesDTO = {
267
- GroupTypes: EntityTypeDTO[] | null;
186
+ export type ReportTypesDTO = {
187
+ ReportTypes: EntityTypeDTO[] | null;
268
188
  } & CosmosDocumentDTO;
269
- export type GraiPublicationsDTO = {
270
- Publications: EntityTypeDTO[] | null;
189
+ export type ReportsDTO = {
190
+ Reports: ReportEntryDTO[] | null;
271
191
  } & CosmosDocumentDTO;
272
- export type GraiWeightDTO = {
273
- Weight: string | null;
274
- WeightUnit: string | null;
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 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;
200
+ export type DiscountsDTO = {
201
+ Discounts: DiscountDTO[] | null;
287
202
  } & 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;
203
+ export type DiscountDTO = {
204
+ DiscountType: EntityTypeDTO | null;
205
+ Percentage: number;
294
206
  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;
207
+ Notes: string | null;
208
+ ShowStatus: number;
209
+ };
332
210
  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;
211
+ AccountId: string | null;
212
+ Icps: EntityTypeDTO[] | null;
341
213
  } & CosmosDocumentDTO;
342
214
  export type IcpTransactionsDTO = {
343
- Transactions: EntityTypeDTO[] | null;
215
+ AccountId: string | null;
216
+ IcpTransactions: EntityTypeDTO[] | null;
344
217
  } & 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;
218
+ export type InvoiceCodesDTO = {
219
+ AccountId: string | null;
220
+ InvoiceCodes: EntityTypeDTO[] | null;
356
221
  } & CosmosDocumentDTO;
357
- export type IngredientGroupsDTO = {
358
- IngredientGroups: IngredientGroupDTO[] | null;
222
+ export type InvoiceGraiCodesDTO = {
223
+ AccountId: string | null;
224
+ InvoiceGraiCodes: EntityTypeDTO[] | null;
359
225
  } & CosmosDocumentDTO;
360
- export type IngredientTypesDTO = {
361
- IngredientTypes: EntityTypeDTO[] | null;
226
+ export type AccountInvoicesDTO = {
227
+ AccountId: string | null;
228
+ AccountInvoices: EntityTypeDTO[] | null;
362
229
  } & 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;
230
+ export type ToPayTheBillsDTO = {
231
+ AccountId: string | null;
232
+ ToPayTheBills: EntityTypeDTO[] | null;
372
233
  } & 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;
234
+ export type PayableVatsDTO = {
235
+ AccountId: string | null;
236
+ PayableVats: EntityTypeDTO[] | null;
382
237
  } & 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;
238
+ export type MasterDTO = {
239
+ AccountId: string | null;
240
+ Master: EntityTypeDTO[] | null;
392
241
  } & CosmosDocumentDTO;
393
- export type IntrastatDeliveryConditionsDTO = {
394
- DeliveryConditions: EntityTypeDTO[] | null;
242
+ export type PaymentDiscountsDTO = {
243
+ AccountId: string | null;
244
+ PaymentDiscounts: EntityTypeDTO[] | null;
395
245
  } & CosmosDocumentDTO;
396
- export type IntrastatDestinationCountriesDTO = {
397
- DestinationCountries: EntityTypeDTO[] | null;
246
+ export type InvoiceDiscountsDTO = {
247
+ AccountId: string | null;
248
+ InvoiceDiscounts: EntityTypeDTO[] | null;
398
249
  } & CosmosDocumentDTO;
399
- export type IntrastatLoadDTO = {
400
- IntrastatLoads: EntityTypeDTO[] | null;
250
+ export type StockInvoicesDTO = {
251
+ AccountId: string | null;
252
+ StockInvoices: EntityTypeDTO[] | null;
401
253
  } & CosmosDocumentDTO;
402
- export type IntrastatLoadingOptionsDTO = {
403
- LoadingOptions: EntityTypeDTO[] | null;
254
+ export type PalletLocationsDTO = {
255
+ AccountId: string | null;
256
+ PalletLocations: PalletLocationDTO[] | null;
404
257
  } & 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;
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 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;
274
+ export type TatlotEventsDTO = {
275
+ AccountId: string | null;
276
+ TatlotEvents: EntityTypeDTO[] | null;
424
277
  } & CosmosDocumentDTO;
425
- export type IntrastatSystemDTO = {
426
- IntrastatSystems: EntityTypeDTO[] | null;
278
+ export type ProductionCalculationsDTO = {
279
+ AccountId: string | null;
280
+ ProductionCalculations: EntityTypeDTO[] | null;
427
281
  } & CosmosDocumentDTO;
428
- export type IntrastatTransportDTO = {
429
- IntrastatTransport: EntityTypeDTO[] | null;
282
+ export type ProductionLinesDTO = {
283
+ AccountId: string | null;
284
+ ProductionLines: EntityTypeDTO[] | null;
430
285
  } & CosmosDocumentDTO;
431
- export type IntrastatTransTypeDTO = {
432
- IntrastatTransTypes: EntityTypeDTO[] | null;
286
+ export type ProductionShiftsDTO = {
287
+ AccountId: string | null;
288
+ ProductionShifts: EntityTypeDTO[] | null;
433
289
  } & CosmosDocumentDTO;
434
- export type InvoiceCodesDTO = {
435
- InvoiceCodes: EntityTypeDTO[] | null;
290
+ export type DotTypesDTO = {
291
+ AccountId: string | null;
292
+ DotTypes: EntityTypeDTO[] | null;
436
293
  } & CosmosDocumentDTO;
437
- export type InvoiceDiscountsDTO = {
294
+ export type DotStatusesDTO = {
438
295
  AccountId: string | null;
439
- DiscountGroups: EntityTypeDTO[] | null;
296
+ DotStatuses: EntityTypeDTO[] | null;
440
297
  } & CosmosDocumentDTO;
441
- export type InvoiceGraiCodesDTO = {
442
- InvoiceGraiCodes: EntityTypeDTO[] | null;
298
+ export type StockLocationsDTO = {
299
+ AccountId: string | null;
300
+ StockLocations: StockLocationWrapperDTO[] | null;
443
301
  } & CosmosDocumentDTO;
444
- export type InvoiceGroupsDTO = {
445
- InvoiceGroups: EntityTypeDTO[] | null;
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 LanguagesDTO = {
448
- Languages: EntityTypeDTO[] | null;
331
+ export type GroupDTO = {
332
+ AccountId: string | null;
333
+ Group: EntityTypeDTO[] | null;
449
334
  } & CosmosDocumentDTO;
450
- export type MasterDTO = {
451
- Master: EntityTypeDTO[] | null;
335
+ export type PalletLocationTypeDTO = {
336
+ AccountId: string | null;
337
+ PalletLocationType: EntityTypeDTO[] | null;
452
338
  } & 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;
339
+ export type ShippedCheckedDTO = {
340
+ AccountId: string | null;
341
+ ShippedChecked: EntityTypeDTO[] | null;
463
342
  } & CosmosDocumentDTO;
464
- export type MenuCyclusCategoryDTO = {
465
- Categories: EntityTypeDTO[] | null;
343
+ export type PackingTypesDTO = {
344
+ AccountId: string | null;
345
+ PackingTypes: EntityTypeDTO[] | null;
466
346
  } & CosmosDocumentDTO;
467
- export type MenuCyclusGroupsDTO = {
468
- Groups: EntityTypeDTO[] | null;
347
+ export type CostingTypesDTO = {
348
+ AccountId: string | null;
349
+ CostingTypes: EntityTypeDTO[] | null;
469
350
  } & 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;
351
+ export type DotEventsDTO = {
352
+ AccountId: string | null;
353
+ DotEvents: EntityTypeDTO[] | null;
478
354
  } & CosmosDocumentDTO;
479
- export type MenuCyclusMenuSetsDTO = {
480
- MenuSets: MenuCyclusMenuSetDTO[] | null;
355
+ export type ProductGeneratorGroup1DTO = {
356
+ AccountId: string | null;
357
+ ProductGeneratorGroup1: EntityTypeDTO[] | null;
481
358
  } & CosmosDocumentDTO;
482
- export type MenuCyclusStatusDTO = {
483
- Statuses: EntityTypeDTO[] | null;
359
+ export type ProductGeneratorGroup2DTO = {
360
+ AccountId: string | null;
361
+ ProductGeneratorGroup2: EntityTypeDTO[] | null;
484
362
  } & CosmosDocumentDTO;
485
- export type MenuSettingDTO = {
363
+ export type ProductGeneratorGroup3DTO = {
486
364
  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;
365
+ ProductGeneratorGroup3: EntityTypeDTO[] | null;
494
366
  } & CosmosDocumentDTO;
495
- export type MenuSettingsDTO = {
367
+ export type ProductGeneratorGroup4DTO = {
496
368
  AccountId: string | null;
497
- MenuSettings: MenuSettingDTO[] | null;
369
+ ProductGeneratorGroup4: EntityTypeDTO[] | null;
498
370
  } & CosmosDocumentDTO;
499
- export type MenuSettingsGroupDTO = {
500
- Settings: MenuSettingDTO[] | null;
371
+ export type ResidentStatusDTO = {
372
+ AccountId: string | null;
373
+ ResidentStatuses: EntityTypeDTO[] | null;
501
374
  } & CosmosDocumentDTO;
502
- export type MessageTypesDTO = {
503
- MessageTypes: EntityTypeDTO[] | null;
375
+ export type MenuCyclusGroupsDTO = {
376
+ AccountId: string | null;
377
+ MenuCyclusGroups: EntityTypeDTO[] | null;
504
378
  } & CosmosDocumentDTO;
505
- export type NoteGroupTypesDTO = {
506
- GroupTypes: EntityTypeDTO[] | null;
379
+ export type MenuCyclusStatusDTO = {
380
+ AccountId: string | null;
381
+ MenuCyclusStatus: EntityTypeDTO[] | null;
507
382
  } & CosmosDocumentDTO;
508
- export type NoteTypesDTO = {
509
- NoteTypes: EntityTypeDTO[] | null;
383
+ export type MenuCyclusCategoryDTO = {
384
+ AccountId: string | null;
385
+ MenuCyclusCategory: MenuCyclusMenuCategoryDTO[] | null;
510
386
  } & 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;
387
+ export type MenuCyclusMenuCategoryDTO = {
522
388
  Sequence: number | null;
523
- Unit: string | null;
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 NutritionDefinitionsDTO = {
526
- NutritionDefinitions: NutritionDefinitionDTO[] | null;
396
+ export type PurchaseOrderStatusDTO = {
397
+ AccountId: string | null;
398
+ PurchaseOrderStatus: EntityTypeDTO[] | null;
527
399
  } & CosmosDocumentDTO;
528
- export type OrderDiscountTypesDTO = {
529
- DiscountTypes: EntityTypeDTO[] | null;
400
+ export type ProductionOrderStatusDTO = {
401
+ AccountId: string | null;
402
+ ProductionOrderStatus: EntityTypeDTO[] | null;
530
403
  } & CosmosDocumentDTO;
531
404
  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;
405
+ AccountId: string | null;
406
+ OrderIndicators: EntityTypeDTO[] | null;
580
407
  } & CosmosDocumentDTO;
581
- export type PayableVatsDTO = {
582
- VatCodes: EntityTypeDTO[] | null;
408
+ export type FinancialAccountDTO = {
409
+ AccountId: string | null;
410
+ FinancialAccount: EntityTypeDTO[] | null;
583
411
  } & CosmosDocumentDTO;
584
- export type PaymentDiscountsDTO = {
585
- PaymentDiscounts: EntityTypeDTO[] | null;
412
+ export type FinancialVatDTO = {
413
+ AccountId: string | null;
414
+ FinancialVat: EntityTypeDTO[] | null;
586
415
  } & CosmosDocumentDTO;
587
- export type PaymentMethodsDTO = {
588
- PaymentMethods: EntityTypeDTO[] | null;
416
+ export type OrderIncoTermsDTO = {
417
+ AccountId: string | null;
418
+ OrderIncoTerms: EntityTypeDTO[] | null;
589
419
  } & CosmosDocumentDTO;
590
- export type PaymentStatusesDTO = {
591
- Statuses: EntityTypeDTO[] | null;
420
+ export type FinancialJournalTypesDTO = {
421
+ AccountId: string | null;
422
+ FinancialJournalTypes: EntityTypeDTO[] | null;
592
423
  } & CosmosDocumentDTO;
593
- export type PhoneTypesDTO = {
594
- PhoneTypes: EntityTypeDTO[] | null;
424
+ export type PurchaseOrderTermsOfDeliveryDTO = {
425
+ AccountId: string | null;
426
+ PurchaseOrderTermsOfDelivery: EntityTypeDTO[] | null;
595
427
  } & CosmosDocumentDTO;
596
- export type PosEmployeeButtonStatusDTO = {
597
- Statuses: EntityTypeDTO[] | null;
428
+ export type SalesOrderTermsOfDeliveryDTO = {
429
+ AccountId: string | null;
430
+ SalesOrderTermsOfDelivery: EntityTypeDTO[] | null;
598
431
  } & CosmosDocumentDTO;
599
- export type ProductCategoriesDTO = {
600
- Categories: EntityTypeDTO[] | null;
432
+ export type VehiclesDTO = {
433
+ AccountId: string | null;
434
+ Vehicles: VehicleDTO[] | null;
601
435
  } & CosmosDocumentDTO;
602
- export type ProductContentTypesDTO = {
603
- ContentTypes: EntityTypeDTO[] | null;
436
+ export type ProductionGroupDTO = {
437
+ AccountId: string | null;
438
+ Productions: EntityTypeDTO[] | null;
604
439
  } & CosmosDocumentDTO;
605
- export type ProductDeliveryDayTourTypesDTO = {
606
- DeliveryDayTourTypes: EntityTypeDTO[] | null;
440
+ export type GenericDTO = {
441
+ AccountId: string | null;
442
+ Items: EntityTypeDTO[] | null;
607
443
  } & CosmosDocumentDTO;
608
- export type ProductDetailsDTO = {
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
- 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;
456
+ AccountNumber: string | null;
673
457
  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;
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 ProductDTO = {
469
+ export type IntrastatActiveDTO = {
700
470
  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;
471
+ IntrastatActive: EntityTypeDTO[] | null;
724
472
  } & CosmosDocumentDTO;
725
- export type ProductFinancialVatGroupsDTO = {
726
- VatGroups: EntityTypeDTO[] | null;
473
+ export type IntrastatCountriesDTO = {
474
+ AccountId: string | null;
475
+ IntrastatCountries: EntityTypeDTO[] | null;
727
476
  } & CosmosDocumentDTO;
728
- export type ProductGeneratorGroup1DTO = {
729
- Group1Items: EntityTypeDTO[] | null;
477
+ export type IntrastatDelConditionsDTO = {
478
+ AccountId: string | null;
479
+ IntrastatDelConditions: EntityTypeDTO[] | null;
730
480
  } & CosmosDocumentDTO;
731
- export type ProductGeneratorGroup2DTO = {
732
- Group2Items: EntityTypeDTO[] | null;
481
+ export type IntrastatDestinationCountriesDTO = {
482
+ AccountId: string | null;
483
+ IntrastatDestinationCountries: EntityTypeDTO[] | null;
733
484
  } & CosmosDocumentDTO;
734
- export type ProductGeneratorGroup3DTO = {
735
- Group3Items: EntityTypeDTO[] | null;
485
+ export type IntrastatLoadDTO = {
486
+ AccountId: string | null;
487
+ IntrastatLoad: EntityTypeDTO[] | null;
736
488
  } & CosmosDocumentDTO;
737
- export type ProductGeneratorGroup4DTO = {
738
- Group4Items: EntityTypeDTO[] | null;
489
+ export type IntrastatRegionDTO = {
490
+ AccountId: string | null;
491
+ IntrastatRegion: EntityTypeDTO[] | null;
739
492
  } & 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;
493
+ export type IntrastatStatusDTO = {
494
+ AccountId: string | null;
495
+ IntrastatStatus: EntityTypeDTO[] | null;
751
496
  } & CosmosDocumentDTO;
752
- export type ProductionCalculationsDTO = {
753
- Calculations: EntityTypeDTO[] | null;
497
+ export type IntrastatSystemDTO = {
498
+ AccountId: string | null;
499
+ IntrastatSystem: EntityTypeDTO[] | null;
754
500
  } & CosmosDocumentDTO;
755
- export type ProductionCostsDTO = {
756
- Costs: EntityTypeDTO[] | null;
501
+ export type IntrastatTransportDTO = {
502
+ AccountId: string | null;
503
+ IntrastatTransport: EntityTypeDTO[] | null;
757
504
  } & CosmosDocumentDTO;
758
- export type ProductionDiscountsDTO = {
759
- Discounts: EntityTypeDTO[] | null;
505
+ export type IntrastatTransTypeDTO = {
506
+ AccountId: string | null;
507
+ IntrastatTransType: EntityTypeDTO[] | null;
760
508
  } & 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;
509
+ export type IntrastatDeliveryConditionsDTO = {
510
+ AccountId: string | null;
511
+ IntrastatDeliveryConditions: EntityTypeDTO[] | null;
769
512
  } & CosmosDocumentDTO;
770
- export type ProductionLinesDTO = {
771
- Lines: EntityTypeDTO[] | null;
513
+ export type IntrastatLoadingOptionsDTO = {
514
+ AccountId: string | null;
515
+ IntrastatLoadingOptions: EntityTypeDTO[] | null;
772
516
  } & 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;
517
+ export type NoteGroupTypesDTO = {
518
+ AccountId: string | null;
519
+ NoteGroupTypes: EntityTypeDTO[] | null;
797
520
  } & CosmosDocumentDTO;
798
- export type ProductionOrderStatusDTO = {
799
- Statuses: EntityTypeDTO[] | null;
521
+ export type BarcodeTypesDTO = {
522
+ AccountId: string | null;
523
+ BarcodeTypes: EntityTypeDTO[] | null;
800
524
  } & CosmosDocumentDTO;
801
- export type ProductionsDTO = {
802
- Productions: EntityTypeDTO[] | null;
525
+ export type FinancialLedgersDTO = {
526
+ AccountId: string | null;
527
+ FinancialLedgers: EntityTypeDTO[] | null;
803
528
  } & CosmosDocumentDTO;
804
- export type ProductionShiftsDTO = {
805
- Shifts: EntityTypeDTO[] | null;
529
+ export type CostingGroupsDTO = {
530
+ AccountId: string | null;
531
+ CostingGroups: EntityTypeDTO[] | null;
806
532
  } & CosmosDocumentDTO;
807
- export type ProductionTransportsDTO = {
808
- Transports: EntityTypeDTO[] | null;
533
+ export type CalculationNumbersDTO = {
534
+ AccountId: string | null;
535
+ CalculationNumbers: EntityTypeDTO[] | null;
809
536
  } & CosmosDocumentDTO;
810
537
  export type ProductSeasonsDTO = {
811
- Seasons: EntityTypeDTO[] | null;
812
- } & CosmosDocumentDTO;
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
- Statuses: EntityTypeDTO[] | null;
542
+ AccountId: string | null;
543
+ ProductStatus: EntityTypeDTO[] | null;
818
544
  } & CosmosDocumentDTO;
819
- export type ProductTagsDTO = {
820
- Tags: EntityTypeDTO[] | null;
545
+ export type ProductDeliveryDayTourTypesDTO = {
546
+ AccountId: string | null;
547
+ ProductDeliveryDayTourTypes: EntityTypeDTO[] | null;
821
548
  } & CosmosDocumentDTO;
822
- export type PublicationsDTO = {
823
- Publications: EntityTypeDTO[] | null;
549
+ export type PalletLocationGroupsDTO = {
550
+ AccountId: string | null;
551
+ PalletLocationGroups: EntityTypeDTO[] | null;
824
552
  } & CosmosDocumentDTO;
825
- export type PurchaseDiscountsDTO = {
826
- Discounts: EntityTypeDTO[] | null;
553
+ export type MenuCyclusMenuSetsDTO = {
554
+ AccountId: string | null;
555
+ MenuCyclusMenuSets: MenuCyclusMenuSetDTO[] | null;
827
556
  } & 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;
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 PurchaseCostsDTO = {
841
- Costs: EntityTypeDTO[] | null;
565
+ export type AccountDeliveryDaysDTO = {
566
+ AccountId: string | null;
567
+ DeliveryDays: DeliveryDaysDTO[] | null;
842
568
  } & CosmosDocumentDTO;
843
- export type PurchaseOrderStatusDTO = {
844
- Statuses: EntityTypeDTO[] | null;
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 PurchaseOrderTermsOfDeliveryDTO = {
847
- TermsOfDelivery: EntityTypeDTO[] | null;
593
+ export type EdiGlnProfilesDTO = {
594
+ AccountId: string | null;
595
+ EdiGlnProfiles: EdiGlnProfileDTO[] | null;
848
596
  } & CosmosDocumentDTO;
849
- export type PurchaseTransportsDTO = {
850
- Transports: EntityTypeDTO[] | null;
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 PurchasesDTO = {
853
- Purchases: EntityTypeDTO[] | null;
606
+ export type EdiMessageTypesDTO = {
607
+ AccountId: string | null;
608
+ EdiMessageTypes: EntityTypeDTO[] | null;
854
609
  } & CosmosDocumentDTO;
855
- export type RayonsDTO = {
856
- Rayons: EntityTypeDTO[] | null;
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
- 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;
626
+ AccountId: string | null;
627
+ Certificates: AccountCertificateDTO[];
878
628
  } & CosmosDocumentDTO;
879
- export type RelEdiDTO = {
880
- Company: string | null;
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
- IsActive: number | null;
885
- IsSystem: number | null;
886
- Key: string | null;
887
- LastUpdate: string | null;
888
- MessageType: string | null;
653
+ Address: EdiAddressDTO | null;
654
+ };
655
+ export type EdiAddressDTO = {
656
+ Type: EntityTypeDTO | null;
889
657
  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;
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
- 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 = {
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
- 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;
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 ResidentStatusDTO = {
1070
- Statuses: EntityTypeDTO[] | null;
784
+ export type PaymentMethodsDTO = {
785
+ AccountId: string | null;
786
+ PaymentMethods: EntityTypeDTO[] | null;
1071
787
  } & CosmosDocumentDTO;
1072
- export type RfidProductionLocationsDTO = {
1073
- Locations: EntityTypeDTO[] | null;
788
+ export type PaymentStatusesDTO = {
789
+ AccountId: string | null;
790
+ PaymentStatuses: EntityTypeDTO[] | null;
1074
791
  } & CosmosDocumentDTO;
1075
792
  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;
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
- Statuses: EntityTypeDTO[] | null;
1116
- } & CosmosDocumentDTO;
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 StockInvoicesDTO = {
1124
- Invoices: EntityTypeDTO[] | null;
804
+ export type PublicationsDTO = {
805
+ AccountId: string | null;
806
+ Publications: EntityTypeDTO[] | null;
1125
807
  } & 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;
808
+ export type GraiGroupTypesDTO = {
809
+ AccountId: string | null;
810
+ GraiGroupTypes: EntityTypeDTO[] | null;
1148
811
  } & CosmosDocumentDTO;
1149
- export type StockLocationsDTO = {
1150
- Locations: StockLocationWrapperDTO[] | null;
812
+ export type GraiForUsesDTO = {
813
+ AccountId: string | null;
814
+ GraiForUses: EntityTypeDTO[] | null;
1151
815
  } & CosmosDocumentDTO;
1152
- export type StockWarehousesDTO = {
1153
- Warehouses: EntityTypeDTO[] | null;
816
+ export type IngredientTypesDTO = {
817
+ AccountId: string | null;
818
+ IngredientTypes: EntityTypeDTO[] | null;
1154
819
  } & 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;
820
+ export type HolidayTypesDTO = {
821
+ AccountId: string | null;
822
+ HolidayTypes: EntityTypeDTO[] | null;
1239
823
  } & CosmosDocumentDTO;
1240
- export type TatlotEventsDTO = {
1241
- Events: EntityTypeDTO[] | null;
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 ToPayTheBillsDTO = {
1244
- Items: EntityTypeDTO[] | null;
835
+ export type IngredientGroupsDTO = {
836
+ AccountId: string | null;
837
+ IngredientGroups: IngredientGroupDTO[] | null;
1245
838
  } & CosmosDocumentDTO;
1246
- export type TransportToursDTO = {
1247
- TransportTours: EntityTypeDTO[] | null;
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 WarehouseAccountDTO = {
1250
- Account: string | null;
1251
- Warehouse: string | null;
848
+ export type ProductCategoriesDTO = {
849
+ AccountId: string | null;
850
+ ProductCategories: EntityTypeDTO[] | null;
1252
851
  } & 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;
852
+ export type GraiPublicationsDTO = {
853
+ AccountId: string | null;
854
+ GraiPublications: EntityTypeDTO[] | null;
1275
855
  } & CosmosDocumentDTO;
1276
856
  export type WarehouseStockLocationsDTO = {
1277
- Locations: WarehouseStockLocationDTO[] | null;
1278
- } & CosmosDocumentDTO;
1279
- export type WarehousesDTO = {
1280
- Warehouses: EntityTypeDTO[] | null;
857
+ AccountId: string | null;
858
+ WarehouseStockLocations: WarehouseStockLocationDTO[] | null;
1281
859
  } & CosmosDocumentDTO;
1282
- export type VehiclesDTO = {
1283
- Vehicles: VehicleDTO[];
860
+ export type DotStatusDTO = {
861
+ AccountId: string | null;
862
+ DotStatuses: EntityTypeDTO[] | null;
1284
863
  } & CosmosDocumentDTO;
1285
864
  //# sourceMappingURL=master-data.d.ts.map