@pksep/zod-shared 0.0.517 → 0.0.519

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.
@@ -343,6 +343,11 @@ export interface IUnicalUsers extends IUnicalEntity {
343
343
  }
344
344
  export interface IWorkloadByEntityResponse {
345
345
  responsibleInfo: any;
346
+ operationWorkload: IWorkloadByOperationData[];
347
+ }
348
+ export interface IWorkloadByOperationData {
349
+ operationName: string;
350
+ typeOperationId: number | string;
346
351
  positionsByDate: IWorkloadPositionByDate[];
347
352
  debt?: boolean;
348
353
  }
@@ -38,5 +38,6 @@ export declare enum tablesEnumConfig {
38
38
  nextOperation = "nextOperation",
39
39
  readyToComplect = "readyToComplect",
40
40
  readyInProcent = "readyInProcent",
41
- readyToAssembleQuantity = "readyToAssembleQuantity"
41
+ readyToAssembleQuantity = "readyToAssembleQuantity",
42
+ deltaTime = "deltaTime"
42
43
  }
@@ -78,4 +78,6 @@ var tablesEnumConfig;
78
78
  tablesEnumConfig["readyInProcent"] = "readyInProcent";
79
79
  // Готовность к сборке
80
80
  tablesEnumConfig["readyToAssembleQuantity"] = "readyToAssembleQuantity";
81
+ // Дельта по времени
82
+ tablesEnumConfig["deltaTime"] = "deltaTime";
81
83
  })(tablesEnumConfig || (exports.tablesEnumConfig = tablesEnumConfig = {}));
@@ -122,6 +122,7 @@ exports.productionTaskByUserTableConfig = [
122
122
  enum_1.tablesEnumConfig.startTime,
123
123
  enum_1.tablesEnumConfig.calculatedCreateTime,
124
124
  enum_1.tablesEnumConfig.calculateNeedsTime,
125
+ enum_1.tablesEnumConfig.deltaTime,
125
126
  enum_1.tablesEnumConfig.orderedByProduction,
126
127
  enum_1.tablesEnumConfig.remainingByProductionTask,
127
128
  enum_1.tablesEnumConfig.timeToProduction,
@@ -149,6 +150,7 @@ exports.productionTaskByOperationTableConfig = [
149
150
  enum_1.tablesEnumConfig.calculatedCreateTime,
150
151
  enum_1.tablesEnumConfig.calculateNeedsTime,
151
152
  enum_1.tablesEnumConfig.calculateAssembleTime,
153
+ enum_1.tablesEnumConfig.deltaTime,
152
154
  enum_1.tablesEnumConfig.orderedByProduction,
153
155
  enum_1.tablesEnumConfig.remainingByProductionTask,
154
156
  enum_1.tablesEnumConfig.timeToProduction,
@@ -175,9 +177,10 @@ exports.productionTaskByEquipmentTableConfig = [
175
177
  enum_1.tablesEnumConfig.startTime,
176
178
  enum_1.tablesEnumConfig.calculatedCreateTime,
177
179
  enum_1.tablesEnumConfig.calculateNeedsTime,
180
+ enum_1.tablesEnumConfig.deltaTime,
178
181
  enum_1.tablesEnumConfig.calculateAssembleTime,
179
- enum_1.tablesEnumConfig.orderedByProduction,
180
182
  enum_1.tablesEnumConfig.remainingByProductionTask,
183
+ enum_1.tablesEnumConfig.orderedByProduction,
181
184
  enum_1.tablesEnumConfig.timeToProduction,
182
185
  enum_1.tablesEnumConfig.operationsLength,
183
186
  enum_1.tablesEnumConfig.prevOperation,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pksep/zod-shared",
3
- "version": "0.0.517",
3
+ "version": "0.0.519",
4
4
  "description": "Zod package for erp project. Contains dto, interfaces, schems, types, enum",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",