@pksep/zod-shared 0.0.561 → 0.0.562
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/excel-export/excel-export.dto.d.ts +1555 -253
- package/dist/excel-export/excel-export.dto.js +156 -2
- package/package.json +38 -38
|
@@ -4,7 +4,11 @@ export declare enum ExcelExportReportType {
|
|
|
4
4
|
assemblyOperationList = "assembly.operation-list",
|
|
5
5
|
operationPath = "production.operation-path",
|
|
6
6
|
assemblyStockOrderList = "assembly.stock-order-list",
|
|
7
|
-
metalloworkingList = "metalloworking.list"
|
|
7
|
+
metalloworkingList = "metalloworking.list",
|
|
8
|
+
productDeficitList = "warehouse.product-deficit-list",
|
|
9
|
+
cbedDeficitList = "warehouse.cbed-deficit-list",
|
|
10
|
+
detalDeficitList = "warehouse.detal-deficit-list",
|
|
11
|
+
materialDeficitList = "warehouse.material-deficit-list"
|
|
8
12
|
}
|
|
9
13
|
export declare enum OperationPathExcelExportSourceType {
|
|
10
14
|
assembly = "assembly",
|
|
@@ -333,11 +337,271 @@ export declare const AssemblyStockOrderExcelExportColumnDefinitions: {
|
|
|
333
337
|
readonly width: 14;
|
|
334
338
|
};
|
|
335
339
|
};
|
|
340
|
+
export declare const ProductDeficitExcelExportColumnDefinitions: {
|
|
341
|
+
readonly number: {
|
|
342
|
+
readonly header: "№";
|
|
343
|
+
readonly width: 8;
|
|
344
|
+
};
|
|
345
|
+
readonly designation: {
|
|
346
|
+
readonly header: "Обозначение";
|
|
347
|
+
readonly width: 24;
|
|
348
|
+
};
|
|
349
|
+
readonly article: {
|
|
350
|
+
readonly header: "Артикул";
|
|
351
|
+
readonly width: 20;
|
|
352
|
+
};
|
|
353
|
+
readonly name: {
|
|
354
|
+
readonly header: "Наименование";
|
|
355
|
+
readonly width: 40;
|
|
356
|
+
};
|
|
357
|
+
readonly warehouseReadinessDate: {
|
|
358
|
+
readonly header: "Дата плановой готовности склада";
|
|
359
|
+
readonly width: 28;
|
|
360
|
+
};
|
|
361
|
+
readonly shipmentDate: {
|
|
362
|
+
readonly header: "Дата плановой отгрузки";
|
|
363
|
+
readonly width: 23;
|
|
364
|
+
};
|
|
365
|
+
readonly deficit: {
|
|
366
|
+
readonly header: "Общий дефицит";
|
|
367
|
+
readonly width: 18;
|
|
368
|
+
};
|
|
369
|
+
readonly orderDemand: {
|
|
370
|
+
readonly header: "Потребность по заказам покупателя";
|
|
371
|
+
readonly width: 30;
|
|
372
|
+
};
|
|
373
|
+
readonly remaining: {
|
|
374
|
+
readonly header: "Кол-во";
|
|
375
|
+
readonly width: 14;
|
|
376
|
+
};
|
|
377
|
+
readonly status: {
|
|
378
|
+
readonly header: "Статус";
|
|
379
|
+
readonly width: 18;
|
|
380
|
+
};
|
|
381
|
+
readonly minRemaining: {
|
|
382
|
+
readonly header: "Мин. остаток";
|
|
383
|
+
readonly width: 16;
|
|
384
|
+
};
|
|
385
|
+
readonly recommendedRemaining: {
|
|
386
|
+
readonly header: "Рек. остаток";
|
|
387
|
+
readonly width: 16;
|
|
388
|
+
};
|
|
389
|
+
readonly timeNorm: {
|
|
390
|
+
readonly header: "Норма времени на одну единицу, ч/мин";
|
|
391
|
+
readonly width: 29;
|
|
392
|
+
};
|
|
393
|
+
readonly ownQuantity: {
|
|
394
|
+
readonly header: "Кол-во (по ум.=рекомендуемому кол-ву)";
|
|
395
|
+
readonly width: 31;
|
|
396
|
+
};
|
|
397
|
+
readonly ordered: {
|
|
398
|
+
readonly header: "Заказано на складе";
|
|
399
|
+
readonly width: 20;
|
|
400
|
+
};
|
|
401
|
+
readonly realRemaining: {
|
|
402
|
+
readonly header: "Реальный остаток с учетом планируемых отгрузок и планируемого производства";
|
|
403
|
+
readonly width: 35;
|
|
404
|
+
};
|
|
405
|
+
};
|
|
406
|
+
export declare const CbedDeficitExcelExportColumnDefinitions: {
|
|
407
|
+
readonly number: {
|
|
408
|
+
readonly header: "№";
|
|
409
|
+
readonly width: 8;
|
|
410
|
+
};
|
|
411
|
+
readonly designation: {
|
|
412
|
+
readonly header: "Обозначение";
|
|
413
|
+
readonly width: 24;
|
|
414
|
+
};
|
|
415
|
+
readonly name: {
|
|
416
|
+
readonly header: "Наименование";
|
|
417
|
+
readonly width: 40;
|
|
418
|
+
};
|
|
419
|
+
readonly warehouseReadinessDate: {
|
|
420
|
+
readonly header: "Дата плановой готовности склада";
|
|
421
|
+
readonly width: 28;
|
|
422
|
+
};
|
|
423
|
+
readonly deficit: {
|
|
424
|
+
readonly header: "Общий дефицит";
|
|
425
|
+
readonly width: 18;
|
|
426
|
+
};
|
|
427
|
+
readonly orderDemand: {
|
|
428
|
+
readonly header: "Потребность по заказам";
|
|
429
|
+
readonly width: 24;
|
|
430
|
+
};
|
|
431
|
+
readonly remaining: {
|
|
432
|
+
readonly header: "Кол-во";
|
|
433
|
+
readonly width: 14;
|
|
434
|
+
};
|
|
435
|
+
readonly status: {
|
|
436
|
+
readonly header: "Статус";
|
|
437
|
+
readonly width: 18;
|
|
438
|
+
};
|
|
439
|
+
readonly minRemaining: {
|
|
440
|
+
readonly header: "Мин. остаток";
|
|
441
|
+
readonly width: 16;
|
|
442
|
+
};
|
|
443
|
+
readonly recommendedRemaining: {
|
|
444
|
+
readonly header: "Рек. остаток";
|
|
445
|
+
readonly width: 16;
|
|
446
|
+
};
|
|
447
|
+
readonly timeNorm: {
|
|
448
|
+
readonly header: "Норма времени на одну единицу, ч/мин";
|
|
449
|
+
readonly width: 29;
|
|
450
|
+
};
|
|
451
|
+
readonly ownQuantity: {
|
|
452
|
+
readonly header: "Кол-во (по ум.=рекомендуемому кол-ву)";
|
|
453
|
+
readonly width: 31;
|
|
454
|
+
};
|
|
455
|
+
readonly ordered: {
|
|
456
|
+
readonly header: "Заказано на складе";
|
|
457
|
+
readonly width: 20;
|
|
458
|
+
};
|
|
459
|
+
readonly realRemaining: {
|
|
460
|
+
readonly header: "Реальный остаток с учетом планируемых отгрузок и планируемого производства";
|
|
461
|
+
readonly width: 35;
|
|
462
|
+
};
|
|
463
|
+
};
|
|
464
|
+
export declare const DetalDeficitExcelExportColumnDefinitions: {
|
|
465
|
+
readonly number: {
|
|
466
|
+
readonly header: "№";
|
|
467
|
+
readonly width: 8;
|
|
468
|
+
};
|
|
469
|
+
readonly designation: {
|
|
470
|
+
readonly header: "Обозначение";
|
|
471
|
+
readonly width: 24;
|
|
472
|
+
};
|
|
473
|
+
readonly name: {
|
|
474
|
+
readonly header: "Наименование";
|
|
475
|
+
readonly width: 40;
|
|
476
|
+
};
|
|
477
|
+
readonly warehouseReadinessDate: {
|
|
478
|
+
readonly header: "Дата плановой готовности склада";
|
|
479
|
+
readonly width: 28;
|
|
480
|
+
};
|
|
481
|
+
readonly deficit: {
|
|
482
|
+
readonly header: "Общий дефицит";
|
|
483
|
+
readonly width: 18;
|
|
484
|
+
};
|
|
485
|
+
readonly orderDemand: {
|
|
486
|
+
readonly header: "Потребность по заказам склада";
|
|
487
|
+
readonly width: 28;
|
|
488
|
+
};
|
|
489
|
+
readonly remaining: {
|
|
490
|
+
readonly header: "Кол-во";
|
|
491
|
+
readonly width: 14;
|
|
492
|
+
};
|
|
493
|
+
readonly status: {
|
|
494
|
+
readonly header: "Статус";
|
|
495
|
+
readonly width: 18;
|
|
496
|
+
};
|
|
497
|
+
readonly minRemaining: {
|
|
498
|
+
readonly header: "Мин. остаток";
|
|
499
|
+
readonly width: 16;
|
|
500
|
+
};
|
|
501
|
+
readonly recommendedRemaining: {
|
|
502
|
+
readonly header: "Рек. остаток";
|
|
503
|
+
readonly width: 16;
|
|
504
|
+
};
|
|
505
|
+
readonly cnc: {
|
|
506
|
+
readonly header: "ЧПУ";
|
|
507
|
+
readonly width: 12;
|
|
508
|
+
};
|
|
509
|
+
readonly timeNorm: {
|
|
510
|
+
readonly header: "Норма времени на одну единицу, ч/мин";
|
|
511
|
+
readonly width: 29;
|
|
512
|
+
};
|
|
513
|
+
readonly ownQuantity: {
|
|
514
|
+
readonly header: "Кол-во (по ум.=рекомендуемому кол-ву)";
|
|
515
|
+
readonly width: 31;
|
|
516
|
+
};
|
|
517
|
+
readonly ordered: {
|
|
518
|
+
readonly header: "Заказано на складе";
|
|
519
|
+
readonly width: 20;
|
|
520
|
+
};
|
|
521
|
+
readonly deficitWithProduction: {
|
|
522
|
+
readonly header: "Дефицит с учетом производства";
|
|
523
|
+
readonly width: 27;
|
|
524
|
+
};
|
|
525
|
+
readonly realRemaining: {
|
|
526
|
+
readonly header: "Реальный остаток с учетом планируемых отгрузок и планируемого производства";
|
|
527
|
+
readonly width: 35;
|
|
528
|
+
};
|
|
529
|
+
};
|
|
530
|
+
export declare const MaterialDeficitExcelExportColumnDefinitions: {
|
|
531
|
+
readonly number: {
|
|
532
|
+
readonly header: "№";
|
|
533
|
+
readonly width: 8;
|
|
534
|
+
};
|
|
535
|
+
readonly name: {
|
|
536
|
+
readonly header: "Наименование";
|
|
537
|
+
readonly width: 40;
|
|
538
|
+
};
|
|
539
|
+
readonly plannedDeliveryDate: {
|
|
540
|
+
readonly header: "Планируемая дата прихода";
|
|
541
|
+
readonly width: 24;
|
|
542
|
+
};
|
|
543
|
+
readonly shipmentDate: {
|
|
544
|
+
readonly header: "Дата плановой отгрузки";
|
|
545
|
+
readonly width: 23;
|
|
546
|
+
};
|
|
547
|
+
readonly inKit: {
|
|
548
|
+
readonly header: "В наборах";
|
|
549
|
+
readonly width: 14;
|
|
550
|
+
};
|
|
551
|
+
readonly measurement: {
|
|
552
|
+
readonly header: "ЕИ";
|
|
553
|
+
readonly width: 12;
|
|
554
|
+
};
|
|
555
|
+
readonly deficit: {
|
|
556
|
+
readonly header: "Общий дефицит";
|
|
557
|
+
readonly width: 18;
|
|
558
|
+
};
|
|
559
|
+
readonly orderDemand: {
|
|
560
|
+
readonly header: "Потребность по ЗС";
|
|
561
|
+
readonly width: 21;
|
|
562
|
+
};
|
|
563
|
+
readonly remaining: {
|
|
564
|
+
readonly header: "Остаток";
|
|
565
|
+
readonly width: 15;
|
|
566
|
+
};
|
|
567
|
+
readonly status: {
|
|
568
|
+
readonly header: "Статус";
|
|
569
|
+
readonly width: 18;
|
|
570
|
+
};
|
|
571
|
+
readonly minRemaining: {
|
|
572
|
+
readonly header: "Мин. остаток";
|
|
573
|
+
readonly width: 16;
|
|
574
|
+
};
|
|
575
|
+
readonly recommendedRemaining: {
|
|
576
|
+
readonly header: "Рек. остаток";
|
|
577
|
+
readonly width: 16;
|
|
578
|
+
};
|
|
579
|
+
readonly ownQuantity: {
|
|
580
|
+
readonly header: "Кол-во (по ум.=рекомендуемому кол-ву)";
|
|
581
|
+
readonly width: 31;
|
|
582
|
+
};
|
|
583
|
+
readonly ordered: {
|
|
584
|
+
readonly header: "Заказано";
|
|
585
|
+
readonly width: 16;
|
|
586
|
+
};
|
|
587
|
+
readonly deficitWithIncoming: {
|
|
588
|
+
readonly header: "Дефицит с учетом прихода";
|
|
589
|
+
readonly width: 25;
|
|
590
|
+
};
|
|
591
|
+
readonly realRemaining: {
|
|
592
|
+
readonly header: "Реальный остаток с учетом планируемых отгрузок и планируемого производства";
|
|
593
|
+
readonly width: 35;
|
|
594
|
+
};
|
|
595
|
+
};
|
|
336
596
|
export declare const AssemblyExcelExportColumnSchema: z.ZodEnum<["number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete", ...("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[]]>;
|
|
337
597
|
export declare const MetalloworkingExcelExportColumnSchema: z.ZodEnum<["number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste", ...("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[]]>;
|
|
338
598
|
export declare const AssemblyOperationExcelExportColumnSchema: z.ZodEnum<["number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor", ...("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[]]>;
|
|
339
599
|
export declare const OperationPathExcelExportColumnSchema: z.ZodEnum<["number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent", ...("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[]]>;
|
|
340
600
|
export declare const AssemblyStockOrderExcelExportColumnSchema: z.ZodEnum<["number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad", ...("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[]]>;
|
|
601
|
+
export declare const ProductDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>;
|
|
602
|
+
export declare const CbedDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>;
|
|
603
|
+
export declare const DetalDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>;
|
|
604
|
+
export declare const MaterialDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>;
|
|
341
605
|
export declare const CreateAssemblyExcelExportDtoZod: z.ZodObject<{
|
|
342
606
|
reportType: z.ZodLiteral<ExcelExportReportType.assemblyList>;
|
|
343
607
|
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete", ...("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[]]>, "many">, ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[], ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[]>;
|
|
@@ -696,20 +960,16 @@ export declare const CreateAssemblyStockOrderExcelExportDtoZod: z.ZodObject<{
|
|
|
696
960
|
reportType: ExcelExportReportType.assemblyStockOrderList;
|
|
697
961
|
columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
|
|
698
962
|
}>;
|
|
699
|
-
export declare const
|
|
700
|
-
reportType: z.ZodLiteral<ExcelExportReportType.
|
|
701
|
-
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "
|
|
963
|
+
export declare const CreateProductDeficitExcelExportDtoZod: z.ZodObject<{
|
|
964
|
+
reportType: z.ZodLiteral<ExcelExportReportType.productDeficitList>;
|
|
965
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
|
|
702
966
|
filters: z.ZodObject<Omit<{
|
|
703
|
-
|
|
967
|
+
productIds: z.ZodArray<z.ZodNumber, "many">;
|
|
968
|
+
statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
|
|
704
969
|
searchString: z.ZodString;
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
|
|
708
|
-
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
709
|
-
type: z.ZodDefault<z.ZodNativeEnum<typeof import("..").AssembleIzdEnum>>;
|
|
710
|
-
sortReadines: z.ZodDefault<z.ZodNativeEnum<typeof import("..").SortReadinesEnum>>;
|
|
711
|
-
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
712
|
-
onlyCanComplect: z.ZodBoolean;
|
|
970
|
+
shipmentIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
971
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
972
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
713
973
|
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
714
974
|
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
715
975
|
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -720,81 +980,71 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
|
|
|
720
980
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
721
981
|
sortDesc?: boolean | undefined;
|
|
722
982
|
}>, "many">>>;
|
|
983
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
723
984
|
}, "page">, "strip", z.ZodTypeAny, {
|
|
724
|
-
type: import("..").AssembleIzdEnum;
|
|
725
985
|
sort: {
|
|
726
986
|
sortDesc: boolean;
|
|
727
987
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
728
988
|
}[];
|
|
729
989
|
searchString: string;
|
|
730
|
-
|
|
731
|
-
|
|
732
|
-
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
736
|
-
notOrderedByProductionTask?: boolean | null | undefined;
|
|
990
|
+
isDiscontinued: boolean | null;
|
|
991
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
992
|
+
productIds: number[];
|
|
993
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
994
|
+
shipmentIds?: number[] | null | undefined;
|
|
737
995
|
}, {
|
|
738
996
|
searchString: string;
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
onlyCanComplect: boolean;
|
|
742
|
-
type?: import("..").AssembleIzdEnum | undefined;
|
|
997
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
998
|
+
productIds: number[];
|
|
743
999
|
sort?: {
|
|
744
1000
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
745
1001
|
sortDesc?: boolean | undefined;
|
|
746
1002
|
}[] | undefined;
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
1003
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1004
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1005
|
+
shipmentIds?: number[] | null | undefined;
|
|
751
1006
|
}>;
|
|
752
1007
|
}, "strip", z.ZodTypeAny, {
|
|
753
1008
|
filters: {
|
|
754
|
-
type: import("..").AssembleIzdEnum;
|
|
755
1009
|
sort: {
|
|
756
1010
|
sortDesc: boolean;
|
|
757
1011
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
758
1012
|
}[];
|
|
759
1013
|
searchString: string;
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
766
|
-
notOrderedByProductionTask?: boolean | null | undefined;
|
|
1014
|
+
isDiscontinued: boolean | null;
|
|
1015
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1016
|
+
productIds: number[];
|
|
1017
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1018
|
+
shipmentIds?: number[] | null | undefined;
|
|
767
1019
|
};
|
|
768
|
-
reportType: ExcelExportReportType.
|
|
769
|
-
columns: ("number" | "
|
|
1020
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
1021
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
770
1022
|
}, {
|
|
771
1023
|
filters: {
|
|
772
1024
|
searchString: string;
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
onlyCanComplect: boolean;
|
|
776
|
-
type?: import("..").AssembleIzdEnum | undefined;
|
|
1025
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1026
|
+
productIds: number[];
|
|
777
1027
|
sort?: {
|
|
778
1028
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
779
1029
|
sortDesc?: boolean | undefined;
|
|
780
1030
|
}[] | undefined;
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
784
|
-
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
1031
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1032
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1033
|
+
shipmentIds?: number[] | null | undefined;
|
|
785
1034
|
};
|
|
786
|
-
reportType: ExcelExportReportType.
|
|
787
|
-
columns: ("number" | "
|
|
788
|
-
}
|
|
789
|
-
|
|
790
|
-
|
|
1035
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
1036
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1037
|
+
}>;
|
|
1038
|
+
export declare const CreateCbedDeficitExcelExportDtoZod: z.ZodObject<{
|
|
1039
|
+
reportType: z.ZodLiteral<ExcelExportReportType.cbedDeficitList>;
|
|
1040
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
|
|
791
1041
|
filters: z.ZodObject<Omit<{
|
|
792
|
-
|
|
793
|
-
|
|
1042
|
+
cbedIds: z.ZodArray<z.ZodNumber, "many">;
|
|
1043
|
+
page: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1044
|
+
statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
|
|
794
1045
|
searchString: z.ZodString;
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
1046
|
+
shipmentIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1047
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
798
1048
|
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
799
1049
|
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
800
1050
|
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -805,26 +1055,29 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
|
|
|
805
1055
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
806
1056
|
sortDesc?: boolean | undefined;
|
|
807
1057
|
}>, "many">>>;
|
|
1058
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
808
1059
|
}, "page">, "strip", z.ZodTypeAny, {
|
|
809
1060
|
sort: {
|
|
810
1061
|
sortDesc: boolean;
|
|
811
1062
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
812
1063
|
}[];
|
|
813
|
-
status: import("..").AssembleStatus;
|
|
814
|
-
operationId: number | null;
|
|
815
1064
|
searchString: string;
|
|
816
|
-
|
|
817
|
-
|
|
1065
|
+
isDiscontinued: boolean | null;
|
|
1066
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1067
|
+
cbedIds: number[];
|
|
1068
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1069
|
+
shipmentIds?: number[] | null | undefined;
|
|
818
1070
|
}, {
|
|
819
|
-
status: import("..").AssembleStatus;
|
|
820
1071
|
searchString: string;
|
|
1072
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1073
|
+
cbedIds: number[];
|
|
821
1074
|
sort?: {
|
|
822
1075
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
823
1076
|
sortDesc?: boolean | undefined;
|
|
824
1077
|
}[] | undefined;
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
1078
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1079
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1080
|
+
shipmentIds?: number[] | null | undefined;
|
|
828
1081
|
}>;
|
|
829
1082
|
}, "strip", z.ZodTypeAny, {
|
|
830
1083
|
filters: {
|
|
@@ -832,10 +1085,326 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
|
|
|
832
1085
|
sortDesc: boolean;
|
|
833
1086
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
834
1087
|
}[];
|
|
835
|
-
status: import("..").AssembleStatus;
|
|
836
|
-
operationId: number | null;
|
|
837
1088
|
searchString: string;
|
|
838
|
-
|
|
1089
|
+
isDiscontinued: boolean | null;
|
|
1090
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1091
|
+
cbedIds: number[];
|
|
1092
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1093
|
+
shipmentIds?: number[] | null | undefined;
|
|
1094
|
+
};
|
|
1095
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
1096
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1097
|
+
}, {
|
|
1098
|
+
filters: {
|
|
1099
|
+
searchString: string;
|
|
1100
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1101
|
+
cbedIds: number[];
|
|
1102
|
+
sort?: {
|
|
1103
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1104
|
+
sortDesc?: boolean | undefined;
|
|
1105
|
+
}[] | undefined;
|
|
1106
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1107
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1108
|
+
shipmentIds?: number[] | null | undefined;
|
|
1109
|
+
};
|
|
1110
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
1111
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1112
|
+
}>;
|
|
1113
|
+
export declare const CreateDetalDeficitExcelExportDtoZod: z.ZodObject<{
|
|
1114
|
+
reportType: z.ZodLiteral<ExcelExportReportType.detalDeficitList>;
|
|
1115
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]>;
|
|
1116
|
+
filters: z.ZodObject<Omit<{
|
|
1117
|
+
detalIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1118
|
+
statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
|
|
1119
|
+
searchString: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1120
|
+
shipmentIds: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>>;
|
|
1121
|
+
page: z.ZodNumber;
|
|
1122
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1123
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1124
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1125
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1126
|
+
}, "strip", z.ZodTypeAny, {
|
|
1127
|
+
sortDesc: boolean;
|
|
1128
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1129
|
+
}, {
|
|
1130
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1131
|
+
sortDesc?: boolean | undefined;
|
|
1132
|
+
}>, "many">>>;
|
|
1133
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1134
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1135
|
+
sort: {
|
|
1136
|
+
sortDesc: boolean;
|
|
1137
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1138
|
+
}[];
|
|
1139
|
+
searchString: string;
|
|
1140
|
+
isDiscontinued: boolean;
|
|
1141
|
+
detalIds: number[];
|
|
1142
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1143
|
+
shipmentIds: number[] | null;
|
|
1144
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1145
|
+
}, {
|
|
1146
|
+
sort?: {
|
|
1147
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1148
|
+
sortDesc?: boolean | undefined;
|
|
1149
|
+
}[] | undefined;
|
|
1150
|
+
searchString?: string | undefined;
|
|
1151
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1152
|
+
isDiscontinued?: boolean | undefined;
|
|
1153
|
+
detalIds?: number[] | undefined;
|
|
1154
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1155
|
+
shipmentIds?: number[] | null | undefined;
|
|
1156
|
+
}>;
|
|
1157
|
+
}, "strip", z.ZodTypeAny, {
|
|
1158
|
+
filters: {
|
|
1159
|
+
sort: {
|
|
1160
|
+
sortDesc: boolean;
|
|
1161
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1162
|
+
}[];
|
|
1163
|
+
searchString: string;
|
|
1164
|
+
isDiscontinued: boolean;
|
|
1165
|
+
detalIds: number[];
|
|
1166
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1167
|
+
shipmentIds: number[] | null;
|
|
1168
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1169
|
+
};
|
|
1170
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
1171
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
1172
|
+
}, {
|
|
1173
|
+
filters: {
|
|
1174
|
+
sort?: {
|
|
1175
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1176
|
+
sortDesc?: boolean | undefined;
|
|
1177
|
+
}[] | undefined;
|
|
1178
|
+
searchString?: string | undefined;
|
|
1179
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1180
|
+
isDiscontinued?: boolean | undefined;
|
|
1181
|
+
detalIds?: number[] | undefined;
|
|
1182
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1183
|
+
shipmentIds?: number[] | null | undefined;
|
|
1184
|
+
};
|
|
1185
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
1186
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
1187
|
+
}>;
|
|
1188
|
+
export declare const CreateMaterialDeficitExcelExportDtoZod: z.ZodObject<{
|
|
1189
|
+
reportType: z.ZodLiteral<ExcelExportReportType.materialDeficitList>;
|
|
1190
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>, "many">, ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[], ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]>;
|
|
1191
|
+
filters: z.ZodObject<Omit<{
|
|
1192
|
+
materialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1193
|
+
typeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1194
|
+
subTypeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1195
|
+
statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
|
|
1196
|
+
searchString: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1197
|
+
shipmentIds: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>>;
|
|
1198
|
+
page: z.ZodNumber;
|
|
1199
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1200
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../material").MaterialDeficitSortField>>>;
|
|
1201
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1202
|
+
}, "strip", z.ZodTypeAny, {
|
|
1203
|
+
sortDesc: boolean;
|
|
1204
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1205
|
+
}, {
|
|
1206
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1207
|
+
sortDesc?: boolean | undefined;
|
|
1208
|
+
}>, "many">>>;
|
|
1209
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1210
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1211
|
+
sort: {
|
|
1212
|
+
sortDesc: boolean;
|
|
1213
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1214
|
+
}[];
|
|
1215
|
+
searchString: string;
|
|
1216
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1217
|
+
shipmentIds: number[] | null;
|
|
1218
|
+
materialIds: number[];
|
|
1219
|
+
typeMaterialIds: number[];
|
|
1220
|
+
subTypeMaterialIds: number[];
|
|
1221
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1222
|
+
}, {
|
|
1223
|
+
sort?: {
|
|
1224
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1225
|
+
sortDesc?: boolean | undefined;
|
|
1226
|
+
}[] | undefined;
|
|
1227
|
+
searchString?: string | undefined;
|
|
1228
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1229
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1230
|
+
shipmentIds?: number[] | null | undefined;
|
|
1231
|
+
materialIds?: number[] | undefined;
|
|
1232
|
+
typeMaterialIds?: number[] | undefined;
|
|
1233
|
+
subTypeMaterialIds?: number[] | undefined;
|
|
1234
|
+
}>;
|
|
1235
|
+
}, "strip", z.ZodTypeAny, {
|
|
1236
|
+
filters: {
|
|
1237
|
+
sort: {
|
|
1238
|
+
sortDesc: boolean;
|
|
1239
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1240
|
+
}[];
|
|
1241
|
+
searchString: string;
|
|
1242
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1243
|
+
shipmentIds: number[] | null;
|
|
1244
|
+
materialIds: number[];
|
|
1245
|
+
typeMaterialIds: number[];
|
|
1246
|
+
subTypeMaterialIds: number[];
|
|
1247
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1248
|
+
};
|
|
1249
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
1250
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1251
|
+
}, {
|
|
1252
|
+
filters: {
|
|
1253
|
+
sort?: {
|
|
1254
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1255
|
+
sortDesc?: boolean | undefined;
|
|
1256
|
+
}[] | undefined;
|
|
1257
|
+
searchString?: string | undefined;
|
|
1258
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1259
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1260
|
+
shipmentIds?: number[] | null | undefined;
|
|
1261
|
+
materialIds?: number[] | undefined;
|
|
1262
|
+
typeMaterialIds?: number[] | undefined;
|
|
1263
|
+
subTypeMaterialIds?: number[] | undefined;
|
|
1264
|
+
};
|
|
1265
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
1266
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1267
|
+
}>;
|
|
1268
|
+
export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"reportType", [z.ZodObject<{
|
|
1269
|
+
reportType: z.ZodLiteral<ExcelExportReportType.assemblyList>;
|
|
1270
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete", ...("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[]]>, "many">, ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[], ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[]>;
|
|
1271
|
+
filters: z.ZodObject<Omit<{
|
|
1272
|
+
page: z.ZodNumber;
|
|
1273
|
+
searchString: z.ZodString;
|
|
1274
|
+
isBan: z.ZodBoolean;
|
|
1275
|
+
responsibleUserId: z.ZodNullable<z.ZodNumber>;
|
|
1276
|
+
notOrderedByProductionTask: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1277
|
+
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
1278
|
+
type: z.ZodDefault<z.ZodNativeEnum<typeof import("..").AssembleIzdEnum>>;
|
|
1279
|
+
sortReadines: z.ZodDefault<z.ZodNativeEnum<typeof import("..").SortReadinesEnum>>;
|
|
1280
|
+
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
1281
|
+
onlyCanComplect: z.ZodBoolean;
|
|
1282
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1283
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1284
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1285
|
+
}, "strip", z.ZodTypeAny, {
|
|
1286
|
+
sortDesc: boolean;
|
|
1287
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1288
|
+
}, {
|
|
1289
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1290
|
+
sortDesc?: boolean | undefined;
|
|
1291
|
+
}>, "many">>>;
|
|
1292
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1293
|
+
type: import("..").AssembleIzdEnum;
|
|
1294
|
+
sort: {
|
|
1295
|
+
sortDesc: boolean;
|
|
1296
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1297
|
+
}[];
|
|
1298
|
+
searchString: string;
|
|
1299
|
+
responsibleUserId: number | null;
|
|
1300
|
+
isBan: boolean;
|
|
1301
|
+
sortReadines: import("..").SortReadinesEnum;
|
|
1302
|
+
onlyCanComplect: boolean;
|
|
1303
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1304
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1305
|
+
notOrderedByProductionTask?: boolean | null | undefined;
|
|
1306
|
+
}, {
|
|
1307
|
+
searchString: string;
|
|
1308
|
+
responsibleUserId: number | null;
|
|
1309
|
+
isBan: boolean;
|
|
1310
|
+
onlyCanComplect: boolean;
|
|
1311
|
+
type?: import("..").AssembleIzdEnum | undefined;
|
|
1312
|
+
sort?: {
|
|
1313
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1314
|
+
sortDesc?: boolean | undefined;
|
|
1315
|
+
}[] | undefined;
|
|
1316
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1317
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1318
|
+
notOrderedByProductionTask?: boolean | null | undefined;
|
|
1319
|
+
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
1320
|
+
}>;
|
|
1321
|
+
}, "strip", z.ZodTypeAny, {
|
|
1322
|
+
filters: {
|
|
1323
|
+
type: import("..").AssembleIzdEnum;
|
|
1324
|
+
sort: {
|
|
1325
|
+
sortDesc: boolean;
|
|
1326
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1327
|
+
}[];
|
|
1328
|
+
searchString: string;
|
|
1329
|
+
responsibleUserId: number | null;
|
|
1330
|
+
isBan: boolean;
|
|
1331
|
+
sortReadines: import("..").SortReadinesEnum;
|
|
1332
|
+
onlyCanComplect: boolean;
|
|
1333
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1334
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1335
|
+
notOrderedByProductionTask?: boolean | null | undefined;
|
|
1336
|
+
};
|
|
1337
|
+
reportType: ExcelExportReportType.assemblyList;
|
|
1338
|
+
columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
|
|
1339
|
+
}, {
|
|
1340
|
+
filters: {
|
|
1341
|
+
searchString: string;
|
|
1342
|
+
responsibleUserId: number | null;
|
|
1343
|
+
isBan: boolean;
|
|
1344
|
+
onlyCanComplect: boolean;
|
|
1345
|
+
type?: import("..").AssembleIzdEnum | undefined;
|
|
1346
|
+
sort?: {
|
|
1347
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1348
|
+
sortDesc?: boolean | undefined;
|
|
1349
|
+
}[] | undefined;
|
|
1350
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1351
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1352
|
+
notOrderedByProductionTask?: boolean | null | undefined;
|
|
1353
|
+
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
1354
|
+
};
|
|
1355
|
+
reportType: ExcelExportReportType.assemblyList;
|
|
1356
|
+
columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
|
|
1357
|
+
}>, z.ZodObject<{
|
|
1358
|
+
reportType: z.ZodLiteral<ExcelExportReportType.assemblyOperationList>;
|
|
1359
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor", ...("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[]]>, "many">, ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[], ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[]>;
|
|
1360
|
+
filters: z.ZodObject<Omit<{
|
|
1361
|
+
page: z.ZodNumber;
|
|
1362
|
+
operationId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
1363
|
+
searchString: z.ZodString;
|
|
1364
|
+
status: z.ZodNativeEnum<typeof import("..").AssembleStatus>;
|
|
1365
|
+
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
1366
|
+
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
1367
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1368
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1369
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1370
|
+
}, "strip", z.ZodTypeAny, {
|
|
1371
|
+
sortDesc: boolean;
|
|
1372
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1373
|
+
}, {
|
|
1374
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1375
|
+
sortDesc?: boolean | undefined;
|
|
1376
|
+
}>, "many">>>;
|
|
1377
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1378
|
+
sort: {
|
|
1379
|
+
sortDesc: boolean;
|
|
1380
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1381
|
+
}[];
|
|
1382
|
+
status: import("..").AssembleStatus;
|
|
1383
|
+
operationId: number | null;
|
|
1384
|
+
searchString: string;
|
|
1385
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1386
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1387
|
+
}, {
|
|
1388
|
+
status: import("..").AssembleStatus;
|
|
1389
|
+
searchString: string;
|
|
1390
|
+
sort?: {
|
|
1391
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1392
|
+
sortDesc?: boolean | undefined;
|
|
1393
|
+
}[] | undefined;
|
|
1394
|
+
operationId?: number | null | undefined;
|
|
1395
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1396
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1397
|
+
}>;
|
|
1398
|
+
}, "strip", z.ZodTypeAny, {
|
|
1399
|
+
filters: {
|
|
1400
|
+
sort: {
|
|
1401
|
+
sortDesc: boolean;
|
|
1402
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1403
|
+
}[];
|
|
1404
|
+
status: import("..").AssembleStatus;
|
|
1405
|
+
operationId: number | null;
|
|
1406
|
+
searchString: string;
|
|
1407
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
839
1408
|
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
840
1409
|
};
|
|
841
1410
|
reportType: ExcelExportReportType.assemblyOperationList;
|
|
@@ -1049,26 +1618,327 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
|
|
|
1049
1618
|
};
|
|
1050
1619
|
reportType: ExcelExportReportType.metalloworkingList;
|
|
1051
1620
|
columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
|
|
1052
|
-
}
|
|
1053
|
-
|
|
1054
|
-
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
|
|
1071
|
-
|
|
1621
|
+
}>, z.ZodObject<{
|
|
1622
|
+
reportType: z.ZodLiteral<ExcelExportReportType.productDeficitList>;
|
|
1623
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
|
|
1624
|
+
filters: z.ZodObject<Omit<{
|
|
1625
|
+
productIds: z.ZodArray<z.ZodNumber, "many">;
|
|
1626
|
+
statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
|
|
1627
|
+
searchString: z.ZodString;
|
|
1628
|
+
shipmentIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1629
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
1630
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
1631
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1632
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1633
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1634
|
+
}, "strip", z.ZodTypeAny, {
|
|
1635
|
+
sortDesc: boolean;
|
|
1636
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1637
|
+
}, {
|
|
1638
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1639
|
+
sortDesc?: boolean | undefined;
|
|
1640
|
+
}>, "many">>>;
|
|
1641
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1642
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1643
|
+
sort: {
|
|
1644
|
+
sortDesc: boolean;
|
|
1645
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1646
|
+
}[];
|
|
1647
|
+
searchString: string;
|
|
1648
|
+
isDiscontinued: boolean | null;
|
|
1649
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1650
|
+
productIds: number[];
|
|
1651
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1652
|
+
shipmentIds?: number[] | null | undefined;
|
|
1653
|
+
}, {
|
|
1654
|
+
searchString: string;
|
|
1655
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1656
|
+
productIds: number[];
|
|
1657
|
+
sort?: {
|
|
1658
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1659
|
+
sortDesc?: boolean | undefined;
|
|
1660
|
+
}[] | undefined;
|
|
1661
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1662
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1663
|
+
shipmentIds?: number[] | null | undefined;
|
|
1664
|
+
}>;
|
|
1665
|
+
}, "strip", z.ZodTypeAny, {
|
|
1666
|
+
filters: {
|
|
1667
|
+
sort: {
|
|
1668
|
+
sortDesc: boolean;
|
|
1669
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1670
|
+
}[];
|
|
1671
|
+
searchString: string;
|
|
1672
|
+
isDiscontinued: boolean | null;
|
|
1673
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1674
|
+
productIds: number[];
|
|
1675
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1676
|
+
shipmentIds?: number[] | null | undefined;
|
|
1677
|
+
};
|
|
1678
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
1679
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1680
|
+
}, {
|
|
1681
|
+
filters: {
|
|
1682
|
+
searchString: string;
|
|
1683
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1684
|
+
productIds: number[];
|
|
1685
|
+
sort?: {
|
|
1686
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1687
|
+
sortDesc?: boolean | undefined;
|
|
1688
|
+
}[] | undefined;
|
|
1689
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1690
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1691
|
+
shipmentIds?: number[] | null | undefined;
|
|
1692
|
+
};
|
|
1693
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
1694
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1695
|
+
}>, z.ZodObject<{
|
|
1696
|
+
reportType: z.ZodLiteral<ExcelExportReportType.cbedDeficitList>;
|
|
1697
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
|
|
1698
|
+
filters: z.ZodObject<Omit<{
|
|
1699
|
+
cbedIds: z.ZodArray<z.ZodNumber, "many">;
|
|
1700
|
+
page: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
1701
|
+
statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
|
|
1702
|
+
searchString: z.ZodString;
|
|
1703
|
+
shipmentIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1704
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
1705
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1706
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1707
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1708
|
+
}, "strip", z.ZodTypeAny, {
|
|
1709
|
+
sortDesc: boolean;
|
|
1710
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1711
|
+
}, {
|
|
1712
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1713
|
+
sortDesc?: boolean | undefined;
|
|
1714
|
+
}>, "many">>>;
|
|
1715
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1716
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1717
|
+
sort: {
|
|
1718
|
+
sortDesc: boolean;
|
|
1719
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1720
|
+
}[];
|
|
1721
|
+
searchString: string;
|
|
1722
|
+
isDiscontinued: boolean | null;
|
|
1723
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1724
|
+
cbedIds: number[];
|
|
1725
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1726
|
+
shipmentIds?: number[] | null | undefined;
|
|
1727
|
+
}, {
|
|
1728
|
+
searchString: string;
|
|
1729
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1730
|
+
cbedIds: number[];
|
|
1731
|
+
sort?: {
|
|
1732
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1733
|
+
sortDesc?: boolean | undefined;
|
|
1734
|
+
}[] | undefined;
|
|
1735
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1736
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1737
|
+
shipmentIds?: number[] | null | undefined;
|
|
1738
|
+
}>;
|
|
1739
|
+
}, "strip", z.ZodTypeAny, {
|
|
1740
|
+
filters: {
|
|
1741
|
+
sort: {
|
|
1742
|
+
sortDesc: boolean;
|
|
1743
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1744
|
+
}[];
|
|
1745
|
+
searchString: string;
|
|
1746
|
+
isDiscontinued: boolean | null;
|
|
1747
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1748
|
+
cbedIds: number[];
|
|
1749
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1750
|
+
shipmentIds?: number[] | null | undefined;
|
|
1751
|
+
};
|
|
1752
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
1753
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1754
|
+
}, {
|
|
1755
|
+
filters: {
|
|
1756
|
+
searchString: string;
|
|
1757
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1758
|
+
cbedIds: number[];
|
|
1759
|
+
sort?: {
|
|
1760
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1761
|
+
sortDesc?: boolean | undefined;
|
|
1762
|
+
}[] | undefined;
|
|
1763
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1764
|
+
isDiscontinued?: boolean | null | undefined;
|
|
1765
|
+
shipmentIds?: number[] | null | undefined;
|
|
1766
|
+
};
|
|
1767
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
1768
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1769
|
+
}>, z.ZodObject<{
|
|
1770
|
+
reportType: z.ZodLiteral<ExcelExportReportType.detalDeficitList>;
|
|
1771
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]>;
|
|
1772
|
+
filters: z.ZodObject<Omit<{
|
|
1773
|
+
detalIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1774
|
+
statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
|
|
1775
|
+
searchString: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1776
|
+
shipmentIds: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>>;
|
|
1777
|
+
page: z.ZodNumber;
|
|
1778
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1779
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1780
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1781
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1782
|
+
}, "strip", z.ZodTypeAny, {
|
|
1783
|
+
sortDesc: boolean;
|
|
1784
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1785
|
+
}, {
|
|
1786
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1787
|
+
sortDesc?: boolean | undefined;
|
|
1788
|
+
}>, "many">>>;
|
|
1789
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1790
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1791
|
+
sort: {
|
|
1792
|
+
sortDesc: boolean;
|
|
1793
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1794
|
+
}[];
|
|
1795
|
+
searchString: string;
|
|
1796
|
+
isDiscontinued: boolean;
|
|
1797
|
+
detalIds: number[];
|
|
1798
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1799
|
+
shipmentIds: number[] | null;
|
|
1800
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1801
|
+
}, {
|
|
1802
|
+
sort?: {
|
|
1803
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1804
|
+
sortDesc?: boolean | undefined;
|
|
1805
|
+
}[] | undefined;
|
|
1806
|
+
searchString?: string | undefined;
|
|
1807
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1808
|
+
isDiscontinued?: boolean | undefined;
|
|
1809
|
+
detalIds?: number[] | undefined;
|
|
1810
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1811
|
+
shipmentIds?: number[] | null | undefined;
|
|
1812
|
+
}>;
|
|
1813
|
+
}, "strip", z.ZodTypeAny, {
|
|
1814
|
+
filters: {
|
|
1815
|
+
sort: {
|
|
1816
|
+
sortDesc: boolean;
|
|
1817
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1818
|
+
}[];
|
|
1819
|
+
searchString: string;
|
|
1820
|
+
isDiscontinued: boolean;
|
|
1821
|
+
detalIds: number[];
|
|
1822
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1823
|
+
shipmentIds: number[] | null;
|
|
1824
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1825
|
+
};
|
|
1826
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
1827
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
1828
|
+
}, {
|
|
1829
|
+
filters: {
|
|
1830
|
+
sort?: {
|
|
1831
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1832
|
+
sortDesc?: boolean | undefined;
|
|
1833
|
+
}[] | undefined;
|
|
1834
|
+
searchString?: string | undefined;
|
|
1835
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1836
|
+
isDiscontinued?: boolean | undefined;
|
|
1837
|
+
detalIds?: number[] | undefined;
|
|
1838
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1839
|
+
shipmentIds?: number[] | null | undefined;
|
|
1840
|
+
};
|
|
1841
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
1842
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
1843
|
+
}>, z.ZodObject<{
|
|
1844
|
+
reportType: z.ZodLiteral<ExcelExportReportType.materialDeficitList>;
|
|
1845
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>, "many">, ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[], ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]>;
|
|
1846
|
+
filters: z.ZodObject<Omit<{
|
|
1847
|
+
materialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1848
|
+
typeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1849
|
+
subTypeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1850
|
+
statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
|
|
1851
|
+
searchString: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1852
|
+
shipmentIds: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>>;
|
|
1853
|
+
page: z.ZodNumber;
|
|
1854
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1855
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../material").MaterialDeficitSortField>>>;
|
|
1856
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1857
|
+
}, "strip", z.ZodTypeAny, {
|
|
1858
|
+
sortDesc: boolean;
|
|
1859
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1860
|
+
}, {
|
|
1861
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1862
|
+
sortDesc?: boolean | undefined;
|
|
1863
|
+
}>, "many">>>;
|
|
1864
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1865
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
1866
|
+
sort: {
|
|
1867
|
+
sortDesc: boolean;
|
|
1868
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1869
|
+
}[];
|
|
1870
|
+
searchString: string;
|
|
1871
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1872
|
+
shipmentIds: number[] | null;
|
|
1873
|
+
materialIds: number[];
|
|
1874
|
+
typeMaterialIds: number[];
|
|
1875
|
+
subTypeMaterialIds: number[];
|
|
1876
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1877
|
+
}, {
|
|
1878
|
+
sort?: {
|
|
1879
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1880
|
+
sortDesc?: boolean | undefined;
|
|
1881
|
+
}[] | undefined;
|
|
1882
|
+
searchString?: string | undefined;
|
|
1883
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1884
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1885
|
+
shipmentIds?: number[] | null | undefined;
|
|
1886
|
+
materialIds?: number[] | undefined;
|
|
1887
|
+
typeMaterialIds?: number[] | undefined;
|
|
1888
|
+
subTypeMaterialIds?: number[] | undefined;
|
|
1889
|
+
}>;
|
|
1890
|
+
}, "strip", z.ZodTypeAny, {
|
|
1891
|
+
filters: {
|
|
1892
|
+
sort: {
|
|
1893
|
+
sortDesc: boolean;
|
|
1894
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1895
|
+
}[];
|
|
1896
|
+
searchString: string;
|
|
1897
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
1898
|
+
shipmentIds: number[] | null;
|
|
1899
|
+
materialIds: number[];
|
|
1900
|
+
typeMaterialIds: number[];
|
|
1901
|
+
subTypeMaterialIds: number[];
|
|
1902
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1903
|
+
};
|
|
1904
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
1905
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1906
|
+
}, {
|
|
1907
|
+
filters: {
|
|
1908
|
+
sort?: {
|
|
1909
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1910
|
+
sortDesc?: boolean | undefined;
|
|
1911
|
+
}[] | undefined;
|
|
1912
|
+
searchString?: string | undefined;
|
|
1913
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1914
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
1915
|
+
shipmentIds?: number[] | null | undefined;
|
|
1916
|
+
materialIds?: number[] | undefined;
|
|
1917
|
+
typeMaterialIds?: number[] | undefined;
|
|
1918
|
+
subTypeMaterialIds?: number[] | undefined;
|
|
1919
|
+
};
|
|
1920
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
1921
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1922
|
+
}>]>;
|
|
1923
|
+
export declare const CreateExcelExportDtoZod: z.ZodEffects<z.ZodObject<{
|
|
1924
|
+
reportType: z.ZodNativeEnum<typeof ExcelExportReportType>;
|
|
1925
|
+
columns: z.ZodOptional<z.ZodArray<z.ZodString, "many">>;
|
|
1926
|
+
filters: z.ZodObject<{}, "passthrough", z.ZodTypeAny, z.objectOutputType<{}, z.ZodTypeAny, "passthrough">, z.objectInputType<{}, z.ZodTypeAny, "passthrough">>;
|
|
1927
|
+
}, "strip", z.ZodTypeAny, {
|
|
1928
|
+
filters: {} & {
|
|
1929
|
+
[k: string]: unknown;
|
|
1930
|
+
};
|
|
1931
|
+
reportType: ExcelExportReportType;
|
|
1932
|
+
columns?: string[] | undefined;
|
|
1933
|
+
}, {
|
|
1934
|
+
filters: {} & {
|
|
1935
|
+
[k: string]: unknown;
|
|
1936
|
+
};
|
|
1937
|
+
reportType: ExcelExportReportType;
|
|
1938
|
+
columns?: string[] | undefined;
|
|
1939
|
+
}>, {
|
|
1940
|
+
filters: {} & {
|
|
1941
|
+
[k: string]: unknown;
|
|
1072
1942
|
};
|
|
1073
1943
|
reportType: ExcelExportReportType;
|
|
1074
1944
|
columns?: string[] | undefined;
|
|
@@ -1155,57 +2025,395 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
|
|
|
1155
2025
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1156
2026
|
sortDesc?: boolean | undefined;
|
|
1157
2027
|
}[] | undefined;
|
|
1158
|
-
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1159
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1160
|
-
notOrderedByProductionTask?: boolean | null | undefined;
|
|
1161
|
-
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
2028
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2029
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2030
|
+
notOrderedByProductionTask?: boolean | null | undefined;
|
|
2031
|
+
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
2032
|
+
}>;
|
|
2033
|
+
}, "strip", z.ZodTypeAny, {
|
|
2034
|
+
filters: {
|
|
2035
|
+
type: import("..").AssembleIzdEnum;
|
|
2036
|
+
sort: {
|
|
2037
|
+
sortDesc: boolean;
|
|
2038
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2039
|
+
}[];
|
|
2040
|
+
searchString: string;
|
|
2041
|
+
responsibleUserId: number | null;
|
|
2042
|
+
isBan: boolean;
|
|
2043
|
+
sortReadines: import("..").SortReadinesEnum;
|
|
2044
|
+
onlyCanComplect: boolean;
|
|
2045
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2046
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2047
|
+
notOrderedByProductionTask?: boolean | null | undefined;
|
|
2048
|
+
};
|
|
2049
|
+
reportType: ExcelExportReportType.assemblyList;
|
|
2050
|
+
columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
|
|
2051
|
+
}, {
|
|
2052
|
+
filters: {
|
|
2053
|
+
searchString: string;
|
|
2054
|
+
responsibleUserId: number | null;
|
|
2055
|
+
isBan: boolean;
|
|
2056
|
+
onlyCanComplect: boolean;
|
|
2057
|
+
type?: import("..").AssembleIzdEnum | undefined;
|
|
2058
|
+
sort?: {
|
|
2059
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2060
|
+
sortDesc?: boolean | undefined;
|
|
2061
|
+
}[] | undefined;
|
|
2062
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2063
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2064
|
+
notOrderedByProductionTask?: boolean | null | undefined;
|
|
2065
|
+
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
2066
|
+
};
|
|
2067
|
+
reportType: ExcelExportReportType.assemblyList;
|
|
2068
|
+
columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
|
|
2069
|
+
}>, z.ZodObject<{
|
|
2070
|
+
reportType: z.ZodLiteral<ExcelExportReportType.assemblyOperationList>;
|
|
2071
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor", ...("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[]]>, "many">, ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[], ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[]>;
|
|
2072
|
+
filters: z.ZodObject<Omit<{
|
|
2073
|
+
page: z.ZodNumber;
|
|
2074
|
+
operationId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
|
|
2075
|
+
searchString: z.ZodString;
|
|
2076
|
+
status: z.ZodNativeEnum<typeof import("..").AssembleStatus>;
|
|
2077
|
+
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
2078
|
+
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
2079
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2080
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
2081
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2082
|
+
}, "strip", z.ZodTypeAny, {
|
|
2083
|
+
sortDesc: boolean;
|
|
2084
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2085
|
+
}, {
|
|
2086
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2087
|
+
sortDesc?: boolean | undefined;
|
|
2088
|
+
}>, "many">>>;
|
|
2089
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
2090
|
+
sort: {
|
|
2091
|
+
sortDesc: boolean;
|
|
2092
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2093
|
+
}[];
|
|
2094
|
+
status: import("..").AssembleStatus;
|
|
2095
|
+
operationId: number | null;
|
|
2096
|
+
searchString: string;
|
|
2097
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2098
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2099
|
+
}, {
|
|
2100
|
+
status: import("..").AssembleStatus;
|
|
2101
|
+
searchString: string;
|
|
2102
|
+
sort?: {
|
|
2103
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2104
|
+
sortDesc?: boolean | undefined;
|
|
2105
|
+
}[] | undefined;
|
|
2106
|
+
operationId?: number | null | undefined;
|
|
2107
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2108
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2109
|
+
}>;
|
|
2110
|
+
}, "strip", z.ZodTypeAny, {
|
|
2111
|
+
filters: {
|
|
2112
|
+
sort: {
|
|
2113
|
+
sortDesc: boolean;
|
|
2114
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2115
|
+
}[];
|
|
2116
|
+
status: import("..").AssembleStatus;
|
|
2117
|
+
operationId: number | null;
|
|
2118
|
+
searchString: string;
|
|
2119
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2120
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2121
|
+
};
|
|
2122
|
+
reportType: ExcelExportReportType.assemblyOperationList;
|
|
2123
|
+
columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
|
|
2124
|
+
}, {
|
|
2125
|
+
filters: {
|
|
2126
|
+
status: import("..").AssembleStatus;
|
|
2127
|
+
searchString: string;
|
|
2128
|
+
sort?: {
|
|
2129
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2130
|
+
sortDesc?: boolean | undefined;
|
|
2131
|
+
}[] | undefined;
|
|
2132
|
+
operationId?: number | null | undefined;
|
|
2133
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2134
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2135
|
+
};
|
|
2136
|
+
reportType: ExcelExportReportType.assemblyOperationList;
|
|
2137
|
+
columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
|
|
2138
|
+
}>, z.ZodObject<{
|
|
2139
|
+
reportType: z.ZodLiteral<ExcelExportReportType.operationPath>;
|
|
2140
|
+
columns: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent", ...("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[]]>, "many">, ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[], ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[]>>;
|
|
2141
|
+
filters: z.ZodObject<{
|
|
2142
|
+
sourceType: z.ZodNativeEnum<typeof OperationPathExcelExportSourceType>;
|
|
2143
|
+
sourceId: z.ZodNumber;
|
|
2144
|
+
}, "strip", z.ZodTypeAny, {
|
|
2145
|
+
sourceType: OperationPathExcelExportSourceType;
|
|
2146
|
+
sourceId: number;
|
|
2147
|
+
}, {
|
|
2148
|
+
sourceType: OperationPathExcelExportSourceType;
|
|
2149
|
+
sourceId: number;
|
|
2150
|
+
}>;
|
|
2151
|
+
}, "strip", z.ZodTypeAny, {
|
|
2152
|
+
filters: {
|
|
2153
|
+
sourceType: OperationPathExcelExportSourceType;
|
|
2154
|
+
sourceId: number;
|
|
2155
|
+
};
|
|
2156
|
+
reportType: ExcelExportReportType.operationPath;
|
|
2157
|
+
columns?: ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[] | undefined;
|
|
2158
|
+
}, {
|
|
2159
|
+
filters: {
|
|
2160
|
+
sourceType: OperationPathExcelExportSourceType;
|
|
2161
|
+
sourceId: number;
|
|
2162
|
+
};
|
|
2163
|
+
reportType: ExcelExportReportType.operationPath;
|
|
2164
|
+
columns?: ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[] | undefined;
|
|
2165
|
+
}>, z.ZodObject<{
|
|
2166
|
+
reportType: z.ZodLiteral<ExcelExportReportType.assemblyStockOrderList>;
|
|
2167
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad", ...("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[]]>, "many">, ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[], ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[]>;
|
|
2168
|
+
filters: z.ZodObject<Omit<{
|
|
2169
|
+
page: z.ZodNumber;
|
|
2170
|
+
searchString: z.ZodString;
|
|
2171
|
+
responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2172
|
+
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
2173
|
+
type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").AssembleIzdEnum>>>>;
|
|
2174
|
+
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
2175
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
2176
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
2177
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2178
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
2179
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2180
|
+
}, "strip", z.ZodTypeAny, {
|
|
2181
|
+
sortDesc: boolean;
|
|
2182
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2183
|
+
}, {
|
|
2184
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2185
|
+
sortDesc?: boolean | undefined;
|
|
2186
|
+
}>, "many">>>;
|
|
2187
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
2188
|
+
type: import("..").AssembleIzdEnum | null;
|
|
2189
|
+
sort: {
|
|
2190
|
+
sortDesc: boolean;
|
|
2191
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2192
|
+
}[];
|
|
2193
|
+
searchString: string;
|
|
2194
|
+
isDiscontinued: boolean | null;
|
|
2195
|
+
responsibleUserId?: number | null | undefined;
|
|
2196
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2197
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2198
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2199
|
+
}, {
|
|
2200
|
+
searchString: string;
|
|
2201
|
+
type?: import("..").AssembleIzdEnum | null | undefined;
|
|
2202
|
+
sort?: {
|
|
2203
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2204
|
+
sortDesc?: boolean | undefined;
|
|
2205
|
+
}[] | undefined;
|
|
2206
|
+
responsibleUserId?: number | null | undefined;
|
|
2207
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2208
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2209
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2210
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2211
|
+
}>;
|
|
2212
|
+
}, "strip", z.ZodTypeAny, {
|
|
2213
|
+
filters: {
|
|
2214
|
+
type: import("..").AssembleIzdEnum | null;
|
|
2215
|
+
sort: {
|
|
2216
|
+
sortDesc: boolean;
|
|
2217
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2218
|
+
}[];
|
|
2219
|
+
searchString: string;
|
|
2220
|
+
isDiscontinued: boolean | null;
|
|
2221
|
+
responsibleUserId?: number | null | undefined;
|
|
2222
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2223
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2224
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2225
|
+
};
|
|
2226
|
+
reportType: ExcelExportReportType.assemblyStockOrderList;
|
|
2227
|
+
columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
|
|
2228
|
+
}, {
|
|
2229
|
+
filters: {
|
|
2230
|
+
searchString: string;
|
|
2231
|
+
type?: import("..").AssembleIzdEnum | null | undefined;
|
|
2232
|
+
sort?: {
|
|
2233
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2234
|
+
sortDesc?: boolean | undefined;
|
|
2235
|
+
}[] | undefined;
|
|
2236
|
+
responsibleUserId?: number | null | undefined;
|
|
2237
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2238
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2239
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2240
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2241
|
+
};
|
|
2242
|
+
reportType: ExcelExportReportType.assemblyStockOrderList;
|
|
2243
|
+
columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
|
|
2244
|
+
}>, z.ZodObject<{
|
|
2245
|
+
reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingList>;
|
|
2246
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste", ...("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[]]>, "many">, ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[], ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[]>;
|
|
2247
|
+
filters: z.ZodObject<Omit<{
|
|
2248
|
+
page: z.ZodNumber;
|
|
2249
|
+
responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2250
|
+
metalloworkingID: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
2251
|
+
searchString: z.ZodString;
|
|
2252
|
+
isBan: z.ZodBoolean;
|
|
2253
|
+
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
2254
|
+
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
2255
|
+
childrenByProductionTaskIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
2256
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
2257
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
2258
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2259
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
2260
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2261
|
+
}, "strip", z.ZodTypeAny, {
|
|
2262
|
+
sortDesc: boolean;
|
|
2263
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2264
|
+
}, {
|
|
2265
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2266
|
+
sortDesc?: boolean | undefined;
|
|
2267
|
+
}>, "many">>>;
|
|
2268
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
2269
|
+
sort: {
|
|
2270
|
+
sortDesc: boolean;
|
|
2271
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2272
|
+
}[];
|
|
2273
|
+
searchString: string;
|
|
2274
|
+
isBan: boolean;
|
|
2275
|
+
isDiscontinued: boolean | null;
|
|
2276
|
+
responsibleUserId?: number | null | undefined;
|
|
2277
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2278
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2279
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2280
|
+
childrenByProductionTaskIds?: number[] | null | undefined;
|
|
2281
|
+
metalloworkingID?: number | null | undefined;
|
|
2282
|
+
}, {
|
|
2283
|
+
searchString: string;
|
|
2284
|
+
isBan: boolean;
|
|
2285
|
+
sort?: {
|
|
2286
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2287
|
+
sortDesc?: boolean | undefined;
|
|
2288
|
+
}[] | undefined;
|
|
2289
|
+
responsibleUserId?: number | null | undefined;
|
|
2290
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2291
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2292
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2293
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2294
|
+
childrenByProductionTaskIds?: number[] | null | undefined;
|
|
2295
|
+
metalloworkingID?: number | null | undefined;
|
|
2296
|
+
}>;
|
|
2297
|
+
}, "strip", z.ZodTypeAny, {
|
|
2298
|
+
filters: {
|
|
2299
|
+
sort: {
|
|
2300
|
+
sortDesc: boolean;
|
|
2301
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2302
|
+
}[];
|
|
2303
|
+
searchString: string;
|
|
2304
|
+
isBan: boolean;
|
|
2305
|
+
isDiscontinued: boolean | null;
|
|
2306
|
+
responsibleUserId?: number | null | undefined;
|
|
2307
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2308
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2309
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2310
|
+
childrenByProductionTaskIds?: number[] | null | undefined;
|
|
2311
|
+
metalloworkingID?: number | null | undefined;
|
|
2312
|
+
};
|
|
2313
|
+
reportType: ExcelExportReportType.metalloworkingList;
|
|
2314
|
+
columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
|
|
2315
|
+
}, {
|
|
2316
|
+
filters: {
|
|
2317
|
+
searchString: string;
|
|
2318
|
+
isBan: boolean;
|
|
2319
|
+
sort?: {
|
|
2320
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2321
|
+
sortDesc?: boolean | undefined;
|
|
2322
|
+
}[] | undefined;
|
|
2323
|
+
responsibleUserId?: number | null | undefined;
|
|
2324
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2325
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2326
|
+
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
2327
|
+
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
2328
|
+
childrenByProductionTaskIds?: number[] | null | undefined;
|
|
2329
|
+
metalloworkingID?: number | null | undefined;
|
|
2330
|
+
};
|
|
2331
|
+
reportType: ExcelExportReportType.metalloworkingList;
|
|
2332
|
+
columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
|
|
2333
|
+
}>, z.ZodObject<{
|
|
2334
|
+
reportType: z.ZodLiteral<ExcelExportReportType.productDeficitList>;
|
|
2335
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
|
|
2336
|
+
filters: z.ZodObject<Omit<{
|
|
2337
|
+
productIds: z.ZodArray<z.ZodNumber, "many">;
|
|
2338
|
+
statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
|
|
2339
|
+
searchString: z.ZodString;
|
|
2340
|
+
shipmentIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
2341
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
2342
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
2343
|
+
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
2344
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
2345
|
+
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2346
|
+
}, "strip", z.ZodTypeAny, {
|
|
2347
|
+
sortDesc: boolean;
|
|
2348
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2349
|
+
}, {
|
|
2350
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2351
|
+
sortDesc?: boolean | undefined;
|
|
2352
|
+
}>, "many">>>;
|
|
2353
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
2354
|
+
}, "page">, "strip", z.ZodTypeAny, {
|
|
2355
|
+
sort: {
|
|
2356
|
+
sortDesc: boolean;
|
|
2357
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2358
|
+
}[];
|
|
2359
|
+
searchString: string;
|
|
2360
|
+
isDiscontinued: boolean | null;
|
|
2361
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2362
|
+
productIds: number[];
|
|
2363
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2364
|
+
shipmentIds?: number[] | null | undefined;
|
|
2365
|
+
}, {
|
|
2366
|
+
searchString: string;
|
|
2367
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2368
|
+
productIds: number[];
|
|
2369
|
+
sort?: {
|
|
2370
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2371
|
+
sortDesc?: boolean | undefined;
|
|
2372
|
+
}[] | undefined;
|
|
2373
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2374
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2375
|
+
shipmentIds?: number[] | null | undefined;
|
|
1162
2376
|
}>;
|
|
1163
2377
|
}, "strip", z.ZodTypeAny, {
|
|
1164
2378
|
filters: {
|
|
1165
|
-
type: import("..").AssembleIzdEnum;
|
|
1166
2379
|
sort: {
|
|
1167
2380
|
sortDesc: boolean;
|
|
1168
2381
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1169
2382
|
}[];
|
|
1170
2383
|
searchString: string;
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1177
|
-
notOrderedByProductionTask?: boolean | null | undefined;
|
|
2384
|
+
isDiscontinued: boolean | null;
|
|
2385
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2386
|
+
productIds: number[];
|
|
2387
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2388
|
+
shipmentIds?: number[] | null | undefined;
|
|
1178
2389
|
};
|
|
1179
|
-
reportType: ExcelExportReportType.
|
|
1180
|
-
columns: ("number" | "
|
|
2390
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
2391
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1181
2392
|
}, {
|
|
1182
2393
|
filters: {
|
|
1183
2394
|
searchString: string;
|
|
1184
|
-
|
|
1185
|
-
|
|
1186
|
-
onlyCanComplect: boolean;
|
|
1187
|
-
type?: import("..").AssembleIzdEnum | undefined;
|
|
2395
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2396
|
+
productIds: number[];
|
|
1188
2397
|
sort?: {
|
|
1189
2398
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1190
2399
|
sortDesc?: boolean | undefined;
|
|
1191
2400
|
}[] | undefined;
|
|
1192
|
-
|
|
1193
|
-
|
|
1194
|
-
|
|
1195
|
-
sortReadines?: import("..").SortReadinesEnum | undefined;
|
|
2401
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2402
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2403
|
+
shipmentIds?: number[] | null | undefined;
|
|
1196
2404
|
};
|
|
1197
|
-
reportType: ExcelExportReportType.
|
|
1198
|
-
columns: ("number" | "
|
|
2405
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
2406
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1199
2407
|
}>, z.ZodObject<{
|
|
1200
|
-
reportType: z.ZodLiteral<ExcelExportReportType.
|
|
1201
|
-
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "
|
|
2408
|
+
reportType: z.ZodLiteral<ExcelExportReportType.cbedDeficitList>;
|
|
2409
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
|
|
1202
2410
|
filters: z.ZodObject<Omit<{
|
|
1203
|
-
|
|
1204
|
-
|
|
2411
|
+
cbedIds: z.ZodArray<z.ZodNumber, "many">;
|
|
2412
|
+
page: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
|
|
2413
|
+
statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
|
|
1205
2414
|
searchString: z.ZodString;
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
2415
|
+
shipmentIds: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber, "many">>>;
|
|
2416
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
1209
2417
|
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1210
2418
|
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1211
2419
|
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1216,26 +2424,29 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
|
|
|
1216
2424
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1217
2425
|
sortDesc?: boolean | undefined;
|
|
1218
2426
|
}>, "many">>>;
|
|
2427
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1219
2428
|
}, "page">, "strip", z.ZodTypeAny, {
|
|
1220
2429
|
sort: {
|
|
1221
2430
|
sortDesc: boolean;
|
|
1222
2431
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1223
2432
|
}[];
|
|
1224
|
-
status: import("..").AssembleStatus;
|
|
1225
|
-
operationId: number | null;
|
|
1226
2433
|
searchString: string;
|
|
1227
|
-
|
|
1228
|
-
|
|
2434
|
+
isDiscontinued: boolean | null;
|
|
2435
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2436
|
+
cbedIds: number[];
|
|
2437
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2438
|
+
shipmentIds?: number[] | null | undefined;
|
|
1229
2439
|
}, {
|
|
1230
|
-
status: import("..").AssembleStatus;
|
|
1231
2440
|
searchString: string;
|
|
2441
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2442
|
+
cbedIds: number[];
|
|
1232
2443
|
sort?: {
|
|
1233
2444
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1234
2445
|
sortDesc?: boolean | undefined;
|
|
1235
2446
|
}[] | undefined;
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
2447
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2448
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2449
|
+
shipmentIds?: number[] | null | undefined;
|
|
1239
2450
|
}>;
|
|
1240
2451
|
}, "strip", z.ZodTypeAny, {
|
|
1241
2452
|
filters: {
|
|
@@ -1243,67 +2454,40 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
|
|
|
1243
2454
|
sortDesc: boolean;
|
|
1244
2455
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1245
2456
|
}[];
|
|
1246
|
-
status: import("..").AssembleStatus;
|
|
1247
|
-
operationId: number | null;
|
|
1248
2457
|
searchString: string;
|
|
1249
|
-
|
|
1250
|
-
|
|
2458
|
+
isDiscontinued: boolean | null;
|
|
2459
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2460
|
+
cbedIds: number[];
|
|
2461
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2462
|
+
shipmentIds?: number[] | null | undefined;
|
|
1251
2463
|
};
|
|
1252
|
-
reportType: ExcelExportReportType.
|
|
1253
|
-
columns: ("number" | "
|
|
2464
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
2465
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1254
2466
|
}, {
|
|
1255
2467
|
filters: {
|
|
1256
|
-
status: import("..").AssembleStatus;
|
|
1257
2468
|
searchString: string;
|
|
2469
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2470
|
+
cbedIds: number[];
|
|
1258
2471
|
sort?: {
|
|
1259
2472
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1260
2473
|
sortDesc?: boolean | undefined;
|
|
1261
2474
|
}[] | undefined;
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
};
|
|
1266
|
-
reportType: ExcelExportReportType.assemblyOperationList;
|
|
1267
|
-
columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
|
|
1268
|
-
}>, z.ZodObject<{
|
|
1269
|
-
reportType: z.ZodLiteral<ExcelExportReportType.operationPath>;
|
|
1270
|
-
columns: z.ZodOptional<z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent", ...("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[]]>, "many">, ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[], ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[]>>;
|
|
1271
|
-
filters: z.ZodObject<{
|
|
1272
|
-
sourceType: z.ZodNativeEnum<typeof OperationPathExcelExportSourceType>;
|
|
1273
|
-
sourceId: z.ZodNumber;
|
|
1274
|
-
}, "strip", z.ZodTypeAny, {
|
|
1275
|
-
sourceType: OperationPathExcelExportSourceType;
|
|
1276
|
-
sourceId: number;
|
|
1277
|
-
}, {
|
|
1278
|
-
sourceType: OperationPathExcelExportSourceType;
|
|
1279
|
-
sourceId: number;
|
|
1280
|
-
}>;
|
|
1281
|
-
}, "strip", z.ZodTypeAny, {
|
|
1282
|
-
filters: {
|
|
1283
|
-
sourceType: OperationPathExcelExportSourceType;
|
|
1284
|
-
sourceId: number;
|
|
1285
|
-
};
|
|
1286
|
-
reportType: ExcelExportReportType.operationPath;
|
|
1287
|
-
columns?: ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[] | undefined;
|
|
1288
|
-
}, {
|
|
1289
|
-
filters: {
|
|
1290
|
-
sourceType: OperationPathExcelExportSourceType;
|
|
1291
|
-
sourceId: number;
|
|
2475
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2476
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2477
|
+
shipmentIds?: number[] | null | undefined;
|
|
1292
2478
|
};
|
|
1293
|
-
reportType: ExcelExportReportType.
|
|
1294
|
-
columns
|
|
2479
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
2480
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
1295
2481
|
}>, z.ZodObject<{
|
|
1296
|
-
reportType: z.ZodLiteral<ExcelExportReportType.
|
|
1297
|
-
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "
|
|
2482
|
+
reportType: z.ZodLiteral<ExcelExportReportType.detalDeficitList>;
|
|
2483
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]>;
|
|
1298
2484
|
filters: z.ZodObject<Omit<{
|
|
2485
|
+
detalIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
2486
|
+
statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
|
|
2487
|
+
searchString: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2488
|
+
shipmentIds: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>>;
|
|
1299
2489
|
page: z.ZodNumber;
|
|
1300
|
-
|
|
1301
|
-
responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1302
|
-
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
1303
|
-
type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").AssembleIzdEnum>>>>;
|
|
1304
|
-
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
1305
|
-
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
1306
|
-
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
2490
|
+
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1307
2491
|
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1308
2492
|
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
|
|
1309
2493
|
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
@@ -1314,152 +2498,139 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
|
|
|
1314
2498
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1315
2499
|
sortDesc?: boolean | undefined;
|
|
1316
2500
|
}>, "many">>>;
|
|
2501
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1317
2502
|
}, "page">, "strip", z.ZodTypeAny, {
|
|
1318
|
-
type: import("..").AssembleIzdEnum | null;
|
|
1319
2503
|
sort: {
|
|
1320
2504
|
sortDesc: boolean;
|
|
1321
2505
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1322
2506
|
}[];
|
|
1323
2507
|
searchString: string;
|
|
1324
|
-
isDiscontinued: boolean
|
|
1325
|
-
|
|
2508
|
+
isDiscontinued: boolean;
|
|
2509
|
+
detalIds: number[];
|
|
2510
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2511
|
+
shipmentIds: number[] | null;
|
|
1326
2512
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1327
|
-
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1328
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1329
2513
|
}, {
|
|
1330
|
-
searchString: string;
|
|
1331
|
-
type?: import("..").AssembleIzdEnum | null | undefined;
|
|
1332
2514
|
sort?: {
|
|
1333
2515
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1334
2516
|
sortDesc?: boolean | undefined;
|
|
1335
2517
|
}[] | undefined;
|
|
1336
|
-
|
|
2518
|
+
searchString?: string | undefined;
|
|
1337
2519
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1338
|
-
isDiscontinued?: boolean |
|
|
1339
|
-
|
|
1340
|
-
|
|
2520
|
+
isDiscontinued?: boolean | undefined;
|
|
2521
|
+
detalIds?: number[] | undefined;
|
|
2522
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
2523
|
+
shipmentIds?: number[] | null | undefined;
|
|
1341
2524
|
}>;
|
|
1342
2525
|
}, "strip", z.ZodTypeAny, {
|
|
1343
2526
|
filters: {
|
|
1344
|
-
type: import("..").AssembleIzdEnum | null;
|
|
1345
2527
|
sort: {
|
|
1346
2528
|
sortDesc: boolean;
|
|
1347
2529
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1348
2530
|
}[];
|
|
1349
2531
|
searchString: string;
|
|
1350
|
-
isDiscontinued: boolean
|
|
1351
|
-
|
|
2532
|
+
isDiscontinued: boolean;
|
|
2533
|
+
detalIds: number[];
|
|
2534
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2535
|
+
shipmentIds: number[] | null;
|
|
1352
2536
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1353
|
-
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1354
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1355
2537
|
};
|
|
1356
|
-
reportType: ExcelExportReportType.
|
|
1357
|
-
columns: ("number" | "
|
|
2538
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
2539
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
1358
2540
|
}, {
|
|
1359
2541
|
filters: {
|
|
1360
|
-
searchString: string;
|
|
1361
|
-
type?: import("..").AssembleIzdEnum | null | undefined;
|
|
1362
2542
|
sort?: {
|
|
1363
2543
|
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
1364
2544
|
sortDesc?: boolean | undefined;
|
|
1365
2545
|
}[] | undefined;
|
|
1366
|
-
|
|
2546
|
+
searchString?: string | undefined;
|
|
1367
2547
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1368
|
-
isDiscontinued?: boolean |
|
|
1369
|
-
|
|
1370
|
-
|
|
2548
|
+
isDiscontinued?: boolean | undefined;
|
|
2549
|
+
detalIds?: number[] | undefined;
|
|
2550
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
2551
|
+
shipmentIds?: number[] | null | undefined;
|
|
1371
2552
|
};
|
|
1372
|
-
reportType: ExcelExportReportType.
|
|
1373
|
-
columns: ("number" | "
|
|
2553
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
2554
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
1374
2555
|
}>, z.ZodObject<{
|
|
1375
|
-
reportType: z.ZodLiteral<ExcelExportReportType.
|
|
1376
|
-
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "
|
|
2556
|
+
reportType: z.ZodLiteral<ExcelExportReportType.materialDeficitList>;
|
|
2557
|
+
columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>, "many">, ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[], ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]>;
|
|
1377
2558
|
filters: z.ZodObject<Omit<{
|
|
2559
|
+
materialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
2560
|
+
typeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
2561
|
+
subTypeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
2562
|
+
statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
|
|
2563
|
+
searchString: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2564
|
+
shipmentIds: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>>;
|
|
1378
2565
|
page: z.ZodNumber;
|
|
1379
|
-
responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1380
|
-
metalloworkingID: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1381
|
-
searchString: z.ZodString;
|
|
1382
|
-
isBan: z.ZodBoolean;
|
|
1383
|
-
byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
|
|
1384
|
-
byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
|
|
1385
|
-
childrenByProductionTaskIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
|
|
1386
|
-
isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
|
|
1387
|
-
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1388
2566
|
sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1389
|
-
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("
|
|
2567
|
+
sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("../material").MaterialDeficitSortField>>>;
|
|
1390
2568
|
sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1391
2569
|
}, "strip", z.ZodTypeAny, {
|
|
1392
2570
|
sortDesc: boolean;
|
|
1393
|
-
sortField?: import("
|
|
2571
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1394
2572
|
}, {
|
|
1395
|
-
sortField?: import("
|
|
2573
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1396
2574
|
sortDesc?: boolean | undefined;
|
|
1397
2575
|
}>, "many">>>;
|
|
2576
|
+
warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
|
|
1398
2577
|
}, "page">, "strip", z.ZodTypeAny, {
|
|
1399
2578
|
sort: {
|
|
1400
2579
|
sortDesc: boolean;
|
|
1401
|
-
sortField?: import("
|
|
2580
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1402
2581
|
}[];
|
|
1403
2582
|
searchString: string;
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
2583
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2584
|
+
shipmentIds: number[] | null;
|
|
2585
|
+
materialIds: number[];
|
|
2586
|
+
typeMaterialIds: number[];
|
|
2587
|
+
subTypeMaterialIds: number[];
|
|
1407
2588
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1408
|
-
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1409
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1410
|
-
childrenByProductionTaskIds?: number[] | null | undefined;
|
|
1411
|
-
metalloworkingID?: number | null | undefined;
|
|
1412
2589
|
}, {
|
|
1413
|
-
searchString: string;
|
|
1414
|
-
isBan: boolean;
|
|
1415
2590
|
sort?: {
|
|
1416
|
-
sortField?: import("
|
|
2591
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1417
2592
|
sortDesc?: boolean | undefined;
|
|
1418
2593
|
}[] | undefined;
|
|
1419
|
-
|
|
2594
|
+
searchString?: string | undefined;
|
|
1420
2595
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
|
|
1424
|
-
|
|
1425
|
-
|
|
2596
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
2597
|
+
shipmentIds?: number[] | null | undefined;
|
|
2598
|
+
materialIds?: number[] | undefined;
|
|
2599
|
+
typeMaterialIds?: number[] | undefined;
|
|
2600
|
+
subTypeMaterialIds?: number[] | undefined;
|
|
1426
2601
|
}>;
|
|
1427
2602
|
}, "strip", z.ZodTypeAny, {
|
|
1428
2603
|
filters: {
|
|
1429
2604
|
sort: {
|
|
1430
2605
|
sortDesc: boolean;
|
|
1431
|
-
sortField?: import("
|
|
2606
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1432
2607
|
}[];
|
|
1433
2608
|
searchString: string;
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
2609
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2610
|
+
shipmentIds: number[] | null;
|
|
2611
|
+
materialIds: number[];
|
|
2612
|
+
typeMaterialIds: number[];
|
|
2613
|
+
subTypeMaterialIds: number[];
|
|
1437
2614
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1438
|
-
byParents?: import("..").IFiltersByParents | null | undefined;
|
|
1439
|
-
byOrder?: import("..").IFiltersByByOrder | null | undefined;
|
|
1440
|
-
childrenByProductionTaskIds?: number[] | null | undefined;
|
|
1441
|
-
metalloworkingID?: number | null | undefined;
|
|
1442
2615
|
};
|
|
1443
|
-
reportType: ExcelExportReportType.
|
|
1444
|
-
columns: ("number" | "
|
|
2616
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
2617
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1445
2618
|
}, {
|
|
1446
2619
|
filters: {
|
|
1447
|
-
searchString: string;
|
|
1448
|
-
isBan: boolean;
|
|
1449
2620
|
sort?: {
|
|
1450
|
-
sortField?: import("
|
|
2621
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
1451
2622
|
sortDesc?: boolean | undefined;
|
|
1452
2623
|
}[] | undefined;
|
|
1453
|
-
|
|
2624
|
+
searchString?: string | undefined;
|
|
1454
2625
|
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
2626
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
2627
|
+
shipmentIds?: number[] | null | undefined;
|
|
2628
|
+
materialIds?: number[] | undefined;
|
|
2629
|
+
typeMaterialIds?: number[] | undefined;
|
|
2630
|
+
subTypeMaterialIds?: number[] | undefined;
|
|
1460
2631
|
};
|
|
1461
|
-
reportType: ExcelExportReportType.
|
|
1462
|
-
columns: ("number" | "
|
|
2632
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
2633
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1463
2634
|
}>]>;
|
|
1464
2635
|
}, "strip", z.ZodTypeAny, {
|
|
1465
2636
|
userId: number;
|
|
@@ -1536,6 +2707,67 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
|
|
|
1536
2707
|
};
|
|
1537
2708
|
reportType: ExcelExportReportType.assemblyStockOrderList;
|
|
1538
2709
|
columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
|
|
2710
|
+
} | {
|
|
2711
|
+
filters: {
|
|
2712
|
+
sort: {
|
|
2713
|
+
sortDesc: boolean;
|
|
2714
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2715
|
+
}[];
|
|
2716
|
+
searchString: string;
|
|
2717
|
+
isDiscontinued: boolean | null;
|
|
2718
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2719
|
+
productIds: number[];
|
|
2720
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2721
|
+
shipmentIds?: number[] | null | undefined;
|
|
2722
|
+
};
|
|
2723
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
2724
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
2725
|
+
} | {
|
|
2726
|
+
filters: {
|
|
2727
|
+
sort: {
|
|
2728
|
+
sortDesc: boolean;
|
|
2729
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2730
|
+
}[];
|
|
2731
|
+
searchString: string;
|
|
2732
|
+
isDiscontinued: boolean | null;
|
|
2733
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2734
|
+
cbedIds: number[];
|
|
2735
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2736
|
+
shipmentIds?: number[] | null | undefined;
|
|
2737
|
+
};
|
|
2738
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
2739
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
2740
|
+
} | {
|
|
2741
|
+
filters: {
|
|
2742
|
+
sort: {
|
|
2743
|
+
sortDesc: boolean;
|
|
2744
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2745
|
+
}[];
|
|
2746
|
+
searchString: string;
|
|
2747
|
+
isDiscontinued: boolean;
|
|
2748
|
+
detalIds: number[];
|
|
2749
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2750
|
+
shipmentIds: number[] | null;
|
|
2751
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2752
|
+
};
|
|
2753
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
2754
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
2755
|
+
} | {
|
|
2756
|
+
filters: {
|
|
2757
|
+
sort: {
|
|
2758
|
+
sortDesc: boolean;
|
|
2759
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
2760
|
+
}[];
|
|
2761
|
+
searchString: string;
|
|
2762
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2763
|
+
shipmentIds: number[] | null;
|
|
2764
|
+
materialIds: number[];
|
|
2765
|
+
typeMaterialIds: number[];
|
|
2766
|
+
subTypeMaterialIds: number[];
|
|
2767
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2768
|
+
};
|
|
2769
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
2770
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1539
2771
|
};
|
|
1540
2772
|
}, {
|
|
1541
2773
|
userId: number;
|
|
@@ -1612,6 +2844,67 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
|
|
|
1612
2844
|
};
|
|
1613
2845
|
reportType: ExcelExportReportType.assemblyStockOrderList;
|
|
1614
2846
|
columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
|
|
2847
|
+
} | {
|
|
2848
|
+
filters: {
|
|
2849
|
+
searchString: string;
|
|
2850
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2851
|
+
productIds: number[];
|
|
2852
|
+
sort?: {
|
|
2853
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2854
|
+
sortDesc?: boolean | undefined;
|
|
2855
|
+
}[] | undefined;
|
|
2856
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2857
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2858
|
+
shipmentIds?: number[] | null | undefined;
|
|
2859
|
+
};
|
|
2860
|
+
reportType: ExcelExportReportType.productDeficitList;
|
|
2861
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
2862
|
+
} | {
|
|
2863
|
+
filters: {
|
|
2864
|
+
searchString: string;
|
|
2865
|
+
statusWorking: import("..").statusWorkingsDeficit;
|
|
2866
|
+
cbedIds: number[];
|
|
2867
|
+
sort?: {
|
|
2868
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2869
|
+
sortDesc?: boolean | undefined;
|
|
2870
|
+
}[] | undefined;
|
|
2871
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2872
|
+
isDiscontinued?: boolean | null | undefined;
|
|
2873
|
+
shipmentIds?: number[] | null | undefined;
|
|
2874
|
+
};
|
|
2875
|
+
reportType: ExcelExportReportType.cbedDeficitList;
|
|
2876
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
|
|
2877
|
+
} | {
|
|
2878
|
+
filters: {
|
|
2879
|
+
sort?: {
|
|
2880
|
+
sortField?: import("..").ProductionPlanSortField | null | undefined;
|
|
2881
|
+
sortDesc?: boolean | undefined;
|
|
2882
|
+
}[] | undefined;
|
|
2883
|
+
searchString?: string | undefined;
|
|
2884
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2885
|
+
isDiscontinued?: boolean | undefined;
|
|
2886
|
+
detalIds?: number[] | undefined;
|
|
2887
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
2888
|
+
shipmentIds?: number[] | null | undefined;
|
|
2889
|
+
};
|
|
2890
|
+
reportType: ExcelExportReportType.detalDeficitList;
|
|
2891
|
+
columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
|
|
2892
|
+
} | {
|
|
2893
|
+
filters: {
|
|
2894
|
+
sort?: {
|
|
2895
|
+
sortField?: import("../material").MaterialDeficitSortField | null | undefined;
|
|
2896
|
+
sortDesc?: boolean | undefined;
|
|
2897
|
+
}[] | undefined;
|
|
2898
|
+
searchString?: string | undefined;
|
|
2899
|
+
warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
|
|
2900
|
+
statusWorking?: import("..").statusWorkingsDeficit | undefined;
|
|
2901
|
+
shipmentIds?: number[] | null | undefined;
|
|
2902
|
+
materialIds?: number[] | undefined;
|
|
2903
|
+
typeMaterialIds?: number[] | undefined;
|
|
2904
|
+
subTypeMaterialIds?: number[] | undefined;
|
|
2905
|
+
};
|
|
2906
|
+
reportType: ExcelExportReportType.materialDeficitList;
|
|
2907
|
+
columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
|
|
1615
2908
|
};
|
|
1616
2909
|
}>;
|
|
1617
2910
|
export declare const ExcelExportResultSchema: z.ZodObject<{
|
|
@@ -1635,12 +2928,20 @@ export type MetalloworkingExcelExportColumn = z.infer<typeof MetalloworkingExcel
|
|
|
1635
2928
|
export type AssemblyOperationExcelExportColumn = z.infer<typeof AssemblyOperationExcelExportColumnSchema>;
|
|
1636
2929
|
export type OperationPathExcelExportColumn = z.infer<typeof OperationPathExcelExportColumnSchema>;
|
|
1637
2930
|
export type AssemblyStockOrderExcelExportColumn = z.infer<typeof AssemblyStockOrderExcelExportColumnSchema>;
|
|
2931
|
+
export type ProductDeficitExcelExportColumn = z.infer<typeof ProductDeficitExcelExportColumnSchema>;
|
|
2932
|
+
export type CbedDeficitExcelExportColumn = z.infer<typeof CbedDeficitExcelExportColumnSchema>;
|
|
2933
|
+
export type DetalDeficitExcelExportColumn = z.infer<typeof DetalDeficitExcelExportColumnSchema>;
|
|
2934
|
+
export type MaterialDeficitExcelExportColumn = z.infer<typeof MaterialDeficitExcelExportColumnSchema>;
|
|
1638
2935
|
export type CreateExcelExportDtoZodType = z.infer<typeof CreateExcelExportRequestSchema>;
|
|
1639
2936
|
export type CreateAssemblyExcelExportDtoZodType = z.infer<typeof CreateAssemblyExcelExportDtoZod>;
|
|
1640
2937
|
export type CreateMetalloworkingExcelExportDtoZodType = z.infer<typeof CreateMetalloworkingExcelExportDtoZod>;
|
|
1641
2938
|
export type CreateAssemblyOperationExcelExportDtoZodType = z.infer<typeof CreateAssemblyOperationExcelExportDtoZod>;
|
|
1642
2939
|
export type CreateOperationPathExcelExportDtoZodType = z.infer<typeof CreateOperationPathExcelExportDtoZod>;
|
|
1643
2940
|
export type CreateAssemblyStockOrderExcelExportDtoZodType = z.infer<typeof CreateAssemblyStockOrderExcelExportDtoZod>;
|
|
2941
|
+
export type CreateProductDeficitExcelExportDtoZodType = z.infer<typeof CreateProductDeficitExcelExportDtoZod>;
|
|
2942
|
+
export type CreateCbedDeficitExcelExportDtoZodType = z.infer<typeof CreateCbedDeficitExcelExportDtoZod>;
|
|
2943
|
+
export type CreateDetalDeficitExcelExportDtoZodType = z.infer<typeof CreateDetalDeficitExcelExportDtoZod>;
|
|
2944
|
+
export type CreateMaterialDeficitExcelExportDtoZodType = z.infer<typeof CreateMaterialDeficitExcelExportDtoZod>;
|
|
1644
2945
|
export type ExcelExportCreated = z.infer<typeof ExcelExportCreatedSchema>;
|
|
1645
2946
|
export type ExcelExportStatusType = z.infer<typeof ExcelExportStatusSchema>;
|
|
1646
2947
|
export type ExcelExportJobData = z.infer<typeof ExcelExportJobDataSchema>;
|
|
@@ -1651,6 +2952,7 @@ export type ExcelExportColumnValueResolvers<TColumn extends string, TItem> = Rec
|
|
|
1651
2952
|
export interface ExcelExportPage<TItem> {
|
|
1652
2953
|
count: number;
|
|
1653
2954
|
rows: TItem[];
|
|
2955
|
+
sourceRowCount?: number;
|
|
1654
2956
|
}
|
|
1655
2957
|
export interface TableExcelExportOptions<TColumn extends string, TItem> {
|
|
1656
2958
|
jobId: string;
|