@pksep/zod-shared 0.0.562 → 0.0.563

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.
@@ -5,6 +5,10 @@ export declare enum ExcelExportReportType {
5
5
  operationPath = "production.operation-path",
6
6
  assemblyStockOrderList = "assembly.stock-order-list",
7
7
  metalloworkingList = "metalloworking.list",
8
+ metalloworkingOperationList = "metalloworking.operation-list",
9
+ metalloworkingComplectationList = "metalloworking.complectation-list",
10
+ metalloworkingStockOrderList = "metalloworking.stock-order-list",
11
+ resultWorkList = "production.result-work-list",
8
12
  productDeficitList = "warehouse.product-deficit-list",
9
13
  cbedDeficitList = "warehouse.cbed-deficit-list",
10
14
  detalDeficitList = "warehouse.detal-deficit-list",
@@ -147,6 +151,302 @@ export declare const MetalloworkingExcelExportColumnDefinitions: {
147
151
  readonly width: 22;
148
152
  };
149
153
  };
154
+ export declare const MetalloworkingOperationExcelExportColumnDefinitions: {
155
+ readonly number: {
156
+ readonly header: "№";
157
+ readonly width: 8;
158
+ };
159
+ readonly image: {
160
+ readonly header: "Изображение";
161
+ readonly width: 20;
162
+ };
163
+ readonly designation: {
164
+ readonly header: "Обозначение";
165
+ readonly width: 24;
166
+ };
167
+ readonly name: {
168
+ readonly header: "Наименование";
169
+ readonly width: 40;
170
+ };
171
+ readonly count: {
172
+ readonly header: "Заказано на складе";
173
+ readonly width: 20;
174
+ };
175
+ readonly orderedByProduction: {
176
+ readonly header: "Заказано по ПЗ";
177
+ readonly width: 18;
178
+ };
179
+ readonly childrenCalculateNeedsTime: {
180
+ readonly header: "Готовность к комплектации";
181
+ readonly width: 25;
182
+ };
183
+ readonly calculatedCreateTime: {
184
+ readonly header: "Требуемое время готовности";
185
+ readonly width: 25;
186
+ };
187
+ readonly calculateNeedsTime: {
188
+ readonly header: "Расчётная дата изготовления";
189
+ readonly width: 26;
190
+ };
191
+ readonly parametrs: {
192
+ readonly header: "Параметры заготовки";
193
+ readonly width: 28;
194
+ };
195
+ readonly workpiece: {
196
+ readonly header: "Заготовка";
197
+ readonly width: 35;
198
+ };
199
+ readonly prevOperation: {
200
+ readonly header: "Предыдущая операция";
201
+ readonly width: 35;
202
+ };
203
+ readonly status: {
204
+ readonly header: "Статус";
205
+ readonly width: 18;
206
+ };
207
+ readonly complited: {
208
+ readonly header: "Сделано, шт";
209
+ readonly width: 16;
210
+ };
211
+ readonly remaining: {
212
+ readonly header: "Осталось, шт";
213
+ readonly width: 16;
214
+ };
215
+ readonly standartTime: {
216
+ readonly header: "Норма времени, ч/мин";
217
+ readonly width: 22;
218
+ };
219
+ readonly dataExecution: {
220
+ readonly header: "Дата исполнения";
221
+ readonly width: 20;
222
+ };
223
+ readonly executer: {
224
+ readonly header: "Исполнитель";
225
+ readonly width: 24;
226
+ };
227
+ readonly worked: {
228
+ readonly header: "Отработано, ч/мин";
229
+ readonly width: 21;
230
+ };
231
+ readonly nextOperation: {
232
+ readonly header: "Следующая операция";
233
+ readonly width: 35;
234
+ };
235
+ };
236
+ export declare const MetalloworkingComplectationExcelExportColumnDefinitions: {
237
+ readonly number: {
238
+ readonly header: "№";
239
+ readonly width: 8;
240
+ };
241
+ readonly image: {
242
+ readonly header: "Изображение";
243
+ readonly width: 20;
244
+ };
245
+ readonly designation: {
246
+ readonly header: "Обозначение";
247
+ readonly width: 24;
248
+ };
249
+ readonly name: {
250
+ readonly header: "Наименование";
251
+ readonly width: 40;
252
+ };
253
+ readonly count: {
254
+ readonly header: "Заказано на складе";
255
+ readonly width: 20;
256
+ };
257
+ readonly orderedByProduction: {
258
+ readonly header: "Заказано по ПЗ";
259
+ readonly width: 18;
260
+ };
261
+ readonly childrenCalculateNeedsTime: {
262
+ readonly header: "Готовность к комплектации";
263
+ readonly width: 25;
264
+ };
265
+ readonly calculatedCreateTime: {
266
+ readonly header: "Требуемое время готовности";
267
+ readonly width: 25;
268
+ };
269
+ readonly calculateNeedsTime: {
270
+ readonly header: "Расчётная дата изготовления";
271
+ readonly width: 26;
272
+ };
273
+ readonly parametrs: {
274
+ readonly header: "Параметры заготовки";
275
+ readonly width: 28;
276
+ };
277
+ readonly workpiece: {
278
+ readonly header: "Заготовка";
279
+ readonly width: 35;
280
+ };
281
+ readonly prevOperation: {
282
+ readonly header: "Предыдущая операция";
283
+ readonly width: 35;
284
+ };
285
+ readonly status: {
286
+ readonly header: "Статус";
287
+ readonly width: 18;
288
+ };
289
+ readonly complited: {
290
+ readonly header: "Сделано, шт";
291
+ readonly width: 16;
292
+ };
293
+ readonly remaining: {
294
+ readonly header: "Осталось, шт";
295
+ readonly width: 16;
296
+ };
297
+ readonly startTimeDelay: {
298
+ readonly header: "Просрочка начала работ, ч";
299
+ readonly width: 24;
300
+ };
301
+ readonly standartTime: {
302
+ readonly header: "Норма времени, ч/мин";
303
+ readonly width: 22;
304
+ };
305
+ readonly dataExecution: {
306
+ readonly header: "Дата исполнения";
307
+ readonly width: 20;
308
+ };
309
+ readonly executer: {
310
+ readonly header: "Исполнитель";
311
+ readonly width: 24;
312
+ };
313
+ readonly worked: {
314
+ readonly header: "Отработано, ч/мин";
315
+ readonly width: 21;
316
+ };
317
+ readonly nextOperation: {
318
+ readonly header: "Следующая операция";
319
+ readonly width: 35;
320
+ };
321
+ };
322
+ export declare const MetalloworkingStockOrderExcelExportColumnDefinitions: {
323
+ readonly number: {
324
+ readonly header: "№";
325
+ readonly width: 8;
326
+ };
327
+ readonly image: {
328
+ readonly header: "Изображение";
329
+ readonly width: 20;
330
+ };
331
+ readonly designation: {
332
+ readonly header: "Обозначение";
333
+ readonly width: 24;
334
+ };
335
+ readonly name: {
336
+ readonly header: "Наименование";
337
+ readonly width: 40;
338
+ };
339
+ readonly orderedByProduction: {
340
+ readonly header: "Заказано по ПЗ";
341
+ readonly width: 18;
342
+ };
343
+ readonly ordered: {
344
+ readonly header: "Заказано";
345
+ readonly width: 16;
346
+ };
347
+ readonly calculatedNeedTime: {
348
+ readonly header: "Расчётная дата изготовления";
349
+ readonly width: 26;
350
+ };
351
+ readonly warehouseReadinessDate: {
352
+ readonly header: "Дата плановой готовности склада";
353
+ readonly width: 28;
354
+ };
355
+ readonly complectataionReadiness: {
356
+ readonly header: "Готовность к комплектации";
357
+ readonly width: 25;
358
+ };
359
+ readonly requiredDate: {
360
+ readonly header: "Требуемое время готовности";
361
+ readonly width: 25;
362
+ };
363
+ readonly delayProduction: {
364
+ readonly header: "Просрочка изготовления, ч";
365
+ readonly width: 25;
366
+ };
367
+ readonly demand: {
368
+ readonly header: "Потребность по заказам склада";
369
+ readonly width: 28;
370
+ };
371
+ readonly minRemainingDeficit: {
372
+ readonly header: "Дефицит с учетом минимального остатка";
373
+ readonly width: 32;
374
+ };
375
+ readonly countOnWarehouse: {
376
+ readonly header: "Кол-во";
377
+ readonly width: 14;
378
+ };
379
+ };
380
+ export declare const ResultWorkExcelExportColumnDefinitions: {
381
+ readonly number: {
382
+ readonly header: "№";
383
+ readonly width: 8;
384
+ };
385
+ readonly tabelNumber: {
386
+ readonly header: "Табельный номер";
387
+ readonly width: 18;
388
+ };
389
+ readonly employee: {
390
+ readonly header: "Сотрудник";
391
+ readonly width: 25;
392
+ };
393
+ readonly date: {
394
+ readonly header: "Дата";
395
+ readonly width: 15;
396
+ };
397
+ readonly operation: {
398
+ readonly header: "Операция";
399
+ readonly width: 40;
400
+ };
401
+ readonly image: {
402
+ readonly header: "Изображение";
403
+ readonly width: 20;
404
+ };
405
+ readonly type: {
406
+ readonly header: "Тип";
407
+ readonly width: 10;
408
+ };
409
+ readonly designation: {
410
+ readonly header: "Обозначение";
411
+ readonly width: 24;
412
+ };
413
+ readonly name: {
414
+ readonly header: "Наименование";
415
+ readonly width: 40;
416
+ };
417
+ readonly quantity: {
418
+ readonly header: "Количество";
419
+ readonly width: 15;
420
+ };
421
+ readonly oneItemPreTime: {
422
+ readonly header: "За 1 шт.: Подготовительное время, н-ч/мин";
423
+ readonly width: 29;
424
+ };
425
+ readonly oneItemAuxTime: {
426
+ readonly header: "За 1 шт.: Вспомогательное время, н-ч/мин";
427
+ readonly width: 29;
428
+ };
429
+ readonly oneItemMachTime: {
430
+ readonly header: "За 1 шт.: Машинное время, н-ч/мин";
431
+ readonly width: 27;
432
+ };
433
+ readonly batchPreTime: {
434
+ readonly header: "За партию: Подготовительное время, н-ч/мин";
435
+ readonly width: 29;
436
+ };
437
+ readonly batchAuxTime: {
438
+ readonly header: "За партию: Вспомогательное время, н-ч/мин";
439
+ readonly width: 29;
440
+ };
441
+ readonly batchMachTime: {
442
+ readonly header: "За партию: Машинное время, н-ч/мин";
443
+ readonly width: 27;
444
+ };
445
+ readonly allTime: {
446
+ readonly header: "Всего, н-ч/мин";
447
+ readonly width: 20;
448
+ };
449
+ };
150
450
  export declare const AssemblyOperationExcelExportColumnDefinitions: {
151
451
  readonly number: {
152
452
  readonly header: "№";
@@ -595,13 +895,17 @@ export declare const MaterialDeficitExcelExportColumnDefinitions: {
595
895
  };
596
896
  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")[]]>;
597
897
  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")[]]>;
898
+ export declare const MetalloworkingOperationExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>;
899
+ export declare const MetalloworkingComplectationExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>;
900
+ export declare const MetalloworkingStockOrderExcelExportColumnSchema: z.ZodEnum<["number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse", ...("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[]]>;
901
+ export declare const ResultWorkExcelExportColumnSchema: z.ZodEnum<["number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime", ...("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[]]>;
598
902
  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")[]]>;
599
903
  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")[]]>;
600
904
  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")[]]>;
905
+ export declare const ProductDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>;
906
+ export declare const CbedDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>;
907
+ export declare const DetalDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>;
908
+ export declare const MaterialDeficitExcelExportColumnSchema: z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>;
605
909
  export declare const CreateAssemblyExcelExportDtoZod: z.ZodObject<{
606
910
  reportType: z.ZodLiteral<ExcelExportReportType.assemblyList>;
607
911
  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")[]>;
@@ -782,16 +1086,16 @@ export declare const CreateMetalloworkingExcelExportDtoZod: z.ZodObject<{
782
1086
  reportType: ExcelExportReportType.metalloworkingList;
783
1087
  columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
784
1088
  }>;
785
- export declare const CreateAssemblyOperationExcelExportDtoZod: z.ZodObject<{
786
- reportType: z.ZodLiteral<ExcelExportReportType.assemblyOperationList>;
787
- 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")[]>;
1089
+ export declare const CreateMetalloworkingOperationExcelExportDtoZod: z.ZodObject<{
1090
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingOperationList>;
1091
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>, "many">, ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[], ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]>;
788
1092
  filters: z.ZodObject<Omit<{
789
1093
  page: z.ZodNumber;
790
- operationId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
1094
+ operationId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
791
1095
  searchString: z.ZodString;
792
- status: z.ZodNativeEnum<typeof import("..").AssembleStatus>;
793
- byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
1096
+ status: z.ZodNativeEnum<typeof import("..").MetalloworkingStatus>;
794
1097
  byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
1098
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
795
1099
  sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
796
1100
  sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
797
1101
  sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -807,13 +1111,13 @@ export declare const CreateAssemblyOperationExcelExportDtoZod: z.ZodObject<{
807
1111
  sortDesc: boolean;
808
1112
  sortField?: import("..").ProductionPlanSortField | null | undefined;
809
1113
  }[];
810
- status: import("..").AssembleStatus;
1114
+ status: import("..").MetalloworkingStatus;
811
1115
  operationId: number | null;
812
1116
  searchString: string;
813
1117
  byParents?: import("..").IFiltersByParents | null | undefined;
814
1118
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
815
1119
  }, {
816
- status: import("..").AssembleStatus;
1120
+ status: import("..").MetalloworkingStatus;
817
1121
  searchString: string;
818
1122
  sort?: {
819
1123
  sortField?: import("..").ProductionPlanSortField | null | undefined;
@@ -829,17 +1133,17 @@ export declare const CreateAssemblyOperationExcelExportDtoZod: z.ZodObject<{
829
1133
  sortDesc: boolean;
830
1134
  sortField?: import("..").ProductionPlanSortField | null | undefined;
831
1135
  }[];
832
- status: import("..").AssembleStatus;
1136
+ status: import("..").MetalloworkingStatus;
833
1137
  operationId: number | null;
834
1138
  searchString: string;
835
1139
  byParents?: import("..").IFiltersByParents | null | undefined;
836
1140
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
837
1141
  };
838
- reportType: ExcelExportReportType.assemblyOperationList;
839
- columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
1142
+ reportType: ExcelExportReportType.metalloworkingOperationList;
1143
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
840
1144
  }, {
841
1145
  filters: {
842
- status: import("..").AssembleStatus;
1146
+ status: import("..").MetalloworkingStatus;
843
1147
  searchString: string;
844
1148
  sort?: {
845
1149
  sortField?: import("..").ProductionPlanSortField | null | undefined;
@@ -849,19 +1153,288 @@ export declare const CreateAssemblyOperationExcelExportDtoZod: z.ZodObject<{
849
1153
  byParents?: import("..").IFiltersByParents | null | undefined;
850
1154
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
851
1155
  };
852
- reportType: ExcelExportReportType.assemblyOperationList;
853
- columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
1156
+ reportType: ExcelExportReportType.metalloworkingOperationList;
1157
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
854
1158
  }>;
855
- export declare const CreateOperationPathExcelExportDtoZod: z.ZodObject<{
856
- reportType: z.ZodLiteral<ExcelExportReportType.operationPath>;
857
- 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")[]>>;
858
- filters: z.ZodObject<{
859
- sourceType: z.ZodNativeEnum<typeof OperationPathExcelExportSourceType>;
860
- sourceId: z.ZodNumber;
861
- }, "strip", z.ZodTypeAny, {
862
- sourceType: OperationPathExcelExportSourceType;
863
- sourceId: number;
864
- }, {
1159
+ export declare const CreateMetalloworkingComplectationExcelExportDtoZod: z.ZodObject<{
1160
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingComplectationList>;
1161
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>, "many">, ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[], ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]>;
1162
+ filters: z.ZodObject<Omit<{
1163
+ page: z.ZodNumber;
1164
+ operationId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
1165
+ searchString: z.ZodString;
1166
+ status: z.ZodNativeEnum<typeof import("..").MetalloworkingStatus>;
1167
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
1168
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
1169
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1170
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
1171
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1172
+ }, "strip", z.ZodTypeAny, {
1173
+ sortDesc: boolean;
1174
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1175
+ }, {
1176
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1177
+ sortDesc?: boolean | undefined;
1178
+ }>, "many">>>;
1179
+ }, "page">, "strip", z.ZodTypeAny, {
1180
+ sort: {
1181
+ sortDesc: boolean;
1182
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1183
+ }[];
1184
+ status: import("..").MetalloworkingStatus;
1185
+ operationId: number | null;
1186
+ searchString: string;
1187
+ byParents?: import("..").IFiltersByParents | null | undefined;
1188
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1189
+ }, {
1190
+ status: import("..").MetalloworkingStatus;
1191
+ searchString: string;
1192
+ sort?: {
1193
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1194
+ sortDesc?: boolean | undefined;
1195
+ }[] | undefined;
1196
+ operationId?: number | null | undefined;
1197
+ byParents?: import("..").IFiltersByParents | null | undefined;
1198
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1199
+ }>;
1200
+ }, "strip", z.ZodTypeAny, {
1201
+ filters: {
1202
+ sort: {
1203
+ sortDesc: boolean;
1204
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1205
+ }[];
1206
+ status: import("..").MetalloworkingStatus;
1207
+ operationId: number | null;
1208
+ searchString: string;
1209
+ byParents?: import("..").IFiltersByParents | null | undefined;
1210
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1211
+ };
1212
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
1213
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
1214
+ }, {
1215
+ filters: {
1216
+ status: import("..").MetalloworkingStatus;
1217
+ searchString: string;
1218
+ sort?: {
1219
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1220
+ sortDesc?: boolean | undefined;
1221
+ }[] | undefined;
1222
+ operationId?: number | null | undefined;
1223
+ byParents?: import("..").IFiltersByParents | null | undefined;
1224
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1225
+ };
1226
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
1227
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
1228
+ }>;
1229
+ export declare const CreateMetalloworkingStockOrderExcelExportDtoZod: z.ZodObject<{
1230
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingStockOrderList>;
1231
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse", ...("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[]]>, "many">, ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[], ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[]>;
1232
+ filters: z.ZodObject<Omit<{
1233
+ page: z.ZodNumber;
1234
+ responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1235
+ metalloworkingID: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1236
+ searchString: z.ZodString;
1237
+ isBan: z.ZodBoolean;
1238
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
1239
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
1240
+ childrenByProductionTaskIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
1241
+ isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
1242
+ warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
1243
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1244
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
1245
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1246
+ }, "strip", z.ZodTypeAny, {
1247
+ sortDesc: boolean;
1248
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1249
+ }, {
1250
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1251
+ sortDesc?: boolean | undefined;
1252
+ }>, "many">>>;
1253
+ }, "page">, "strip", z.ZodTypeAny, {
1254
+ sort: {
1255
+ sortDesc: boolean;
1256
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1257
+ }[];
1258
+ searchString: string;
1259
+ isBan: boolean;
1260
+ isDiscontinued: boolean | null;
1261
+ responsibleUserId?: number | null | undefined;
1262
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1263
+ byParents?: import("..").IFiltersByParents | null | undefined;
1264
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1265
+ childrenByProductionTaskIds?: number[] | null | undefined;
1266
+ metalloworkingID?: number | null | undefined;
1267
+ }, {
1268
+ searchString: string;
1269
+ isBan: boolean;
1270
+ sort?: {
1271
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1272
+ sortDesc?: boolean | undefined;
1273
+ }[] | undefined;
1274
+ responsibleUserId?: number | null | undefined;
1275
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1276
+ isDiscontinued?: boolean | null | undefined;
1277
+ byParents?: import("..").IFiltersByParents | null | undefined;
1278
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1279
+ childrenByProductionTaskIds?: number[] | null | undefined;
1280
+ metalloworkingID?: number | null | undefined;
1281
+ }>;
1282
+ }, "strip", z.ZodTypeAny, {
1283
+ filters: {
1284
+ sort: {
1285
+ sortDesc: boolean;
1286
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1287
+ }[];
1288
+ searchString: string;
1289
+ isBan: boolean;
1290
+ isDiscontinued: boolean | null;
1291
+ responsibleUserId?: number | null | undefined;
1292
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1293
+ byParents?: import("..").IFiltersByParents | null | undefined;
1294
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1295
+ childrenByProductionTaskIds?: number[] | null | undefined;
1296
+ metalloworkingID?: number | null | undefined;
1297
+ };
1298
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
1299
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
1300
+ }, {
1301
+ filters: {
1302
+ searchString: string;
1303
+ isBan: boolean;
1304
+ sort?: {
1305
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1306
+ sortDesc?: boolean | undefined;
1307
+ }[] | undefined;
1308
+ responsibleUserId?: number | null | undefined;
1309
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1310
+ isDiscontinued?: boolean | null | undefined;
1311
+ byParents?: import("..").IFiltersByParents | null | undefined;
1312
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1313
+ childrenByProductionTaskIds?: number[] | null | undefined;
1314
+ metalloworkingID?: number | null | undefined;
1315
+ };
1316
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
1317
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
1318
+ }>;
1319
+ export declare const CreateResultWorkExcelExportDtoZod: z.ZodObject<{
1320
+ reportType: z.ZodLiteral<ExcelExportReportType.resultWorkList>;
1321
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime", ...("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[]]>, "many">, ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[], ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[]>;
1322
+ filters: z.ZodObject<Omit<{
1323
+ page: z.ZodNumber;
1324
+ responsibleUserIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
1325
+ selectTypeOperation: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
1326
+ searchString: z.ZodOptional<z.ZodString>;
1327
+ dateRange: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").DateRangeType, z.ZodTypeDef, import("..").DateRangeType>>>;
1328
+ }, "page">, "strip", z.ZodTypeAny, {
1329
+ responsibleUserIds?: number[] | undefined;
1330
+ selectTypeOperation?: number | null | undefined;
1331
+ searchString?: string | undefined;
1332
+ dateRange?: import("..").DateRangeType | null | undefined;
1333
+ }, {
1334
+ responsibleUserIds?: number[] | undefined;
1335
+ selectTypeOperation?: number | null | undefined;
1336
+ searchString?: string | undefined;
1337
+ dateRange?: import("..").DateRangeType | null | undefined;
1338
+ }>;
1339
+ }, "strip", z.ZodTypeAny, {
1340
+ filters: {
1341
+ responsibleUserIds?: number[] | undefined;
1342
+ selectTypeOperation?: number | null | undefined;
1343
+ searchString?: string | undefined;
1344
+ dateRange?: import("..").DateRangeType | null | undefined;
1345
+ };
1346
+ reportType: ExcelExportReportType.resultWorkList;
1347
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
1348
+ }, {
1349
+ filters: {
1350
+ responsibleUserIds?: number[] | undefined;
1351
+ selectTypeOperation?: number | null | undefined;
1352
+ searchString?: string | undefined;
1353
+ dateRange?: import("..").DateRangeType | null | undefined;
1354
+ };
1355
+ reportType: ExcelExportReportType.resultWorkList;
1356
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
1357
+ }>;
1358
+ export declare const CreateAssemblyOperationExcelExportDtoZod: z.ZodObject<{
1359
+ reportType: z.ZodLiteral<ExcelExportReportType.assemblyOperationList>;
1360
+ 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")[]>;
1361
+ filters: z.ZodObject<Omit<{
1362
+ page: z.ZodNumber;
1363
+ operationId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
1364
+ searchString: z.ZodString;
1365
+ status: z.ZodNativeEnum<typeof import("..").AssembleStatus>;
1366
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
1367
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
1368
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1369
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
1370
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
1371
+ }, "strip", z.ZodTypeAny, {
1372
+ sortDesc: boolean;
1373
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1374
+ }, {
1375
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1376
+ sortDesc?: boolean | undefined;
1377
+ }>, "many">>>;
1378
+ }, "page">, "strip", z.ZodTypeAny, {
1379
+ sort: {
1380
+ sortDesc: boolean;
1381
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1382
+ }[];
1383
+ status: import("..").AssembleStatus;
1384
+ operationId: number | null;
1385
+ searchString: string;
1386
+ byParents?: import("..").IFiltersByParents | null | undefined;
1387
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1388
+ }, {
1389
+ status: import("..").AssembleStatus;
1390
+ searchString: string;
1391
+ sort?: {
1392
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1393
+ sortDesc?: boolean | undefined;
1394
+ }[] | undefined;
1395
+ operationId?: number | null | undefined;
1396
+ byParents?: import("..").IFiltersByParents | null | undefined;
1397
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1398
+ }>;
1399
+ }, "strip", z.ZodTypeAny, {
1400
+ filters: {
1401
+ sort: {
1402
+ sortDesc: boolean;
1403
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1404
+ }[];
1405
+ status: import("..").AssembleStatus;
1406
+ operationId: number | null;
1407
+ searchString: string;
1408
+ byParents?: import("..").IFiltersByParents | null | undefined;
1409
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1410
+ };
1411
+ reportType: ExcelExportReportType.assemblyOperationList;
1412
+ columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
1413
+ }, {
1414
+ filters: {
1415
+ status: import("..").AssembleStatus;
1416
+ searchString: string;
1417
+ sort?: {
1418
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
1419
+ sortDesc?: boolean | undefined;
1420
+ }[] | undefined;
1421
+ operationId?: number | null | undefined;
1422
+ byParents?: import("..").IFiltersByParents | null | undefined;
1423
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1424
+ };
1425
+ reportType: ExcelExportReportType.assemblyOperationList;
1426
+ columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
1427
+ }>;
1428
+ export declare const CreateOperationPathExcelExportDtoZod: z.ZodObject<{
1429
+ reportType: z.ZodLiteral<ExcelExportReportType.operationPath>;
1430
+ 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")[]>>;
1431
+ filters: z.ZodObject<{
1432
+ sourceType: z.ZodNativeEnum<typeof OperationPathExcelExportSourceType>;
1433
+ sourceId: z.ZodNumber;
1434
+ }, "strip", z.ZodTypeAny, {
1435
+ sourceType: OperationPathExcelExportSourceType;
1436
+ sourceId: number;
1437
+ }, {
865
1438
  sourceType: OperationPathExcelExportSourceType;
866
1439
  sourceId: number;
867
1440
  }>;
@@ -962,7 +1535,7 @@ export declare const CreateAssemblyStockOrderExcelExportDtoZod: z.ZodObject<{
962
1535
  }>;
963
1536
  export declare const CreateProductDeficitExcelExportDtoZod: z.ZodObject<{
964
1537
  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")[]>;
1538
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
966
1539
  filters: z.ZodObject<Omit<{
967
1540
  productIds: z.ZodArray<z.ZodNumber, "many">;
968
1541
  statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
@@ -1018,7 +1591,7 @@ export declare const CreateProductDeficitExcelExportDtoZod: z.ZodObject<{
1018
1591
  shipmentIds?: number[] | null | undefined;
1019
1592
  };
1020
1593
  reportType: ExcelExportReportType.productDeficitList;
1021
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1594
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1022
1595
  }, {
1023
1596
  filters: {
1024
1597
  searchString: string;
@@ -1033,11 +1606,11 @@ export declare const CreateProductDeficitExcelExportDtoZod: z.ZodObject<{
1033
1606
  shipmentIds?: number[] | null | undefined;
1034
1607
  };
1035
1608
  reportType: ExcelExportReportType.productDeficitList;
1036
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1609
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1037
1610
  }>;
1038
1611
  export declare const CreateCbedDeficitExcelExportDtoZod: z.ZodObject<{
1039
1612
  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")[]>;
1613
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
1041
1614
  filters: z.ZodObject<Omit<{
1042
1615
  cbedIds: z.ZodArray<z.ZodNumber, "many">;
1043
1616
  page: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -1093,7 +1666,7 @@ export declare const CreateCbedDeficitExcelExportDtoZod: z.ZodObject<{
1093
1666
  shipmentIds?: number[] | null | undefined;
1094
1667
  };
1095
1668
  reportType: ExcelExportReportType.cbedDeficitList;
1096
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1669
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1097
1670
  }, {
1098
1671
  filters: {
1099
1672
  searchString: string;
@@ -1108,11 +1681,11 @@ export declare const CreateCbedDeficitExcelExportDtoZod: z.ZodObject<{
1108
1681
  shipmentIds?: number[] | null | undefined;
1109
1682
  };
1110
1683
  reportType: ExcelExportReportType.cbedDeficitList;
1111
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1684
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1112
1685
  }>;
1113
1686
  export declare const CreateDetalDeficitExcelExportDtoZod: z.ZodObject<{
1114
1687
  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")[]>;
1688
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]>;
1116
1689
  filters: z.ZodObject<Omit<{
1117
1690
  detalIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
1118
1691
  statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
@@ -1168,7 +1741,7 @@ export declare const CreateDetalDeficitExcelExportDtoZod: z.ZodObject<{
1168
1741
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1169
1742
  };
1170
1743
  reportType: ExcelExportReportType.detalDeficitList;
1171
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
1744
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
1172
1745
  }, {
1173
1746
  filters: {
1174
1747
  sort?: {
@@ -1183,11 +1756,11 @@ export declare const CreateDetalDeficitExcelExportDtoZod: z.ZodObject<{
1183
1756
  shipmentIds?: number[] | null | undefined;
1184
1757
  };
1185
1758
  reportType: ExcelExportReportType.detalDeficitList;
1186
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
1759
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
1187
1760
  }>;
1188
1761
  export declare const CreateMaterialDeficitExcelExportDtoZod: z.ZodObject<{
1189
1762
  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")[]>;
1763
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>, "many">, ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[], ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]>;
1191
1764
  filters: z.ZodObject<Omit<{
1192
1765
  materialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
1193
1766
  typeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -1247,7 +1820,7 @@ export declare const CreateMaterialDeficitExcelExportDtoZod: z.ZodObject<{
1247
1820
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1248
1821
  };
1249
1822
  reportType: ExcelExportReportType.materialDeficitList;
1250
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
1823
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
1251
1824
  }, {
1252
1825
  filters: {
1253
1826
  sort?: {
@@ -1263,7 +1836,7 @@ export declare const CreateMaterialDeficitExcelExportDtoZod: z.ZodObject<{
1263
1836
  subTypeMaterialIds?: number[] | undefined;
1264
1837
  };
1265
1838
  reportType: ExcelExportReportType.materialDeficitList;
1266
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
1839
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
1267
1840
  }>;
1268
1841
  export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"reportType", [z.ZodObject<{
1269
1842
  reportType: z.ZodLiteral<ExcelExportReportType.assemblyList>;
@@ -1619,15 +2192,15 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1619
2192
  reportType: ExcelExportReportType.metalloworkingList;
1620
2193
  columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
1621
2194
  }>, 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")[]>;
2195
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingOperationList>;
2196
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>, "many">, ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[], ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]>;
1624
2197
  filters: z.ZodObject<Omit<{
1625
- productIds: z.ZodArray<z.ZodNumber, "many">;
1626
- statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
2198
+ page: z.ZodNumber;
2199
+ operationId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
1627
2200
  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>>>;
2201
+ status: z.ZodNativeEnum<typeof import("..").MetalloworkingStatus>;
2202
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
2203
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
1631
2204
  sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1632
2205
  sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
1633
2206
  sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -1638,22 +2211,287 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1638
2211
  sortField?: import("..").ProductionPlanSortField | null | undefined;
1639
2212
  sortDesc?: boolean | undefined;
1640
2213
  }>, "many">>>;
1641
- warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
1642
2214
  }, "page">, "strip", z.ZodTypeAny, {
1643
2215
  sort: {
1644
2216
  sortDesc: boolean;
1645
2217
  sortField?: import("..").ProductionPlanSortField | null | undefined;
1646
2218
  }[];
2219
+ status: import("..").MetalloworkingStatus;
2220
+ operationId: number | null;
1647
2221
  searchString: string;
1648
- isDiscontinued: boolean | null;
1649
- statusWorking: import("..").statusWorkingsDeficit;
1650
- productIds: number[];
1651
- warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1652
- shipmentIds?: number[] | null | undefined;
2222
+ byParents?: import("..").IFiltersByParents | null | undefined;
2223
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
1653
2224
  }, {
2225
+ status: import("..").MetalloworkingStatus;
1654
2226
  searchString: string;
1655
- statusWorking: import("..").statusWorkingsDeficit;
1656
- productIds: number[];
2227
+ sort?: {
2228
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2229
+ sortDesc?: boolean | undefined;
2230
+ }[] | undefined;
2231
+ operationId?: number | null | undefined;
2232
+ byParents?: import("..").IFiltersByParents | null | undefined;
2233
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2234
+ }>;
2235
+ }, "strip", z.ZodTypeAny, {
2236
+ filters: {
2237
+ sort: {
2238
+ sortDesc: boolean;
2239
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2240
+ }[];
2241
+ status: import("..").MetalloworkingStatus;
2242
+ operationId: number | null;
2243
+ searchString: string;
2244
+ byParents?: import("..").IFiltersByParents | null | undefined;
2245
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2246
+ };
2247
+ reportType: ExcelExportReportType.metalloworkingOperationList;
2248
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2249
+ }, {
2250
+ filters: {
2251
+ status: import("..").MetalloworkingStatus;
2252
+ searchString: string;
2253
+ sort?: {
2254
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2255
+ sortDesc?: boolean | undefined;
2256
+ }[] | undefined;
2257
+ operationId?: number | null | undefined;
2258
+ byParents?: import("..").IFiltersByParents | null | undefined;
2259
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2260
+ };
2261
+ reportType: ExcelExportReportType.metalloworkingOperationList;
2262
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2263
+ }>, z.ZodObject<{
2264
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingComplectationList>;
2265
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>, "many">, ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[], ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]>;
2266
+ filters: z.ZodObject<Omit<{
2267
+ page: z.ZodNumber;
2268
+ operationId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2269
+ searchString: z.ZodString;
2270
+ status: z.ZodNativeEnum<typeof import("..").MetalloworkingStatus>;
2271
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
2272
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
2273
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2274
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
2275
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2276
+ }, "strip", z.ZodTypeAny, {
2277
+ sortDesc: boolean;
2278
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2279
+ }, {
2280
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2281
+ sortDesc?: boolean | undefined;
2282
+ }>, "many">>>;
2283
+ }, "page">, "strip", z.ZodTypeAny, {
2284
+ sort: {
2285
+ sortDesc: boolean;
2286
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2287
+ }[];
2288
+ status: import("..").MetalloworkingStatus;
2289
+ operationId: number | null;
2290
+ searchString: string;
2291
+ byParents?: import("..").IFiltersByParents | null | undefined;
2292
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2293
+ }, {
2294
+ status: import("..").MetalloworkingStatus;
2295
+ searchString: string;
2296
+ sort?: {
2297
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2298
+ sortDesc?: boolean | undefined;
2299
+ }[] | undefined;
2300
+ operationId?: number | null | undefined;
2301
+ byParents?: import("..").IFiltersByParents | null | undefined;
2302
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2303
+ }>;
2304
+ }, "strip", z.ZodTypeAny, {
2305
+ filters: {
2306
+ sort: {
2307
+ sortDesc: boolean;
2308
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2309
+ }[];
2310
+ status: import("..").MetalloworkingStatus;
2311
+ operationId: number | null;
2312
+ searchString: string;
2313
+ byParents?: import("..").IFiltersByParents | null | undefined;
2314
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2315
+ };
2316
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
2317
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2318
+ }, {
2319
+ filters: {
2320
+ status: import("..").MetalloworkingStatus;
2321
+ searchString: string;
2322
+ sort?: {
2323
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2324
+ sortDesc?: boolean | undefined;
2325
+ }[] | undefined;
2326
+ operationId?: number | null | undefined;
2327
+ byParents?: import("..").IFiltersByParents | null | undefined;
2328
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2329
+ };
2330
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
2331
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2332
+ }>, z.ZodObject<{
2333
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingStockOrderList>;
2334
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse", ...("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[]]>, "many">, ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[], ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[]>;
2335
+ filters: z.ZodObject<Omit<{
2336
+ page: z.ZodNumber;
2337
+ responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2338
+ metalloworkingID: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2339
+ searchString: z.ZodString;
2340
+ isBan: z.ZodBoolean;
2341
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
2342
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
2343
+ childrenByProductionTaskIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
2344
+ isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2345
+ warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
2346
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2347
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
2348
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2349
+ }, "strip", z.ZodTypeAny, {
2350
+ sortDesc: boolean;
2351
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2352
+ }, {
2353
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2354
+ sortDesc?: boolean | undefined;
2355
+ }>, "many">>>;
2356
+ }, "page">, "strip", z.ZodTypeAny, {
2357
+ sort: {
2358
+ sortDesc: boolean;
2359
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2360
+ }[];
2361
+ searchString: string;
2362
+ isBan: boolean;
2363
+ isDiscontinued: boolean | null;
2364
+ responsibleUserId?: number | null | undefined;
2365
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2366
+ byParents?: import("..").IFiltersByParents | null | undefined;
2367
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2368
+ childrenByProductionTaskIds?: number[] | null | undefined;
2369
+ metalloworkingID?: number | null | undefined;
2370
+ }, {
2371
+ searchString: string;
2372
+ isBan: boolean;
2373
+ sort?: {
2374
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2375
+ sortDesc?: boolean | undefined;
2376
+ }[] | undefined;
2377
+ responsibleUserId?: number | null | undefined;
2378
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2379
+ isDiscontinued?: boolean | null | undefined;
2380
+ byParents?: import("..").IFiltersByParents | null | undefined;
2381
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2382
+ childrenByProductionTaskIds?: number[] | null | undefined;
2383
+ metalloworkingID?: number | null | undefined;
2384
+ }>;
2385
+ }, "strip", z.ZodTypeAny, {
2386
+ filters: {
2387
+ sort: {
2388
+ sortDesc: boolean;
2389
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2390
+ }[];
2391
+ searchString: string;
2392
+ isBan: boolean;
2393
+ isDiscontinued: boolean | null;
2394
+ responsibleUserId?: number | null | undefined;
2395
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2396
+ byParents?: import("..").IFiltersByParents | null | undefined;
2397
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2398
+ childrenByProductionTaskIds?: number[] | null | undefined;
2399
+ metalloworkingID?: number | null | undefined;
2400
+ };
2401
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
2402
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
2403
+ }, {
2404
+ filters: {
2405
+ searchString: string;
2406
+ isBan: boolean;
2407
+ sort?: {
2408
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2409
+ sortDesc?: boolean | undefined;
2410
+ }[] | undefined;
2411
+ responsibleUserId?: number | null | undefined;
2412
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2413
+ isDiscontinued?: boolean | null | undefined;
2414
+ byParents?: import("..").IFiltersByParents | null | undefined;
2415
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2416
+ childrenByProductionTaskIds?: number[] | null | undefined;
2417
+ metalloworkingID?: number | null | undefined;
2418
+ };
2419
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
2420
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
2421
+ }>, z.ZodObject<{
2422
+ reportType: z.ZodLiteral<ExcelExportReportType.resultWorkList>;
2423
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime", ...("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[]]>, "many">, ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[], ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[]>;
2424
+ filters: z.ZodObject<Omit<{
2425
+ page: z.ZodNumber;
2426
+ responsibleUserIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
2427
+ selectTypeOperation: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
2428
+ searchString: z.ZodOptional<z.ZodString>;
2429
+ dateRange: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").DateRangeType, z.ZodTypeDef, import("..").DateRangeType>>>;
2430
+ }, "page">, "strip", z.ZodTypeAny, {
2431
+ responsibleUserIds?: number[] | undefined;
2432
+ selectTypeOperation?: number | null | undefined;
2433
+ searchString?: string | undefined;
2434
+ dateRange?: import("..").DateRangeType | null | undefined;
2435
+ }, {
2436
+ responsibleUserIds?: number[] | undefined;
2437
+ selectTypeOperation?: number | null | undefined;
2438
+ searchString?: string | undefined;
2439
+ dateRange?: import("..").DateRangeType | null | undefined;
2440
+ }>;
2441
+ }, "strip", z.ZodTypeAny, {
2442
+ filters: {
2443
+ responsibleUserIds?: number[] | undefined;
2444
+ selectTypeOperation?: number | null | undefined;
2445
+ searchString?: string | undefined;
2446
+ dateRange?: import("..").DateRangeType | null | undefined;
2447
+ };
2448
+ reportType: ExcelExportReportType.resultWorkList;
2449
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
2450
+ }, {
2451
+ filters: {
2452
+ responsibleUserIds?: number[] | undefined;
2453
+ selectTypeOperation?: number | null | undefined;
2454
+ searchString?: string | undefined;
2455
+ dateRange?: import("..").DateRangeType | null | undefined;
2456
+ };
2457
+ reportType: ExcelExportReportType.resultWorkList;
2458
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
2459
+ }>, z.ZodObject<{
2460
+ reportType: z.ZodLiteral<ExcelExportReportType.productDeficitList>;
2461
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
2462
+ filters: z.ZodObject<Omit<{
2463
+ productIds: z.ZodArray<z.ZodNumber, "many">;
2464
+ statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
2465
+ searchString: z.ZodString;
2466
+ shipmentIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
2467
+ page: z.ZodOptional<z.ZodNumber>;
2468
+ isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
2469
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2470
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
2471
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2472
+ }, "strip", z.ZodTypeAny, {
2473
+ sortDesc: boolean;
2474
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2475
+ }, {
2476
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2477
+ sortDesc?: boolean | undefined;
2478
+ }>, "many">>>;
2479
+ warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
2480
+ }, "page">, "strip", z.ZodTypeAny, {
2481
+ sort: {
2482
+ sortDesc: boolean;
2483
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2484
+ }[];
2485
+ searchString: string;
2486
+ isDiscontinued: boolean | null;
2487
+ statusWorking: import("..").statusWorkingsDeficit;
2488
+ productIds: number[];
2489
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2490
+ shipmentIds?: number[] | null | undefined;
2491
+ }, {
2492
+ searchString: string;
2493
+ statusWorking: import("..").statusWorkingsDeficit;
2494
+ productIds: number[];
1657
2495
  sort?: {
1658
2496
  sortField?: import("..").ProductionPlanSortField | null | undefined;
1659
2497
  sortDesc?: boolean | undefined;
@@ -1676,7 +2514,7 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1676
2514
  shipmentIds?: number[] | null | undefined;
1677
2515
  };
1678
2516
  reportType: ExcelExportReportType.productDeficitList;
1679
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2517
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1680
2518
  }, {
1681
2519
  filters: {
1682
2520
  searchString: string;
@@ -1691,10 +2529,10 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1691
2529
  shipmentIds?: number[] | null | undefined;
1692
2530
  };
1693
2531
  reportType: ExcelExportReportType.productDeficitList;
1694
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2532
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1695
2533
  }>, z.ZodObject<{
1696
2534
  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")[]>;
2535
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
1698
2536
  filters: z.ZodObject<Omit<{
1699
2537
  cbedIds: z.ZodArray<z.ZodNumber, "many">;
1700
2538
  page: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -1750,7 +2588,7 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1750
2588
  shipmentIds?: number[] | null | undefined;
1751
2589
  };
1752
2590
  reportType: ExcelExportReportType.cbedDeficitList;
1753
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2591
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1754
2592
  }, {
1755
2593
  filters: {
1756
2594
  searchString: string;
@@ -1765,10 +2603,10 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1765
2603
  shipmentIds?: number[] | null | undefined;
1766
2604
  };
1767
2605
  reportType: ExcelExportReportType.cbedDeficitList;
1768
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2606
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
1769
2607
  }>, z.ZodObject<{
1770
2608
  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")[]>;
2609
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]>;
1772
2610
  filters: z.ZodObject<Omit<{
1773
2611
  detalIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
1774
2612
  statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
@@ -1824,7 +2662,7 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1824
2662
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1825
2663
  };
1826
2664
  reportType: ExcelExportReportType.detalDeficitList;
1827
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
2665
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
1828
2666
  }, {
1829
2667
  filters: {
1830
2668
  sort?: {
@@ -1839,10 +2677,10 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1839
2677
  shipmentIds?: number[] | null | undefined;
1840
2678
  };
1841
2679
  reportType: ExcelExportReportType.detalDeficitList;
1842
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
2680
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
1843
2681
  }>, z.ZodObject<{
1844
2682
  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")[]>;
2683
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>, "many">, ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[], ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]>;
1846
2684
  filters: z.ZodObject<Omit<{
1847
2685
  materialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
1848
2686
  typeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -1902,7 +2740,7 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1902
2740
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
1903
2741
  };
1904
2742
  reportType: ExcelExportReportType.materialDeficitList;
1905
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
2743
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
1906
2744
  }, {
1907
2745
  filters: {
1908
2746
  sort?: {
@@ -1918,7 +2756,7 @@ export declare const CreateExcelExportRequestSchema: z.ZodDiscriminatedUnion<"re
1918
2756
  subTypeMaterialIds?: number[] | undefined;
1919
2757
  };
1920
2758
  reportType: ExcelExportReportType.materialDeficitList;
1921
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
2759
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
1922
2760
  }>]>;
1923
2761
  export declare const CreateExcelExportDtoZod: z.ZodEffects<z.ZodObject<{
1924
2762
  reportType: z.ZodNativeEnum<typeof ExcelExportReportType>;
@@ -1984,13 +2822,277 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
1984
2822
  page: z.ZodNumber;
1985
2823
  searchString: z.ZodString;
1986
2824
  isBan: z.ZodBoolean;
1987
- responsibleUserId: z.ZodNullable<z.ZodNumber>;
1988
- notOrderedByProductionTask: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2825
+ responsibleUserId: z.ZodNullable<z.ZodNumber>;
2826
+ notOrderedByProductionTask: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2827
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
2828
+ type: z.ZodDefault<z.ZodNativeEnum<typeof import("..").AssembleIzdEnum>>;
2829
+ sortReadines: z.ZodDefault<z.ZodNativeEnum<typeof import("..").SortReadinesEnum>>;
2830
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
2831
+ onlyCanComplect: z.ZodBoolean;
2832
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2833
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
2834
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2835
+ }, "strip", z.ZodTypeAny, {
2836
+ sortDesc: boolean;
2837
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2838
+ }, {
2839
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2840
+ sortDesc?: boolean | undefined;
2841
+ }>, "many">>>;
2842
+ }, "page">, "strip", z.ZodTypeAny, {
2843
+ type: import("..").AssembleIzdEnum;
2844
+ sort: {
2845
+ sortDesc: boolean;
2846
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2847
+ }[];
2848
+ searchString: string;
2849
+ responsibleUserId: number | null;
2850
+ isBan: boolean;
2851
+ sortReadines: import("..").SortReadinesEnum;
2852
+ onlyCanComplect: boolean;
2853
+ byParents?: import("..").IFiltersByParents | null | undefined;
2854
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2855
+ notOrderedByProductionTask?: boolean | null | undefined;
2856
+ }, {
2857
+ searchString: string;
2858
+ responsibleUserId: number | null;
2859
+ isBan: boolean;
2860
+ onlyCanComplect: boolean;
2861
+ type?: import("..").AssembleIzdEnum | undefined;
2862
+ sort?: {
2863
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2864
+ sortDesc?: boolean | undefined;
2865
+ }[] | undefined;
2866
+ byParents?: import("..").IFiltersByParents | null | undefined;
2867
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2868
+ notOrderedByProductionTask?: boolean | null | undefined;
2869
+ sortReadines?: import("..").SortReadinesEnum | undefined;
2870
+ }>;
2871
+ }, "strip", z.ZodTypeAny, {
2872
+ filters: {
2873
+ type: import("..").AssembleIzdEnum;
2874
+ sort: {
2875
+ sortDesc: boolean;
2876
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2877
+ }[];
2878
+ searchString: string;
2879
+ responsibleUserId: number | null;
2880
+ isBan: boolean;
2881
+ sortReadines: import("..").SortReadinesEnum;
2882
+ onlyCanComplect: boolean;
2883
+ byParents?: import("..").IFiltersByParents | null | undefined;
2884
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2885
+ notOrderedByProductionTask?: boolean | null | undefined;
2886
+ };
2887
+ reportType: ExcelExportReportType.assemblyList;
2888
+ columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
2889
+ }, {
2890
+ filters: {
2891
+ searchString: string;
2892
+ responsibleUserId: number | null;
2893
+ isBan: boolean;
2894
+ onlyCanComplect: boolean;
2895
+ type?: import("..").AssembleIzdEnum | undefined;
2896
+ sort?: {
2897
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2898
+ sortDesc?: boolean | undefined;
2899
+ }[] | undefined;
2900
+ byParents?: import("..").IFiltersByParents | null | undefined;
2901
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2902
+ notOrderedByProductionTask?: boolean | null | undefined;
2903
+ sortReadines?: import("..").SortReadinesEnum | undefined;
2904
+ };
2905
+ reportType: ExcelExportReportType.assemblyList;
2906
+ columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
2907
+ }>, z.ZodObject<{
2908
+ reportType: z.ZodLiteral<ExcelExportReportType.assemblyOperationList>;
2909
+ 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")[]>;
2910
+ filters: z.ZodObject<Omit<{
2911
+ page: z.ZodNumber;
2912
+ operationId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
2913
+ searchString: z.ZodString;
2914
+ status: z.ZodNativeEnum<typeof import("..").AssembleStatus>;
2915
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
2916
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
2917
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2918
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
2919
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
2920
+ }, "strip", z.ZodTypeAny, {
2921
+ sortDesc: boolean;
2922
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2923
+ }, {
2924
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2925
+ sortDesc?: boolean | undefined;
2926
+ }>, "many">>>;
2927
+ }, "page">, "strip", z.ZodTypeAny, {
2928
+ sort: {
2929
+ sortDesc: boolean;
2930
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2931
+ }[];
2932
+ status: import("..").AssembleStatus;
2933
+ operationId: number | null;
2934
+ searchString: string;
2935
+ byParents?: import("..").IFiltersByParents | null | undefined;
2936
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2937
+ }, {
2938
+ status: import("..").AssembleStatus;
2939
+ searchString: string;
2940
+ sort?: {
2941
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2942
+ sortDesc?: boolean | undefined;
2943
+ }[] | undefined;
2944
+ operationId?: number | null | undefined;
2945
+ byParents?: import("..").IFiltersByParents | null | undefined;
2946
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2947
+ }>;
2948
+ }, "strip", z.ZodTypeAny, {
2949
+ filters: {
2950
+ sort: {
2951
+ sortDesc: boolean;
2952
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2953
+ }[];
2954
+ status: import("..").AssembleStatus;
2955
+ operationId: number | null;
2956
+ searchString: string;
2957
+ byParents?: import("..").IFiltersByParents | null | undefined;
2958
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2959
+ };
2960
+ reportType: ExcelExportReportType.assemblyOperationList;
2961
+ columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
2962
+ }, {
2963
+ filters: {
2964
+ status: import("..").AssembleStatus;
2965
+ searchString: string;
2966
+ sort?: {
2967
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
2968
+ sortDesc?: boolean | undefined;
2969
+ }[] | undefined;
2970
+ operationId?: number | null | undefined;
2971
+ byParents?: import("..").IFiltersByParents | null | undefined;
2972
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
2973
+ };
2974
+ reportType: ExcelExportReportType.assemblyOperationList;
2975
+ columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
2976
+ }>, z.ZodObject<{
2977
+ reportType: z.ZodLiteral<ExcelExportReportType.operationPath>;
2978
+ 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")[]>>;
2979
+ filters: z.ZodObject<{
2980
+ sourceType: z.ZodNativeEnum<typeof OperationPathExcelExportSourceType>;
2981
+ sourceId: z.ZodNumber;
2982
+ }, "strip", z.ZodTypeAny, {
2983
+ sourceType: OperationPathExcelExportSourceType;
2984
+ sourceId: number;
2985
+ }, {
2986
+ sourceType: OperationPathExcelExportSourceType;
2987
+ sourceId: number;
2988
+ }>;
2989
+ }, "strip", z.ZodTypeAny, {
2990
+ filters: {
2991
+ sourceType: OperationPathExcelExportSourceType;
2992
+ sourceId: number;
2993
+ };
2994
+ reportType: ExcelExportReportType.operationPath;
2995
+ columns?: ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[] | undefined;
2996
+ }, {
2997
+ filters: {
2998
+ sourceType: OperationPathExcelExportSourceType;
2999
+ sourceId: number;
3000
+ };
3001
+ reportType: ExcelExportReportType.operationPath;
3002
+ columns?: ("number" | "operation" | "startTime" | "totalTime" | "maked" | "remainder" | "dateExecution" | "countOfComplete" | "executor" | "requiredTime" | "calculatedTime" | "unitTime" | "remainingTime" | "completionPercent")[] | undefined;
3003
+ }>, z.ZodObject<{
3004
+ reportType: z.ZodLiteral<ExcelExportReportType.assemblyStockOrderList>;
3005
+ 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")[]>;
3006
+ filters: z.ZodObject<Omit<{
3007
+ page: z.ZodNumber;
3008
+ searchString: z.ZodString;
3009
+ responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3010
+ byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
3011
+ type: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").AssembleIzdEnum>>>>;
3012
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
3013
+ isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
3014
+ warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
3015
+ sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
3016
+ sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
3017
+ sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
3018
+ }, "strip", z.ZodTypeAny, {
3019
+ sortDesc: boolean;
3020
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3021
+ }, {
3022
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3023
+ sortDesc?: boolean | undefined;
3024
+ }>, "many">>>;
3025
+ }, "page">, "strip", z.ZodTypeAny, {
3026
+ type: import("..").AssembleIzdEnum | null;
3027
+ sort: {
3028
+ sortDesc: boolean;
3029
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3030
+ }[];
3031
+ searchString: string;
3032
+ isDiscontinued: boolean | null;
3033
+ responsibleUserId?: number | null | undefined;
3034
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
3035
+ byParents?: import("..").IFiltersByParents | null | undefined;
3036
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3037
+ }, {
3038
+ searchString: string;
3039
+ type?: import("..").AssembleIzdEnum | null | undefined;
3040
+ sort?: {
3041
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3042
+ sortDesc?: boolean | undefined;
3043
+ }[] | undefined;
3044
+ responsibleUserId?: number | null | undefined;
3045
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
3046
+ isDiscontinued?: boolean | null | undefined;
3047
+ byParents?: import("..").IFiltersByParents | null | undefined;
3048
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3049
+ }>;
3050
+ }, "strip", z.ZodTypeAny, {
3051
+ filters: {
3052
+ type: import("..").AssembleIzdEnum | null;
3053
+ sort: {
3054
+ sortDesc: boolean;
3055
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3056
+ }[];
3057
+ searchString: string;
3058
+ isDiscontinued: boolean | null;
3059
+ responsibleUserId?: number | null | undefined;
3060
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
3061
+ byParents?: import("..").IFiltersByParents | null | undefined;
3062
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3063
+ };
3064
+ reportType: ExcelExportReportType.assemblyStockOrderList;
3065
+ columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
3066
+ }, {
3067
+ filters: {
3068
+ searchString: string;
3069
+ type?: import("..").AssembleIzdEnum | null | undefined;
3070
+ sort?: {
3071
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3072
+ sortDesc?: boolean | undefined;
3073
+ }[] | undefined;
3074
+ responsibleUserId?: number | null | undefined;
3075
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
3076
+ isDiscontinued?: boolean | null | undefined;
3077
+ byParents?: import("..").IFiltersByParents | null | undefined;
3078
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3079
+ };
3080
+ reportType: ExcelExportReportType.assemblyStockOrderList;
3081
+ columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
3082
+ }>, z.ZodObject<{
3083
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingList>;
3084
+ 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")[]>;
3085
+ filters: z.ZodObject<Omit<{
3086
+ page: z.ZodNumber;
3087
+ responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3088
+ metalloworkingID: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3089
+ searchString: z.ZodString;
3090
+ isBan: z.ZodBoolean;
1989
3091
  byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
1990
- type: z.ZodDefault<z.ZodNativeEnum<typeof import("..").AssembleIzdEnum>>;
1991
- sortReadines: z.ZodDefault<z.ZodNativeEnum<typeof import("..").SortReadinesEnum>>;
1992
3092
  byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
1993
- onlyCanComplect: z.ZodBoolean;
3093
+ childrenByProductionTaskIds: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
3094
+ isDiscontinued: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodBoolean>>>;
3095
+ warehouseReadinessDateFilter: z.ZodOptional<z.ZodNativeEnum<typeof import("..").WarehouseReadinessDateFilterEnum>>;
1994
3096
  sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
1995
3097
  sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
1996
3098
  sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -2002,80 +3104,80 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2002
3104
  sortDesc?: boolean | undefined;
2003
3105
  }>, "many">>>;
2004
3106
  }, "page">, "strip", z.ZodTypeAny, {
2005
- type: import("..").AssembleIzdEnum;
2006
3107
  sort: {
2007
3108
  sortDesc: boolean;
2008
3109
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2009
3110
  }[];
2010
3111
  searchString: string;
2011
- responsibleUserId: number | null;
2012
3112
  isBan: boolean;
2013
- sortReadines: import("..").SortReadinesEnum;
2014
- onlyCanComplect: boolean;
3113
+ isDiscontinued: boolean | null;
3114
+ responsibleUserId?: number | null | undefined;
3115
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2015
3116
  byParents?: import("..").IFiltersByParents | null | undefined;
2016
3117
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2017
- notOrderedByProductionTask?: boolean | null | undefined;
3118
+ childrenByProductionTaskIds?: number[] | null | undefined;
3119
+ metalloworkingID?: number | null | undefined;
2018
3120
  }, {
2019
3121
  searchString: string;
2020
- responsibleUserId: number | null;
2021
3122
  isBan: boolean;
2022
- onlyCanComplect: boolean;
2023
- type?: import("..").AssembleIzdEnum | undefined;
2024
3123
  sort?: {
2025
3124
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2026
3125
  sortDesc?: boolean | undefined;
2027
3126
  }[] | undefined;
3127
+ responsibleUserId?: number | null | undefined;
3128
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
3129
+ isDiscontinued?: boolean | null | undefined;
2028
3130
  byParents?: import("..").IFiltersByParents | null | undefined;
2029
3131
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2030
- notOrderedByProductionTask?: boolean | null | undefined;
2031
- sortReadines?: import("..").SortReadinesEnum | undefined;
3132
+ childrenByProductionTaskIds?: number[] | null | undefined;
3133
+ metalloworkingID?: number | null | undefined;
2032
3134
  }>;
2033
3135
  }, "strip", z.ZodTypeAny, {
2034
3136
  filters: {
2035
- type: import("..").AssembleIzdEnum;
2036
3137
  sort: {
2037
3138
  sortDesc: boolean;
2038
3139
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2039
3140
  }[];
2040
3141
  searchString: string;
2041
- responsibleUserId: number | null;
2042
3142
  isBan: boolean;
2043
- sortReadines: import("..").SortReadinesEnum;
2044
- onlyCanComplect: boolean;
3143
+ isDiscontinued: boolean | null;
3144
+ responsibleUserId?: number | null | undefined;
3145
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2045
3146
  byParents?: import("..").IFiltersByParents | null | undefined;
2046
3147
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2047
- notOrderedByProductionTask?: boolean | null | undefined;
3148
+ childrenByProductionTaskIds?: number[] | null | undefined;
3149
+ metalloworkingID?: number | null | undefined;
2048
3150
  };
2049
- reportType: ExcelExportReportType.assemblyList;
2050
- columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
3151
+ reportType: ExcelExportReportType.metalloworkingList;
3152
+ columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
2051
3153
  }, {
2052
3154
  filters: {
2053
3155
  searchString: string;
2054
- responsibleUserId: number | null;
2055
3156
  isBan: boolean;
2056
- onlyCanComplect: boolean;
2057
- type?: import("..").AssembleIzdEnum | undefined;
2058
3157
  sort?: {
2059
3158
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2060
3159
  sortDesc?: boolean | undefined;
2061
3160
  }[] | undefined;
3161
+ responsibleUserId?: number | null | undefined;
3162
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
3163
+ isDiscontinued?: boolean | null | undefined;
2062
3164
  byParents?: import("..").IFiltersByParents | null | undefined;
2063
3165
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2064
- notOrderedByProductionTask?: boolean | null | undefined;
2065
- sortReadines?: import("..").SortReadinesEnum | undefined;
3166
+ childrenByProductionTaskIds?: number[] | null | undefined;
3167
+ metalloworkingID?: number | null | undefined;
2066
3168
  };
2067
- reportType: ExcelExportReportType.assemblyList;
2068
- columns: ("number" | "type" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "readinessToComplectation" | "completionToBuild" | "timeComplete")[];
3169
+ reportType: ExcelExportReportType.metalloworkingList;
3170
+ columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
2069
3171
  }>, 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")[]>;
3172
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingOperationList>;
3173
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>, "many">, ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[], ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]>;
2072
3174
  filters: z.ZodObject<Omit<{
2073
3175
  page: z.ZodNumber;
2074
- operationId: z.ZodDefault<z.ZodNullable<z.ZodNumber>>;
3176
+ operationId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2075
3177
  searchString: z.ZodString;
2076
- status: z.ZodNativeEnum<typeof import("..").AssembleStatus>;
2077
- byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
3178
+ status: z.ZodNativeEnum<typeof import("..").MetalloworkingStatus>;
2078
3179
  byParents: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByParents, z.ZodTypeDef, import("..").IFiltersByParents>>>;
3180
+ byOrder: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").IFiltersByByOrder, z.ZodTypeDef, import("..").IFiltersByByOrder>>>;
2079
3181
  sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2080
3182
  sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
2081
3183
  sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -2091,13 +3193,13 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2091
3193
  sortDesc: boolean;
2092
3194
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2093
3195
  }[];
2094
- status: import("..").AssembleStatus;
3196
+ status: import("..").MetalloworkingStatus;
2095
3197
  operationId: number | null;
2096
3198
  searchString: string;
2097
3199
  byParents?: import("..").IFiltersByParents | null | undefined;
2098
3200
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2099
3201
  }, {
2100
- status: import("..").AssembleStatus;
3202
+ status: import("..").MetalloworkingStatus;
2101
3203
  searchString: string;
2102
3204
  sort?: {
2103
3205
  sortField?: import("..").ProductionPlanSortField | null | undefined;
@@ -2113,17 +3215,17 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2113
3215
  sortDesc: boolean;
2114
3216
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2115
3217
  }[];
2116
- status: import("..").AssembleStatus;
3218
+ status: import("..").MetalloworkingStatus;
2117
3219
  operationId: number | null;
2118
3220
  searchString: string;
2119
3221
  byParents?: import("..").IFiltersByParents | null | undefined;
2120
3222
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2121
3223
  };
2122
- reportType: ExcelExportReportType.assemblyOperationList;
2123
- columns: ("number" | "type" | "status" | "designation" | "name" | "preTime" | "mainTime" | "image" | "count" | "maked" | "remainder" | "auxTime" | "dateExecution" | "countOfComplete" | "executor")[];
3224
+ reportType: ExcelExportReportType.metalloworkingOperationList;
3225
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2124
3226
  }, {
2125
3227
  filters: {
2126
- status: import("..").AssembleStatus;
3228
+ status: import("..").MetalloworkingStatus;
2127
3229
  searchString: string;
2128
3230
  sort?: {
2129
3231
  sortField?: import("..").ProductionPlanSortField | null | undefined;
@@ -2133,47 +3235,18 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2133
3235
  byParents?: import("..").IFiltersByParents | null | undefined;
2134
3236
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2135
3237
  };
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;
3238
+ reportType: ExcelExportReportType.metalloworkingOperationList;
3239
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2165
3240
  }>, 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")[]>;
3241
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingComplectationList>;
3242
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked", ...("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]]>, "many">, ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[], ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[]>;
2168
3243
  filters: z.ZodObject<Omit<{
2169
3244
  page: z.ZodNumber;
3245
+ operationId: z.ZodDefault<z.ZodOptional<z.ZodNullable<z.ZodNumber>>>;
2170
3246
  searchString: z.ZodString;
2171
- responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3247
+ status: z.ZodNativeEnum<typeof import("..").MetalloworkingStatus>;
2172
3248
  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
3249
  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
3250
  sort: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodObject<{
2178
3251
  sortField: z.ZodOptional<z.ZodNullable<z.ZodNativeEnum<typeof import("..").ProductionPlanSortField>>>;
2179
3252
  sortDesc: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
@@ -2185,65 +3258,57 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2185
3258
  sortDesc?: boolean | undefined;
2186
3259
  }>, "many">>>;
2187
3260
  }, "page">, "strip", z.ZodTypeAny, {
2188
- type: import("..").AssembleIzdEnum | null;
2189
3261
  sort: {
2190
3262
  sortDesc: boolean;
2191
3263
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2192
3264
  }[];
3265
+ status: import("..").MetalloworkingStatus;
3266
+ operationId: number | null;
2193
3267
  searchString: string;
2194
- isDiscontinued: boolean | null;
2195
- responsibleUserId?: number | null | undefined;
2196
- warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2197
3268
  byParents?: import("..").IFiltersByParents | null | undefined;
2198
3269
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2199
3270
  }, {
3271
+ status: import("..").MetalloworkingStatus;
2200
3272
  searchString: string;
2201
- type?: import("..").AssembleIzdEnum | null | undefined;
2202
3273
  sort?: {
2203
3274
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2204
3275
  sortDesc?: boolean | undefined;
2205
3276
  }[] | undefined;
2206
- responsibleUserId?: number | null | undefined;
2207
- warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2208
- isDiscontinued?: boolean | null | undefined;
3277
+ operationId?: number | null | undefined;
2209
3278
  byParents?: import("..").IFiltersByParents | null | undefined;
2210
3279
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2211
3280
  }>;
2212
3281
  }, "strip", z.ZodTypeAny, {
2213
3282
  filters: {
2214
- type: import("..").AssembleIzdEnum | null;
2215
3283
  sort: {
2216
3284
  sortDesc: boolean;
2217
3285
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2218
3286
  }[];
3287
+ status: import("..").MetalloworkingStatus;
3288
+ operationId: number | null;
2219
3289
  searchString: string;
2220
- isDiscontinued: boolean | null;
2221
- responsibleUserId?: number | null | undefined;
2222
- warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2223
3290
  byParents?: import("..").IFiltersByParents | null | undefined;
2224
3291
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2225
3292
  };
2226
- reportType: ExcelExportReportType.assemblyStockOrderList;
2227
- columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
3293
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
3294
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2228
3295
  }, {
2229
3296
  filters: {
3297
+ status: import("..").MetalloworkingStatus;
2230
3298
  searchString: string;
2231
- type?: import("..").AssembleIzdEnum | null | undefined;
2232
3299
  sort?: {
2233
3300
  sortField?: import("..").ProductionPlanSortField | null | undefined;
2234
3301
  sortDesc?: boolean | undefined;
2235
3302
  }[] | undefined;
2236
- responsibleUserId?: number | null | undefined;
2237
- warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2238
- isDiscontinued?: boolean | null | undefined;
3303
+ operationId?: number | null | undefined;
2239
3304
  byParents?: import("..").IFiltersByParents | null | undefined;
2240
3305
  byOrder?: import("..").IFiltersByByOrder | null | undefined;
2241
3306
  };
2242
- reportType: ExcelExportReportType.assemblyStockOrderList;
2243
- columns: ("number" | "type" | "designation" | "name" | "image" | "deficit" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "productionDelay" | "startTimeDelay" | "startTime" | "complectataionReadiness" | "orderedByPz" | "warehouseReadyDate" | "orderDemand" | "countOfSclad")[];
3307
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
3308
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
2244
3309
  }>, 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")[]>;
3310
+ reportType: z.ZodLiteral<ExcelExportReportType.metalloworkingStockOrderList>;
3311
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse", ...("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[]]>, "many">, ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[], ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[]>;
2247
3312
  filters: z.ZodObject<Omit<{
2248
3313
  page: z.ZodNumber;
2249
3314
  responsibleUserId: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
@@ -2310,8 +3375,8 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2310
3375
  childrenByProductionTaskIds?: number[] | null | undefined;
2311
3376
  metalloworkingID?: number | null | undefined;
2312
3377
  };
2313
- reportType: ExcelExportReportType.metalloworkingList;
2314
- columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
3378
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
3379
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
2315
3380
  }, {
2316
3381
  filters: {
2317
3382
  searchString: string;
@@ -2328,11 +3393,49 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2328
3393
  childrenByProductionTaskIds?: number[] | null | undefined;
2329
3394
  metalloworkingID?: number | null | undefined;
2330
3395
  };
2331
- reportType: ExcelExportReportType.metalloworkingList;
2332
- columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
3396
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
3397
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
3398
+ }>, z.ZodObject<{
3399
+ reportType: z.ZodLiteral<ExcelExportReportType.resultWorkList>;
3400
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime", ...("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[]]>, "many">, ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[], ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[]>;
3401
+ filters: z.ZodObject<Omit<{
3402
+ page: z.ZodNumber;
3403
+ responsibleUserIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
3404
+ selectTypeOperation: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
3405
+ searchString: z.ZodOptional<z.ZodString>;
3406
+ dateRange: z.ZodOptional<z.ZodNullable<z.ZodType<import("..").DateRangeType, z.ZodTypeDef, import("..").DateRangeType>>>;
3407
+ }, "page">, "strip", z.ZodTypeAny, {
3408
+ responsibleUserIds?: number[] | undefined;
3409
+ selectTypeOperation?: number | null | undefined;
3410
+ searchString?: string | undefined;
3411
+ dateRange?: import("..").DateRangeType | null | undefined;
3412
+ }, {
3413
+ responsibleUserIds?: number[] | undefined;
3414
+ selectTypeOperation?: number | null | undefined;
3415
+ searchString?: string | undefined;
3416
+ dateRange?: import("..").DateRangeType | null | undefined;
3417
+ }>;
3418
+ }, "strip", z.ZodTypeAny, {
3419
+ filters: {
3420
+ responsibleUserIds?: number[] | undefined;
3421
+ selectTypeOperation?: number | null | undefined;
3422
+ searchString?: string | undefined;
3423
+ dateRange?: import("..").DateRangeType | null | undefined;
3424
+ };
3425
+ reportType: ExcelExportReportType.resultWorkList;
3426
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
3427
+ }, {
3428
+ filters: {
3429
+ responsibleUserIds?: number[] | undefined;
3430
+ selectTypeOperation?: number | null | undefined;
3431
+ searchString?: string | undefined;
3432
+ dateRange?: import("..").DateRangeType | null | undefined;
3433
+ };
3434
+ reportType: ExcelExportReportType.resultWorkList;
3435
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
2333
3436
  }>, z.ZodObject<{
2334
3437
  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")[]>;
3438
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
2336
3439
  filters: z.ZodObject<Omit<{
2337
3440
  productIds: z.ZodArray<z.ZodNumber, "many">;
2338
3441
  statusWorking: z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>;
@@ -2388,7 +3491,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2388
3491
  shipmentIds?: number[] | null | undefined;
2389
3492
  };
2390
3493
  reportType: ExcelExportReportType.productDeficitList;
2391
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
3494
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2392
3495
  }, {
2393
3496
  filters: {
2394
3497
  searchString: string;
@@ -2403,10 +3506,10 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2403
3506
  shipmentIds?: number[] | null | undefined;
2404
3507
  };
2405
3508
  reportType: ExcelExportReportType.productDeficitList;
2406
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
3509
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2407
3510
  }>, z.ZodObject<{
2408
3511
  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")[]>;
3512
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[]>;
2410
3513
  filters: z.ZodObject<Omit<{
2411
3514
  cbedIds: z.ZodArray<z.ZodNumber, "many">;
2412
3515
  page: z.ZodNullable<z.ZodOptional<z.ZodNumber>>;
@@ -2462,7 +3565,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2462
3565
  shipmentIds?: number[] | null | undefined;
2463
3566
  };
2464
3567
  reportType: ExcelExportReportType.cbedDeficitList;
2465
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
3568
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2466
3569
  }, {
2467
3570
  filters: {
2468
3571
  searchString: string;
@@ -2477,10 +3580,10 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2477
3580
  shipmentIds?: number[] | null | undefined;
2478
3581
  };
2479
3582
  reportType: ExcelExportReportType.cbedDeficitList;
2480
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
3583
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2481
3584
  }>, z.ZodObject<{
2482
3585
  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")[]>;
3586
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction", ...("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]]>, "many">, ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[], ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[]>;
2484
3587
  filters: z.ZodObject<Omit<{
2485
3588
  detalIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
2486
3589
  statusWorking: z.ZodDefault<z.ZodOptional<z.ZodNativeEnum<typeof import("..").statusWorkingsDeficit>>>;
@@ -2536,7 +3639,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2536
3639
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2537
3640
  };
2538
3641
  reportType: ExcelExportReportType.detalDeficitList;
2539
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
3642
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
2540
3643
  }, {
2541
3644
  filters: {
2542
3645
  sort?: {
@@ -2551,10 +3654,10 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2551
3654
  shipmentIds?: number[] | null | undefined;
2552
3655
  };
2553
3656
  reportType: ExcelExportReportType.detalDeficitList;
2554
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
3657
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
2555
3658
  }>, z.ZodObject<{
2556
3659
  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")[]>;
3660
+ columns: z.ZodEffects<z.ZodArray<z.ZodEnum<["number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming", ...("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]]>, "many">, ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[], ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[]>;
2558
3661
  filters: z.ZodObject<Omit<{
2559
3662
  materialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
2560
3663
  typeMaterialIds: z.ZodDefault<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
@@ -2614,7 +3717,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2614
3717
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2615
3718
  };
2616
3719
  reportType: ExcelExportReportType.materialDeficitList;
2617
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
3720
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
2618
3721
  }, {
2619
3722
  filters: {
2620
3723
  sort?: {
@@ -2630,7 +3733,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2630
3733
  subTypeMaterialIds?: number[] | undefined;
2631
3734
  };
2632
3735
  reportType: ExcelExportReportType.materialDeficitList;
2633
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
3736
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
2634
3737
  }>]>;
2635
3738
  }, "strip", z.ZodTypeAny, {
2636
3739
  userId: number;
@@ -2670,6 +3773,61 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2670
3773
  };
2671
3774
  reportType: ExcelExportReportType.metalloworkingList;
2672
3775
  columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
3776
+ } | {
3777
+ filters: {
3778
+ sort: {
3779
+ sortDesc: boolean;
3780
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3781
+ }[];
3782
+ status: import("..").MetalloworkingStatus;
3783
+ operationId: number | null;
3784
+ searchString: string;
3785
+ byParents?: import("..").IFiltersByParents | null | undefined;
3786
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3787
+ };
3788
+ reportType: ExcelExportReportType.metalloworkingOperationList;
3789
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
3790
+ } | {
3791
+ filters: {
3792
+ sort: {
3793
+ sortDesc: boolean;
3794
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3795
+ }[];
3796
+ status: import("..").MetalloworkingStatus;
3797
+ operationId: number | null;
3798
+ searchString: string;
3799
+ byParents?: import("..").IFiltersByParents | null | undefined;
3800
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3801
+ };
3802
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
3803
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
3804
+ } | {
3805
+ filters: {
3806
+ sort: {
3807
+ sortDesc: boolean;
3808
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3809
+ }[];
3810
+ searchString: string;
3811
+ isBan: boolean;
3812
+ isDiscontinued: boolean | null;
3813
+ responsibleUserId?: number | null | undefined;
3814
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
3815
+ byParents?: import("..").IFiltersByParents | null | undefined;
3816
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3817
+ childrenByProductionTaskIds?: number[] | null | undefined;
3818
+ metalloworkingID?: number | null | undefined;
3819
+ };
3820
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
3821
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
3822
+ } | {
3823
+ filters: {
3824
+ responsibleUserIds?: number[] | undefined;
3825
+ selectTypeOperation?: number | null | undefined;
3826
+ searchString?: string | undefined;
3827
+ dateRange?: import("..").DateRangeType | null | undefined;
3828
+ };
3829
+ reportType: ExcelExportReportType.resultWorkList;
3830
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
2673
3831
  } | {
2674
3832
  filters: {
2675
3833
  sort: {
@@ -2721,7 +3879,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2721
3879
  shipmentIds?: number[] | null | undefined;
2722
3880
  };
2723
3881
  reportType: ExcelExportReportType.productDeficitList;
2724
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
3882
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2725
3883
  } | {
2726
3884
  filters: {
2727
3885
  sort: {
@@ -2736,7 +3894,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2736
3894
  shipmentIds?: number[] | null | undefined;
2737
3895
  };
2738
3896
  reportType: ExcelExportReportType.cbedDeficitList;
2739
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
3897
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2740
3898
  } | {
2741
3899
  filters: {
2742
3900
  sort: {
@@ -2751,7 +3909,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2751
3909
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2752
3910
  };
2753
3911
  reportType: ExcelExportReportType.detalDeficitList;
2754
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
3912
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
2755
3913
  } | {
2756
3914
  filters: {
2757
3915
  sort: {
@@ -2767,7 +3925,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2767
3925
  warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
2768
3926
  };
2769
3927
  reportType: ExcelExportReportType.materialDeficitList;
2770
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
3928
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
2771
3929
  };
2772
3930
  }, {
2773
3931
  userId: number;
@@ -2807,6 +3965,61 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2807
3965
  };
2808
3966
  reportType: ExcelExportReportType.metalloworkingList;
2809
3967
  columns: ("number" | "material" | "designation" | "name" | "image" | "ordered" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "productionDelay" | "workpieceParameters" | "timeToProduction" | "waste")[];
3968
+ } | {
3969
+ filters: {
3970
+ status: import("..").MetalloworkingStatus;
3971
+ searchString: string;
3972
+ sort?: {
3973
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3974
+ sortDesc?: boolean | undefined;
3975
+ }[] | undefined;
3976
+ operationId?: number | null | undefined;
3977
+ byParents?: import("..").IFiltersByParents | null | undefined;
3978
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3979
+ };
3980
+ reportType: ExcelExportReportType.metalloworkingOperationList;
3981
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
3982
+ } | {
3983
+ filters: {
3984
+ status: import("..").MetalloworkingStatus;
3985
+ searchString: string;
3986
+ sort?: {
3987
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
3988
+ sortDesc?: boolean | undefined;
3989
+ }[] | undefined;
3990
+ operationId?: number | null | undefined;
3991
+ byParents?: import("..").IFiltersByParents | null | undefined;
3992
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
3993
+ };
3994
+ reportType: ExcelExportReportType.metalloworkingComplectationList;
3995
+ columns: ("number" | "status" | "designation" | "name" | "image" | "parametrs" | "count" | "calculatedCreateTime" | "calculateNeedsTime" | "orderedByProduction" | "startTimeDelay" | "prevOperation" | "nextOperation" | "childrenCalculateNeedsTime" | "workpiece" | "complited" | "remaining" | "standartTime" | "dataExecution" | "executer" | "worked")[];
3996
+ } | {
3997
+ filters: {
3998
+ searchString: string;
3999
+ isBan: boolean;
4000
+ sort?: {
4001
+ sortField?: import("..").ProductionPlanSortField | null | undefined;
4002
+ sortDesc?: boolean | undefined;
4003
+ }[] | undefined;
4004
+ responsibleUserId?: number | null | undefined;
4005
+ warehouseReadinessDateFilter?: import("..").WarehouseReadinessDateFilterEnum | undefined;
4006
+ isDiscontinued?: boolean | null | undefined;
4007
+ byParents?: import("..").IFiltersByParents | null | undefined;
4008
+ byOrder?: import("..").IFiltersByByOrder | null | undefined;
4009
+ childrenByProductionTaskIds?: number[] | null | undefined;
4010
+ metalloworkingID?: number | null | undefined;
4011
+ };
4012
+ reportType: ExcelExportReportType.metalloworkingStockOrderList;
4013
+ columns: ("number" | "designation" | "name" | "image" | "ordered" | "warehouseReadinessDate" | "orderedByProduction" | "complectataionReadiness" | "calculatedNeedTime" | "requiredDate" | "delayProduction" | "demand" | "minRemainingDeficit" | "countOnWarehouse")[];
4014
+ } | {
4015
+ filters: {
4016
+ responsibleUserIds?: number[] | undefined;
4017
+ selectTypeOperation?: number | null | undefined;
4018
+ searchString?: string | undefined;
4019
+ dateRange?: import("..").DateRangeType | null | undefined;
4020
+ };
4021
+ reportType: ExcelExportReportType.resultWorkList;
4022
+ columns: ("number" | "type" | "operation" | "designation" | "name" | "date" | "image" | "quantity" | "tabelNumber" | "employee" | "oneItemPreTime" | "oneItemAuxTime" | "oneItemMachTime" | "batchPreTime" | "batchAuxTime" | "batchMachTime" | "allTime")[];
2810
4023
  } | {
2811
4024
  filters: {
2812
4025
  status: import("..").AssembleStatus;
@@ -2858,7 +4071,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2858
4071
  shipmentIds?: number[] | null | undefined;
2859
4072
  };
2860
4073
  reportType: ExcelExportReportType.productDeficitList;
2861
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
4074
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "article" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2862
4075
  } | {
2863
4076
  filters: {
2864
4077
  searchString: string;
@@ -2873,7 +4086,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2873
4086
  shipmentIds?: number[] | null | undefined;
2874
4087
  };
2875
4088
  reportType: ExcelExportReportType.cbedDeficitList;
2876
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
4089
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining")[];
2877
4090
  } | {
2878
4091
  filters: {
2879
4092
  sort?: {
@@ -2888,7 +4101,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2888
4101
  shipmentIds?: number[] | null | undefined;
2889
4102
  };
2890
4103
  reportType: ExcelExportReportType.detalDeficitList;
2891
- columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "orderDemand" | "remaining" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
4104
+ columns: ("number" | "status" | "designation" | "name" | "deficit" | "minRemaining" | "ordered" | "warehouseReadinessDate" | "remaining" | "orderDemand" | "recommendedRemaining" | "timeNorm" | "ownQuantity" | "realRemaining" | "cnc" | "deficitWithProduction")[];
2892
4105
  } | {
2893
4106
  filters: {
2894
4107
  sort?: {
@@ -2904,7 +4117,7 @@ export declare const ExcelExportJobDataSchema: z.ZodObject<{
2904
4117
  subTypeMaterialIds?: number[] | undefined;
2905
4118
  };
2906
4119
  reportType: ExcelExportReportType.materialDeficitList;
2907
- columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "orderDemand" | "shipmentDate" | "remaining" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
4120
+ columns: ("number" | "status" | "name" | "deficit" | "plannedDeliveryDate" | "minRemaining" | "ordered" | "remaining" | "orderDemand" | "shipmentDate" | "recommendedRemaining" | "ownQuantity" | "realRemaining" | "inKit" | "measurement" | "deficitWithIncoming")[];
2908
4121
  };
2909
4122
  }>;
2910
4123
  export declare const ExcelExportResultSchema: z.ZodObject<{
@@ -2925,6 +4138,10 @@ export declare const ExcelExportResultSchema: z.ZodObject<{
2925
4138
  }>;
2926
4139
  export type AssemblyExcelExportColumn = z.infer<typeof AssemblyExcelExportColumnSchema>;
2927
4140
  export type MetalloworkingExcelExportColumn = z.infer<typeof MetalloworkingExcelExportColumnSchema>;
4141
+ export type MetalloworkingOperationExcelExportColumn = z.infer<typeof MetalloworkingOperationExcelExportColumnSchema>;
4142
+ export type MetalloworkingComplectationExcelExportColumn = z.infer<typeof MetalloworkingComplectationExcelExportColumnSchema>;
4143
+ export type MetalloworkingStockOrderExcelExportColumn = z.infer<typeof MetalloworkingStockOrderExcelExportColumnSchema>;
4144
+ export type ResultWorkExcelExportColumn = z.infer<typeof ResultWorkExcelExportColumnSchema>;
2928
4145
  export type AssemblyOperationExcelExportColumn = z.infer<typeof AssemblyOperationExcelExportColumnSchema>;
2929
4146
  export type OperationPathExcelExportColumn = z.infer<typeof OperationPathExcelExportColumnSchema>;
2930
4147
  export type AssemblyStockOrderExcelExportColumn = z.infer<typeof AssemblyStockOrderExcelExportColumnSchema>;
@@ -2935,6 +4152,10 @@ export type MaterialDeficitExcelExportColumn = z.infer<typeof MaterialDeficitExc
2935
4152
  export type CreateExcelExportDtoZodType = z.infer<typeof CreateExcelExportRequestSchema>;
2936
4153
  export type CreateAssemblyExcelExportDtoZodType = z.infer<typeof CreateAssemblyExcelExportDtoZod>;
2937
4154
  export type CreateMetalloworkingExcelExportDtoZodType = z.infer<typeof CreateMetalloworkingExcelExportDtoZod>;
4155
+ export type CreateMetalloworkingOperationExcelExportDtoZodType = z.infer<typeof CreateMetalloworkingOperationExcelExportDtoZod>;
4156
+ export type CreateMetalloworkingComplectationExcelExportDtoZodType = z.infer<typeof CreateMetalloworkingComplectationExcelExportDtoZod>;
4157
+ export type CreateMetalloworkingStockOrderExcelExportDtoZodType = z.infer<typeof CreateMetalloworkingStockOrderExcelExportDtoZod>;
4158
+ export type CreateResultWorkExcelExportDtoZodType = z.infer<typeof CreateResultWorkExcelExportDtoZod>;
2938
4159
  export type CreateAssemblyOperationExcelExportDtoZodType = z.infer<typeof CreateAssemblyOperationExcelExportDtoZod>;
2939
4160
  export type CreateOperationPathExcelExportDtoZodType = z.infer<typeof CreateOperationPathExcelExportDtoZod>;
2940
4161
  export type CreateAssemblyStockOrderExcelExportDtoZodType = z.infer<typeof CreateAssemblyStockOrderExcelExportDtoZod>;
@@ -2954,11 +4175,15 @@ export interface ExcelExportPage<TItem> {
2954
4175
  rows: TItem[];
2955
4176
  sourceRowCount?: number;
2956
4177
  }
2957
- export interface TableExcelExportOptions<TColumn extends string, TItem> {
4178
+ export interface ExcelExportFileOptions {
2958
4179
  jobId: string;
2959
- worksheetName: string;
2960
4180
  fileNamePrefix: string;
2961
4181
  logContext: string;
4182
+ }
4183
+ export interface TableExcelExportOptions<TColumn extends string, TItem> extends ExcelExportFileOptions {
4184
+ worksheetName: string;
4185
+ /** При превышении лимита отдаём ZIP с независимыми XLSX, не обрезая строки. */
4186
+ maxRowsPerFile?: number;
2962
4187
  columns: TColumn[];
2963
4188
  columnDefinitions: Readonly<Record<TColumn, ExcelExportColumnDefinition>>;
2964
4189
  columnValueResolvers: Readonly<ExcelExportColumnValueResolvers<TColumn, TItem>>;