@ah-automation.nl/component-lib 0.0.123 → 0.0.125

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.
@@ -0,0 +1,670 @@
1
+ import type { CosmosDocumentDTO, CountryDTO, EntityTypeDTO, InfoDTO } from "../../../types/dtos/shared";
2
+ type DotJsonValue = string | number | boolean | null | DotJsonValue[] | {
3
+ [key: string]: DotJsonValue;
4
+ };
5
+ export type LoggingEntryDTO = {
6
+ Created: string;
7
+ AppNumber: string | null;
8
+ Event: EntityTypeDTO | null;
9
+ EventNumber: number;
10
+ Application: string | null;
11
+ Employee: InfoDTO | null;
12
+ ShowStatus: number;
13
+ };
14
+ export type StockInfo = {
15
+ LocationPosition: number;
16
+ Location: StockLocationWrapperDTO | null;
17
+ LocationPositionOld: number;
18
+ LocationOld: StockLocationWrapperDTO | null;
19
+ };
20
+ export type DotEventDefinitionDTO = {
21
+ EventNumber: number;
22
+ Name: string;
23
+ AddToPallet: boolean;
24
+ RemoveFromPallet: boolean;
25
+ DefaultLocationKey: number | null;
26
+ DefaultLocationOldKey: number | null;
27
+ SwapLocationWithOld: boolean;
28
+ CreatesDot: boolean;
29
+ RequiredPayloadKeys: string[];
30
+ Notes: string | null;
31
+ };
32
+ export type DotDTO = CosmosDocumentDTO & {
33
+ Application: string | null;
34
+ Employee: InfoDTO | null;
35
+ LastProcessedEventKey: string | null;
36
+ Number: number | null;
37
+ NumberString: string | null;
38
+ ParentNumber: string | null;
39
+ Notes: string | null;
40
+ WarehouseLot: DotJsonValue;
41
+ DotType: DotTypeDTO | null;
42
+ CurrentEvent: CurrentEventDTO | null;
43
+ Quantity: QuantityDTO | null;
44
+ Barcodes: BarcodeDTO[] | null;
45
+ DotStatus: DotStatusDTO | null;
46
+ Stock: StockDTO | null;
47
+ Pallet: PalletDTO | null;
48
+ Carrier: CarrierDTO | null;
49
+ PackingContents: PackingProductDTO[] | null;
50
+ Packing: PackingRootDTO | null;
51
+ Labels: LabelDTO[] | null;
52
+ Product: ProductDTO | null;
53
+ Pricing: PricingDTO | null;
54
+ Costing: CostingDTO | null;
55
+ Dates: DatesDTO | null;
56
+ TraceAndTrack: TraceAndTrackDTO | null;
57
+ Production: ProductionDTO[] | null;
58
+ Order: OrderRootDTO | null;
59
+ QualityControl: QualityControlDTO[] | null;
60
+ CreatedUtc: string;
61
+ Processed: boolean;
62
+ ProcessedUtc: string | null;
63
+ ProcessorVersion: string;
64
+ Failed: boolean;
65
+ Error: string | null;
66
+ AttemptCount: number;
67
+ ReturnToClient: boolean | null;
68
+ ClientId: string | null;
69
+ ClientNotified: boolean;
70
+ FailedUtc: string | null;
71
+ _etag: string | null;
72
+ };
73
+ export type DotTypeDTO = EntityTypeDTO;
74
+ export type DotStatusDTO = {
75
+ Status: EntityTypeDTO | null;
76
+ StatusNumber: number | null;
77
+ Loggings: DotStatusLoggingDTO[] | null;
78
+ };
79
+ export type DotStatusLoggingDTO = {
80
+ Created: string | null;
81
+ Status: EntityTypeDTO | null;
82
+ StatusNumber: number | null;
83
+ Application: string | null;
84
+ Employee: InfoDTO | null;
85
+ ShowStatus: number | null;
86
+ };
87
+ export type CurrentEventDTO = {
88
+ Event: EntityTypeDTO | null;
89
+ EventNumber: number | null;
90
+ ApplicationNumber: string | null;
91
+ Loggings: CurrentEventLoggingDTO[] | null;
92
+ };
93
+ export type CurrentEventLoggingDTO = {
94
+ Created: string | null;
95
+ AppNumber: string | null;
96
+ Event: EntityTypeDTO | null;
97
+ EventNumber: number | null;
98
+ Application: string | null;
99
+ Employee: InfoDTO | null;
100
+ ShowStatus: number | null;
101
+ };
102
+ export type QuantityDTO = {
103
+ QuantityContent: number | null;
104
+ QuantityOnPallet: number | null;
105
+ QuantityOnCarrier: number | null;
106
+ QuantityInContent: number | null;
107
+ WeightGross: number | null;
108
+ WeightPackingDot: number | null;
109
+ WeightPackingPallet: number | null;
110
+ WeightPackingCarrier: number | null;
111
+ WeightNetto: number | null;
112
+ WeightNettoFixed: number | null;
113
+ WeightNettoOriginal: number | null;
114
+ ScaleAlibi: string | null;
115
+ Loggings: QuantityLoggingDTO[] | null;
116
+ };
117
+ export type QuantityLoggingDTO = {
118
+ QuantityContent: number | null;
119
+ QuantityOnPallet: number | null;
120
+ QuantityOnCarrier: number | null;
121
+ QuantityInContent: number | null;
122
+ WeightGross: number | null;
123
+ WeightPackingDot: number | null;
124
+ WeightPackingPallet: number | null;
125
+ WeightPackingCarrier: number | null;
126
+ WeightNetto: number | null;
127
+ WeightNettoFixed: number | null;
128
+ WeightNettoOriginal: number | null;
129
+ ScaleAlibi: string | null;
130
+ Created: string | null;
131
+ Application: string | null;
132
+ Employee: InfoDTO | null;
133
+ ShowStatus: number | null;
134
+ };
135
+ export type BarcodeDTO = {
136
+ BarcodeType: EntityTypeDTO | null;
137
+ Value: string | null;
138
+ ShowStatus: number | null;
139
+ };
140
+ export type StockDTO = {
141
+ WarehouseStockLocation: WarehouseStockLocationDTO | null;
142
+ LocationPositionOld: number | null;
143
+ LocationOld: StockLocationWrapperDTO | null;
144
+ LocationPositionSource: number | null;
145
+ LocationSource: StockLocationWrapperDTO | null;
146
+ InboundDate: string | null;
147
+ OutboundDate: string | null;
148
+ ShippedDate: string | null;
149
+ ShippedChecked: EntityTypeDTO | null;
150
+ WarehouseLoggings: WarehouseLoggingDTO[] | null;
151
+ LocationLoggings: LocationLoggingDTO[] | null;
152
+ };
153
+ export type WarehouseStockLocationDTO = {
154
+ Code: string | null;
155
+ Description: string | null;
156
+ WarehouseAccount: WarehouseDTO | null;
157
+ LocationPosition: number | null;
158
+ Location: StockLocationWrapperDTO | null;
159
+ IsTransiTo: boolean | null;
160
+ IsInternal: boolean | null;
161
+ };
162
+ export type WarehouseDTO = {
163
+ AccountId: string | null;
164
+ AccountNumber: string | null;
165
+ Name: string | null;
166
+ Address: string | null;
167
+ AddressNumber: string | null;
168
+ AddressLetter: string | null;
169
+ PostalCode: string | null;
170
+ City: string | null;
171
+ Country: CountryDTO | null;
172
+ };
173
+ export type StockLocationWrapperDTO = {
174
+ StockLocation: EntityTypeDTO | null;
175
+ StockLocationDescription: EntityTypeDTO | null;
176
+ };
177
+ export type WarehouseLoggingDTO = {
178
+ Created: string | null;
179
+ Warehouse: WarehouseDTO | null;
180
+ Application: string | null;
181
+ Employee: InfoDTO | null;
182
+ ShowStatus: number | null;
183
+ };
184
+ export type LocationLoggingDTO = {
185
+ Created: string | null;
186
+ InboundDate: string | null;
187
+ OutboundDate: string | null;
188
+ Location: StockLocationWrapperDTO | null;
189
+ LocationPosition: number | null;
190
+ ShippedChecked: EntityTypeDTO | null;
191
+ Application: string | null;
192
+ Employee: InfoDTO | null;
193
+ ShowStatus: number | null;
194
+ };
195
+ export type PalletDTO = {
196
+ PreviousPalletNumberString: string | null;
197
+ NumberString: string | null;
198
+ Number: number | null;
199
+ Location: PalletLocationDTO | null;
200
+ Notes: string | null;
201
+ WeightPackingTotal: number | null;
202
+ Packing: PalletPackingDTO[] | null;
203
+ };
204
+ export type CarrierDTO = {
205
+ NumberString: string | null;
206
+ Number: number | null;
207
+ Location: DotJsonValue;
208
+ Notes: string | null;
209
+ WeightPackingTotal: number | null;
210
+ Packing: PalletPackingDTO[] | null;
211
+ };
212
+ export type PalletLocationDTO = {
213
+ Number: string | null;
214
+ Description: string | null;
215
+ PalletLocationType: EntityTypeDTO | null;
216
+ ItemNumber: DotJsonValue;
217
+ Group: EntityTypeDTO | null;
218
+ WeightMax: number | null;
219
+ QuantityMax: number | null;
220
+ Barcode: string | null;
221
+ StockLocation: StockLocationWrapperDTO | null;
222
+ ShowStatus: number | null;
223
+ };
224
+ export type PalletPackingDTO = {
225
+ Product: PalletPackingProductDTO | null;
226
+ Quantity: number | null;
227
+ WeightPacking: number | null;
228
+ Created: string | null;
229
+ ShowStatus: number | null;
230
+ };
231
+ export type PalletPackingProductDTO = {
232
+ Number: string | null;
233
+ Description: ProductDescriptionDTO | null;
234
+ CalculationType: EntityTypeDTO | null;
235
+ };
236
+ export type PackingRootDTO = {
237
+ WeightPackingTotal: number | null;
238
+ Product: PackingProductDTO[] | null;
239
+ };
240
+ export type PackingProductDTO = {
241
+ ProductNumber: ProductNumberDTO | null;
242
+ Type: EntityTypeDTO | null;
243
+ Quantity: number | null;
244
+ NetWeight: number | null;
245
+ Created: string | null;
246
+ ShowStatus: number | null;
247
+ };
248
+ export type ProductNumberDTO = {
249
+ id: string | null;
250
+ Number: string | null;
251
+ Description: string | null;
252
+ };
253
+ export type LabelDTO = {
254
+ Type: EntityTypeDTO | null;
255
+ Quantity: number | null;
256
+ Created: string | null;
257
+ ShowStatus: number | null;
258
+ };
259
+ export type ProductDTO = {
260
+ id: string | null;
261
+ Number: string | null;
262
+ Description: ProductDescriptionDTO | null;
263
+ CalculationType: EntityTypeDTO | null;
264
+ TradeUnit: TradeUnitDTO | null;
265
+ Brand: BrandDTO | null;
266
+ GroupProductions: GroupProductionDTO[] | null;
267
+ GroupGenerator: GroupGeneratorDTO | null;
268
+ TraceAndTracks: TatLotDTO[] | null;
269
+ BestBeforeDatesGenerator: BestBeforeDateDTO[] | null;
270
+ };
271
+ export type ProductDescriptionDTO = {
272
+ Description1: string | null;
273
+ Description2: string | null;
274
+ Description3: string | null;
275
+ ShortDescription: string | null;
276
+ InternalDescription: string | null;
277
+ DescriptionLanguages: ProductDescriptionLanguageDTO[] | null;
278
+ };
279
+ export type ProductDescriptionLanguageDTO = {
280
+ Language: EntityTypeDTO | null;
281
+ Description: string | null;
282
+ Description2: string | null;
283
+ Description3: string | null;
284
+ StorageTemperature: string | null;
285
+ QuantityDescription: string | null;
286
+ ColDescription: string | null;
287
+ Specification: string | null;
288
+ };
289
+ export type TradeUnitDTO = {
290
+ TradeUnitId: number | null;
291
+ QuantityContent: number | null;
292
+ UnitType: EntityTypeDTO | null;
293
+ Description: ProductDescriptionDTO | null;
294
+ Content: EntityTypeDTO | null;
295
+ Weight: TradeUnitWeightDTO | null;
296
+ QuantityInContent: QuantityInContentDTO | null;
297
+ Pricings: PricingLineDTO[] | null;
298
+ Warehouses: DotJsonValue;
299
+ DefaultLocation: string | null;
300
+ MaxTotalQuantity: number | null;
301
+ MaxOnRowQuantity: number | null;
302
+ Costing: DotJsonValue;
303
+ Packing: DotJsonValue;
304
+ Gtins: GtinDTO[] | null;
305
+ PackingContents: PackingProductDTO[] | null;
306
+ Labels: DotJsonValue;
307
+ AlternativeProducts: DotJsonValue;
308
+ TradeUnitTags: DotJsonValue;
309
+ };
310
+ export type QuantityInContentDTO = {
311
+ Quantity: number | null;
312
+ AverageQuantity: number | null;
313
+ Description: string | null;
314
+ Notes: string | null;
315
+ };
316
+ export type TradeUnitWeightDTO = {
317
+ Gross: number | null;
318
+ Packing: number | null;
319
+ PackingExtra: number | null;
320
+ PackingTotal: number | null;
321
+ Netto: number | null;
322
+ NettoFixed: number | null;
323
+ NettoOriginal: number | null;
324
+ QuantityInContent: number | null;
325
+ };
326
+ export type PricingLogDTO = {
327
+ Code: string | null;
328
+ PriceGoing: number | null;
329
+ Price: number | null;
330
+ PurchaseLast: number | null;
331
+ PurchaseAvg: number | null;
332
+ Production: number | null;
333
+ Vvp: number | null;
334
+ StockAvg: number | null;
335
+ Calculation: number | null;
336
+ Date: string | null;
337
+ };
338
+ export type CheckWeightDTO = {
339
+ Minimum: number | null;
340
+ Maximum: number | null;
341
+ };
342
+ export type PricingLineDTO = {
343
+ FinCurrency: FinCurrencyDTO | null;
344
+ PriceGoing: number | null;
345
+ Price: number | null;
346
+ Cost: number | null;
347
+ CostRecepture: number | null;
348
+ Sales: number | null;
349
+ PurchaseLast: number | null;
350
+ PurchaseAvg: number | null;
351
+ Production: number | null;
352
+ Vvp: number | null;
353
+ StockAvg: number | null;
354
+ Calculation: number | null;
355
+ };
356
+ export type FinCurrencyDTO = EntityTypeDTO;
357
+ export type PosInclusiveDTO = {
358
+ PriceInclusive: number | null;
359
+ PriceGoingInclusive: number | null;
360
+ AmountInclusive: number | null;
361
+ AmountExclusive: number | null;
362
+ AmountFinancialVat: number | null;
363
+ };
364
+ export type GtinDTO = {
365
+ Ean: string | null;
366
+ GtinType: EntityTypeDTO | null;
367
+ Remark: string | null;
368
+ Quantity: number | null;
369
+ };
370
+ export type BrandDTO = EntityTypeDTO;
371
+ export type GroupProductionDTO = {
372
+ GroupNumber: number | null;
373
+ Key: string | null;
374
+ Description: string | null;
375
+ ShowStatus: number | null;
376
+ };
377
+ export type GroupGeneratorDTO = {
378
+ BaseProduct: BaseItemDTO | null;
379
+ Groups: GroupDTO[] | null;
380
+ };
381
+ export type BaseItemDTO = {
382
+ id: string | null;
383
+ Number: string | null;
384
+ Description: string | null;
385
+ };
386
+ export type GroupDTO = {
387
+ GroupNumber: number | null;
388
+ Key: string | null;
389
+ Description: string | null;
390
+ ShowStatus: number | null;
391
+ };
392
+ export type BestBeforeDateDTO = {
393
+ Module: EntityTypeDTO | null;
394
+ Day: BestBeforeDayDTO | null;
395
+ Month: BestBeforeDayDTO | null;
396
+ Year: BestBeforeDayDTO | null;
397
+ };
398
+ export type BestBeforeDayDTO = {
399
+ BestBefore: number | null;
400
+ Expiration: number | null;
401
+ Production: number | null;
402
+ Slaughter: number | null;
403
+ SaleCheck: number | null;
404
+ };
405
+ export type PricingDTO = {
406
+ FinancialCurrency: EntityTypeDTO | null;
407
+ Quotation: number | null;
408
+ SalesMinimum: number | null;
409
+ PriceGoing: number | null;
410
+ Price: number | null;
411
+ Costing: number | null;
412
+ CostingRecepture: number | null;
413
+ Sales: number | null;
414
+ PurchaseLast: number | null;
415
+ PurchaseAverage: number | null;
416
+ Production: number | null;
417
+ Vvp: number | null;
418
+ StockAverage: number | null;
419
+ Calculation: number | null;
420
+ };
421
+ export type CostingDTO = {
422
+ WarehouseCostingTotal: number | null;
423
+ WarehouseCostingAddOn: WarehouseCostingAddOnDTO[] | null;
424
+ };
425
+ export type WarehouseCostingAddOnDTO = {
426
+ Product: PalletPackingProductDTO | null;
427
+ CostingType: CostingTypeWrapperDTO | null;
428
+ };
429
+ export type CostingTypeWrapperDTO = {
430
+ Code: EntityTypeDTO | null;
431
+ Quantity: number | null;
432
+ Description: string | null;
433
+ Price: number | null;
434
+ Created: string | null;
435
+ ShowStatus: number | null;
436
+ };
437
+ export type DatesDTO = {
438
+ Production: string | null;
439
+ Expiration: string | null;
440
+ BestBefore: string | null;
441
+ Freeze: string | null;
442
+ Shipped: string | null;
443
+ Slaughtered: string | null;
444
+ };
445
+ export type DatesLoggingDTO = {
446
+ Created: string | null;
447
+ ShowStatus: number | null;
448
+ Production: string | null;
449
+ Expiration: string | null;
450
+ BestBefore: string | null;
451
+ Freeze: string | null;
452
+ Shipped: string | null;
453
+ Slaughtered: string | null;
454
+ };
455
+ export type TraceAndTrackDTO = {
456
+ TraceAndTracks: TatLotDTO[] | null;
457
+ };
458
+ export type TatLotDTO = {
459
+ id: string | null;
460
+ LotNumber: string | null;
461
+ LotDate: string | null;
462
+ Event: EntityTypeDTO | null;
463
+ Account: WarehouseDTO | null;
464
+ BirthDate: string | null;
465
+ BirthDescription: string | null;
466
+ BirthReference: string | null;
467
+ RearerDate: string | null;
468
+ RearerDescription: string | null;
469
+ RearerReference: string | null;
470
+ SlaughterDate: string | null;
471
+ SlaughterDescription: string | null;
472
+ SlaughterReference: string | null;
473
+ ProductionDate: string | null;
474
+ ProductionDescription: string | null;
475
+ ProductionReference: string | null;
476
+ ProductionDateMutation: string | null;
477
+ Languages: EntityTypeDTO[] | null;
478
+ ShowStatus: number | null;
479
+ };
480
+ export type ProductionDTO = {
481
+ id: string | null;
482
+ Created: string | null;
483
+ AccountOwner: InfoDTO | null;
484
+ Event: EntityTypeDTO | null;
485
+ Line: EntityTypeDTO | null;
486
+ Shift: EntityTypeDTO | null;
487
+ Calculation: string | null;
488
+ ShowStatus: number | null;
489
+ };
490
+ export type OrderRootDTO = {
491
+ Orders: OrderDTO[] | null;
492
+ };
493
+ export type OrderDTO = {
494
+ id: string | null;
495
+ AccountIdMs: string | null;
496
+ OrderIdMs: string | null;
497
+ EtaLoadingPort: string | null;
498
+ EtaWarehouse: string | null;
499
+ ContainerNumber: string | null;
500
+ Reference: string | null;
501
+ Number: string | null;
502
+ OrderStatus: EntityTypeDTO | null;
503
+ Module: EntityTypeDTO | null;
504
+ Indicator: EntityTypeDTO | null;
505
+ AccountNumber: WarehouseDTO | null;
506
+ DeliveryDate: string | null;
507
+ LoadingDate: string | null;
508
+ ShippedDate: string | null;
509
+ Created: string | null;
510
+ ShowStatus: number | null;
511
+ };
512
+ export type QualityControlDTO = {
513
+ Event: EntityTypeDTO | null;
514
+ Temperature: number | null;
515
+ Ph: number | null;
516
+ QmsQuestions: QmsQuestionDTO[] | null;
517
+ ShowStatus: number | null;
518
+ };
519
+ export type QmsQuestionDTO = {
520
+ EventAsNumber: number | null;
521
+ DotEvent: EntityTypeDTO | null;
522
+ Question: QuestionDTO | null;
523
+ ShowStatus: number | null;
524
+ };
525
+ export type QuestionDTO = {
526
+ Number: string | null;
527
+ Description: string | null;
528
+ Answer: string | null;
529
+ Created: string | null;
530
+ };
531
+ export type SummaryDTO = {
532
+ QuantityContent: number | null;
533
+ QuantityOnPallet: number | null;
534
+ QuantityOnCarrier: number | null;
535
+ QuantityInContent: number | null;
536
+ WeightGross: number | null;
537
+ WeightPackingDot: number | null;
538
+ WeightPackingPallet: number | null;
539
+ WeightPackingCarrier: number | null;
540
+ WeightNetto: number | null;
541
+ WeightNettoFixed: number | null;
542
+ WeightNettoOriginal: number | null;
543
+ ScaleAlibi: string | null;
544
+ };
545
+ export type DotMVProductDTO = {
546
+ id: string | null;
547
+ Number: string | null;
548
+ Description: ProductDescriptionDTO | null;
549
+ CalculationType: EntityTypeDTO | null;
550
+ Brand: BrandDTO | null;
551
+ GroupGenerator: GroupGeneratorDTO | null;
552
+ };
553
+ export type DotPalMVDTO = CosmosDocumentDTO & {
554
+ NumberString: string | null;
555
+ Summary: SummaryDTO | null;
556
+ Pallet: PalletDTO | null;
557
+ DotNumbers: DotPalMVItemDTO[] | null;
558
+ };
559
+ export type DotPalMVItemDTO = {
560
+ id: string | null;
561
+ DotSimpleDTO: number | null;
562
+ DotNumber: number | null;
563
+ Product: DotMVProductDTO | null;
564
+ GroupProductions: GroupProductionDTO[] | null;
565
+ GroupGenerator: GroupGeneratorDTO | null;
566
+ Summary: SummaryDTO | null;
567
+ Dates: DatesDTO | null;
568
+ TraceAndTrack: TraceAndTrackDTO | null;
569
+ };
570
+ export type DotSimpleDTO = CosmosDocumentDTO & {
571
+ Application: string | null;
572
+ Number: number | null;
573
+ NumberString: string | null;
574
+ ParentNumber: string | null;
575
+ Notes: string | null;
576
+ DotType: DotTypeDTO | null;
577
+ Quantity: QuantityDTO | null;
578
+ TradeUnit: TradeUnitDTO | null;
579
+ Pricing: PricingDTO | null;
580
+ Dates: DatesDTO | null;
581
+ };
582
+ export type DotWarehouseMVDTO = CosmosDocumentDTO & {
583
+ Product: DotWarehouseProductDTO | null;
584
+ Summary: SummaryDTO | null;
585
+ Dates: DatesDTO | null;
586
+ WarehouseStocks: WarehouseStockWrapperDTO[] | null;
587
+ };
588
+ export type DotWarehouseProductDTO = {
589
+ id: string | null;
590
+ Number: string | null;
591
+ Description: ProductDescriptionDTO | null;
592
+ CalculationType: EntityTypeDTO | null;
593
+ Brand: BrandDTO | null;
594
+ GroupProductions: GroupProductionDTO[] | null;
595
+ GroupGenerator: GroupGeneratorDTO | null;
596
+ BestBeforeDatesGenerator: BestBeforeDateDTO[] | null;
597
+ };
598
+ export type WarehouseStockWrapperDTO = {
599
+ WarehouseStockLocation: WarehouseStockLocationNodeDTO | null;
600
+ };
601
+ export type WarehouseStockLocationNodeDTO = {
602
+ Code: string | null;
603
+ Description: string | null;
604
+ WarehouseAccount: WarehouseDTO | null;
605
+ LocationPosition: number | null;
606
+ Location: StockLocationWrapperDTO | null;
607
+ IsTransiTo: boolean | null;
608
+ IsInternal: boolean | null;
609
+ Summary: SummaryDTO | null;
610
+ Dates: DatesDTO | null;
611
+ DotNumbers: WarehouseDotNumberItemDTO[] | null;
612
+ };
613
+ export type WarehouseDotNumberItemDTO = {
614
+ id: string | null;
615
+ Quantity: SummaryDTO | null;
616
+ Dates: DatesDTO | null;
617
+ };
618
+ export type DotOrderMVDTO = CosmosDocumentDTO & {
619
+ Order: OrderDTO | null;
620
+ Summary: SummaryDTO | null;
621
+ Dates: DotOrderLineDatesDTO | null;
622
+ OrderLines: DotOrderLineDTO[] | null;
623
+ };
624
+ export type DotOrderLineDTO = {
625
+ Position: number;
626
+ Product: DotMVProductDTO | null;
627
+ Pricing: PricingDTO | null;
628
+ Summary: SummaryDTO | null;
629
+ Dates: DotOrderLineDatesDTO | null;
630
+ Claims: DotOrderClaimDTO[] | null;
631
+ DotNumbers: DotNumberRegistrationDTO[] | null;
632
+ };
633
+ export type DotOrderLineDatesDTO = {
634
+ MinimumBestBefore: string | null;
635
+ MaximumBestBefore: string | null;
636
+ };
637
+ export type DotOrderClaimDTO = {
638
+ Summary: DotOrderClaimSummaryDTO | null;
639
+ Orders: DotOrderClaimOrderDTO[] | null;
640
+ };
641
+ export type DotOrderClaimSummaryDTO = {
642
+ QuantityContent: number | null;
643
+ WeightNetto: number | null;
644
+ };
645
+ export type DotOrderClaimOrderDTO = {
646
+ OrderId: string | null;
647
+ OrderNumber: string | null;
648
+ Indicator: EntityTypeDTO | null;
649
+ OrderLineId: string | null;
650
+ QuantityContent: number | null;
651
+ WeightNetto: number | null;
652
+ SalePrice: number;
653
+ };
654
+ export type DotNumberRegistrationDTO = {
655
+ DotId: string | null;
656
+ DotNumber: number;
657
+ Quantity: SummaryDTO | null;
658
+ StockLocationDescription: EntityTypeDTO | null;
659
+ Orders: DotNumberOrderReferenceDTO[] | null;
660
+ };
661
+ export type DotNumberOrderReferenceDTO = {
662
+ OrderId: string | null;
663
+ OrderNumber: string | null;
664
+ Indicator: EntityTypeDTO | null;
665
+ OrderLineId: string | null;
666
+ QuantityContent: number | null;
667
+ WeightNetto: number | null;
668
+ };
669
+ export {};
670
+ //# sourceMappingURL=dot.d.ts.map