rez_core 2.1.110 → 2.1.112

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.
Files changed (79) hide show
  1. package/dist/app.module.js +2 -0
  2. package/dist/app.module.js.map +1 -1
  3. package/dist/constant/global.constant.d.ts +2 -0
  4. package/dist/constant/global.constant.js +3 -1
  5. package/dist/constant/global.constant.js.map +1 -1
  6. package/dist/core.module.js +3 -0
  7. package/dist/core.module.js.map +1 -1
  8. package/dist/module/listmaster/controller/list-master.controller.d.ts +0 -3
  9. package/dist/module/listmaster/controller/list-master.controller.js +0 -16
  10. package/dist/module/listmaster/controller/list-master.controller.js.map +1 -1
  11. package/dist/module/listmaster/service/list-master-item.service.d.ts +1 -2
  12. package/dist/module/listmaster/service/list-master-item.service.js +0 -41
  13. package/dist/module/listmaster/service/list-master-item.service.js.map +1 -1
  14. package/dist/module/master/service/master.service.js +1 -1
  15. package/dist/module/master/service/master.service.js.map +1 -1
  16. package/dist/module/meta/service/entity-service-impl.service.d.ts +2 -0
  17. package/dist/module/meta/service/entity-service-impl.service.js.map +1 -1
  18. package/dist/module/resolver/controller/resolver.controller.d.ts +8 -0
  19. package/dist/module/resolver/controller/resolver.controller.js +45 -0
  20. package/dist/module/resolver/controller/resolver.controller.js.map +1 -0
  21. package/dist/module/resolver/resolver.module.d.ts +2 -0
  22. package/dist/module/resolver/resolver.module.js +25 -0
  23. package/dist/module/resolver/resolver.module.js.map +1 -0
  24. package/dist/module/resolver/service/resolver.service.d.ts +8 -0
  25. package/dist/module/resolver/service/resolver.service.js +68 -0
  26. package/dist/module/resolver/service/resolver.service.js.map +1 -0
  27. package/dist/module/workflow/controller/workflow-list-master.controller.d.ts +11 -0
  28. package/dist/module/workflow/controller/workflow-list-master.controller.js +52 -0
  29. package/dist/module/workflow/controller/workflow-list-master.controller.js.map +1 -0
  30. package/dist/module/workflow/entity/action-category.entity.d.ts +2 -0
  31. package/dist/module/workflow/entity/action-category.entity.js +8 -0
  32. package/dist/module/workflow/entity/action-category.entity.js.map +1 -1
  33. package/dist/module/workflow/entity/action-template-mapping.entity.d.ts +1 -1
  34. package/dist/module/workflow/entity/action-template-mapping.entity.js +3 -3
  35. package/dist/module/workflow/entity/action-template-mapping.entity.js.map +1 -1
  36. package/dist/module/workflow/entity/stage-movement-data.entity.d.ts +9 -0
  37. package/dist/module/workflow/entity/stage-movement-data.entity.js +47 -0
  38. package/dist/module/workflow/entity/stage-movement-data.entity.js.map +1 -0
  39. package/dist/module/workflow/entity/stage.entity.d.ts +1 -0
  40. package/dist/module/workflow/entity/stage.entity.js +4 -0
  41. package/dist/module/workflow/entity/stage.entity.js.map +1 -1
  42. package/dist/module/workflow/entity/workflow-data.entity.d.ts +4 -0
  43. package/dist/module/workflow/entity/workflow-data.entity.js +27 -0
  44. package/dist/module/workflow/entity/workflow-data.entity.js.map +1 -0
  45. package/dist/module/workflow/service/action.service.d.ts +3 -2
  46. package/dist/module/workflow/service/action.service.js +19 -9
  47. package/dist/module/workflow/service/action.service.js.map +1 -1
  48. package/dist/module/workflow/service/stage.service.d.ts +6 -0
  49. package/dist/module/workflow/service/stage.service.js +25 -1
  50. package/dist/module/workflow/service/stage.service.js.map +1 -1
  51. package/dist/module/workflow/service/workflow-list-master.service.d.ts +8 -0
  52. package/dist/module/workflow/service/workflow-list-master.service.js +51 -0
  53. package/dist/module/workflow/service/workflow-list-master.service.js.map +1 -0
  54. package/dist/module/workflow/service/workflow.service.js.map +1 -1
  55. package/dist/module/workflow/workflow.module.js +4 -1
  56. package/dist/module/workflow/workflow.module.js.map +1 -1
  57. package/dist/tsconfig.build.tsbuildinfo +1 -1
  58. package/package.json +1 -1
  59. package/src/app.module.ts +2 -0
  60. package/src/constant/global.constant.ts +2 -0
  61. package/src/core.module.ts +3 -0
  62. package/src/module/listmaster/controller/list-master.controller.ts +16 -16
  63. package/src/module/listmaster/service/list-master-item.service.ts +62 -63
  64. package/src/module/master/service/master.service.ts +1 -1
  65. package/src/module/meta/service/entity-service-impl.service.ts +3 -2
  66. package/src/module/resolver/controller/resolver.controller.ts +35 -0
  67. package/src/module/resolver/resolver.module.ts +12 -0
  68. package/src/module/resolver/service/resolver.service.ts +84 -0
  69. package/src/module/workflow/controller/workflow-list-master.controller.ts +25 -0
  70. package/src/module/workflow/entity/action-category.entity.ts +7 -1
  71. package/src/module/workflow/entity/action-template-mapping.entity.ts +2 -2
  72. package/src/module/workflow/entity/stage-movement-data.entity.ts +26 -0
  73. package/src/module/workflow/entity/stage.entity.ts +3 -0
  74. package/src/module/workflow/entity/workflow-data.entity.ts +11 -0
  75. package/src/module/workflow/service/action.service.ts +61 -32
  76. package/src/module/workflow/service/stage.service.ts +43 -1
  77. package/src/module/workflow/service/workflow-list-master.service.ts +44 -0
  78. package/src/module/workflow/service/workflow.service.ts +3 -3
  79. package/src/module/workflow/workflow.module.ts +4 -1
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-list-master.controller.js","sourceRoot":"","sources":["../../../../src/module/workflow/controller/workflow-list-master.controller.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;AAAA,2CAA8E;AAC9E,0FAAoF;AAG7E,IAAM,4BAA4B,GAAlC,MAAM,4BAA4B;IACvC,YAA6B,eAA0C;QAA1C,oBAAe,GAAf,eAAe,CAA2B;IAAG,CAAC;IAIrE,AAAN,KAAK,CAAC,iBAAiB,CAAS,IAA0B;QACxD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,8BAA8B,CACtE,IAAI,CAAC,QAAQ,CACd,CAAC;QACF,OAAO,MAAM,CAAC;IAChB,CAAC;IAIK,AAAN,KAAK,CAAC,gBAAgB,CAAS,IAAgC;QAC7D,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,eAAe,CAAC,gBAAgB,CACxD,IAAI,CAAC,cAAc,CACpB,CAAC;QACF,OAAO,MAAM,CAAC;IAChB,CAAC;CACF,CAAA;AApBY,oEAA4B;AAKjC;IAFL,IAAA,aAAI,EAAC,oBAAoB,CAAC;IAC1B,IAAA,iBAAQ,EAAC,mBAAU,CAAC,EAAE,CAAC;IACC,WAAA,IAAA,aAAI,GAAE,CAAA;;;;qEAK9B;AAIK;IAFL,IAAA,aAAI,EAAC,mBAAmB,CAAC;IACzB,IAAA,iBAAQ,EAAC,mBAAU,CAAC,EAAE,CAAC;IACA,WAAA,IAAA,aAAI,GAAE,CAAA;;;;oEAK7B;uCAnBU,4BAA4B;IADxC,IAAA,mBAAU,EAAC,gBAAgB,CAAC;qCAEmB,wDAAyB;GAD5D,4BAA4B,CAoBxC"}
@@ -1,4 +1,6 @@
1
1
  import { BaseEntity } from 'src/module/meta/entity/base-entity.entity';
2
2
  export declare class ActionCategory extends BaseEntity {
3
3
  constructor();
4
+ logo: string;
5
+ modalName: string;
4
6
  }
@@ -20,6 +20,14 @@ let ActionCategory = class ActionCategory extends base_entity_entity_1.BaseEntit
20
20
  }
21
21
  };
22
22
  exports.ActionCategory = ActionCategory;
23
+ __decorate([
24
+ (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
25
+ __metadata("design:type", String)
26
+ ], ActionCategory.prototype, "logo", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
29
+ __metadata("design:type", String)
30
+ ], ActionCategory.prototype, "modalName", void 0);
23
31
  exports.ActionCategory = ActionCategory = __decorate([
24
32
  (0, typeorm_1.Entity)({ name: 'cr_wf_action_category' }),
25
33
  __metadata("design:paramtypes", [])
@@ -1 +1 @@
1
- {"version":3,"file":"action-category.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/action-category.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAA+D;AAC/D,6EAAuE;AACvE,qCAAiC;AAG1B,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,+BAAU;IAC5C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,iCAAe,CAAC;IACrC,CAAC;CACF,CAAA;AALY,wCAAc;yBAAd,cAAc;IAD1B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;;GAC7B,cAAc,CAK1B"}
1
+ {"version":3,"file":"action-category.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/action-category.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAA+D;AAC/D,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,cAAc,GAApB,MAAM,cAAe,SAAQ,+BAAU;IAC5C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,iCAAe,CAAC;IACrC,CAAC;CAOF,CAAA;AAXY,wCAAc;AAOzB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4CAC/B;AAGb;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iDAC1B;yBAVP,cAAc;IAD1B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,uBAAuB,EAAE,CAAC;;GAC7B,cAAc,CAW1B"}
@@ -2,5 +2,5 @@ import { BaseEntity } from 'src/module/meta/entity/base-entity.entity';
2
2
  export declare class ActionTemplateMapping extends BaseEntity {
3
3
  constructor();
4
4
  stg_act_mapping_id: number;
5
- template_id: number;
5
+ template_code: string;
6
6
  }
@@ -25,9 +25,9 @@ __decorate([
25
25
  __metadata("design:type", Number)
26
26
  ], ActionTemplateMapping.prototype, "stg_act_mapping_id", void 0);
27
27
  __decorate([
28
- (0, typeorm_1.Column)({ type: 'int', nullable: true }),
29
- __metadata("design:type", Number)
30
- ], ActionTemplateMapping.prototype, "template_id", void 0);
28
+ (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
29
+ __metadata("design:type", String)
30
+ ], ActionTemplateMapping.prototype, "template_code", void 0);
31
31
  exports.ActionTemplateMapping = ActionTemplateMapping = __decorate([
32
32
  (0, typeorm_1.Entity)({ name: 'cr_wf_action_template_mapping' }),
33
33
  __metadata("design:paramtypes", [])
@@ -1 +1 @@
1
- {"version":3,"file":"action-template-mapping.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/action-template-mapping.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAAuE;AACvE,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,+BAAU;IACnD;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,yCAAuB,CAAC;IAC7C,CAAC;CAOF,CAAA;AAXY,sDAAqB;AAOhC;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iEACb;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DACpB;gCAVT,qBAAqB;IADjC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,+BAA+B,EAAE,CAAC;;GACrC,qBAAqB,CAWjC"}
1
+ {"version":3,"file":"action-template-mapping.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/action-template-mapping.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAAuE;AACvE,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,+BAAU;IACnD;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,yCAAuB,CAAC;IAC7C,CAAC;CAOF,CAAA;AAXY,sDAAqB;AAOhC;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;iEACb;AAG3B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;4DACtB;gCAVX,qBAAqB;IADjC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,+BAA+B,EAAE,CAAC;;GACrC,qBAAqB,CAWjC"}
@@ -0,0 +1,9 @@
1
+ import { BaseEntity } from 'src/module/meta/entity/base-entity.entity';
2
+ export declare class StageMovementData extends BaseEntity {
3
+ constructor();
4
+ current_user_id: number;
5
+ stage_action_mapping_id: number;
6
+ start_date: Date;
7
+ end_date: Date;
8
+ is_current: string;
9
+ }
@@ -0,0 +1,47 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.StageMovementData = void 0;
13
+ const global_constant_1 = require("../../../constant/global.constant");
14
+ const base_entity_entity_1 = require("../../meta/entity/base-entity.entity");
15
+ const typeorm_1 = require("typeorm");
16
+ let StageMovementData = class StageMovementData extends base_entity_entity_1.BaseEntity {
17
+ constructor() {
18
+ super();
19
+ this.entity_type = global_constant_1.STAGE_MOVEMENT_DATA;
20
+ }
21
+ };
22
+ exports.StageMovementData = StageMovementData;
23
+ __decorate([
24
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
25
+ __metadata("design:type", Number)
26
+ ], StageMovementData.prototype, "current_user_id", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)({ type: 'int', nullable: true }),
29
+ __metadata("design:type", Number)
30
+ ], StageMovementData.prototype, "stage_action_mapping_id", void 0);
31
+ __decorate([
32
+ (0, typeorm_1.Column)({ type: 'date', nullable: true }),
33
+ __metadata("design:type", Date)
34
+ ], StageMovementData.prototype, "start_date", void 0);
35
+ __decorate([
36
+ (0, typeorm_1.Column)({ type: 'date', nullable: true }),
37
+ __metadata("design:type", Date)
38
+ ], StageMovementData.prototype, "end_date", void 0);
39
+ __decorate([
40
+ (0, typeorm_1.Column)({ type: 'varchar', nullable: true }),
41
+ __metadata("design:type", String)
42
+ ], StageMovementData.prototype, "is_current", void 0);
43
+ exports.StageMovementData = StageMovementData = __decorate([
44
+ (0, typeorm_1.Entity)({ name: 'cr_wf_stage_movement_data' }),
45
+ __metadata("design:paramtypes", [])
46
+ ], StageMovementData);
47
+ //# sourceMappingURL=stage-movement-data.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"stage-movement-data.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/stage-movement-data.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAAmE;AACnE,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,iBAAiB,GAAvB,MAAM,iBAAkB,SAAQ,+BAAU;IAC/C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,qCAAmB,CAAC;IACzC,CAAC;CAgBF,CAAA;AApBY,8CAAiB;AAO5B;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;0DAChB;AAGxB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kEACR;AAGhC;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC7B,IAAI;qDAAC;AAGjB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAC/B,IAAI;mDAAC;AAGf;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;qDACzB;4BAnBR,iBAAiB;IAD7B,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,2BAA2B,EAAE,CAAC;;GACjC,iBAAiB,CAoB7B"}
@@ -2,5 +2,6 @@ import { BaseEntity } from 'src/module/meta/entity/base-entity.entity';
2
2
  export declare class Stage extends BaseEntity {
3
3
  constructor();
4
4
  stage_group_id: number;
5
+ full_name: string;
5
6
  sortindex: number;
6
7
  }
@@ -24,6 +24,10 @@ __decorate([
24
24
  (0, typeorm_1.Column)({ type: 'int', nullable: true }),
25
25
  __metadata("design:type", Number)
26
26
  ], Stage.prototype, "stage_group_id", void 0);
27
+ __decorate([
28
+ (0, typeorm_1.Column)({ type: 'varchar', length: 100, nullable: true }),
29
+ __metadata("design:type", String)
30
+ ], Stage.prototype, "full_name", void 0);
27
31
  __decorate([
28
32
  (0, typeorm_1.Column)({ type: 'int', nullable: true }),
29
33
  __metadata("design:type", Number)
@@ -1 +1 @@
1
- {"version":3,"file":"stage.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/stage.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAAqD;AACrD,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,KAAK,GAAX,MAAM,KAAM,SAAQ,+BAAU;IACnC;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,uBAAK,CAAC;IAC3B,CAAC;CAOF,CAAA;AAXY,sBAAK;AAOhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACjB;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCACtB;gBAVP,KAAK;IADjB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;;GACnB,KAAK,CAWjB"}
1
+ {"version":3,"file":"stage.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/stage.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAAqD;AACrD,6EAAuE;AACvE,qCAAyC;AAGlC,IAAM,KAAK,GAAX,MAAM,KAAM,SAAQ,+BAAU;IACnC;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,uBAAK,CAAC;IAC3B,CAAC;CAUF,CAAA;AAdY,sBAAK;AAOhB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;6CACjB;AAGvB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,SAAS,EAAE,MAAM,EAAE,GAAG,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCACvC;AAGlB;IADC,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;wCACtB;gBAbP,KAAK;IADjB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,aAAa,EAAE,CAAC;;GACnB,KAAK,CAcjB"}
@@ -0,0 +1,4 @@
1
+ import { BaseEntity } from 'src/module/meta/entity/base-entity.entity';
2
+ export declare class WorkFlowData extends BaseEntity {
3
+ constructor();
4
+ }
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.WorkFlowData = void 0;
13
+ const global_constant_1 = require("../../../constant/global.constant");
14
+ const base_entity_entity_1 = require("../../meta/entity/base-entity.entity");
15
+ const typeorm_1 = require("typeorm");
16
+ let WorkFlowData = class WorkFlowData extends base_entity_entity_1.BaseEntity {
17
+ constructor() {
18
+ super();
19
+ this.entity_type = global_constant_1.WORKFLOW_DATA;
20
+ }
21
+ };
22
+ exports.WorkFlowData = WorkFlowData;
23
+ exports.WorkFlowData = WorkFlowData = __decorate([
24
+ (0, typeorm_1.Entity)({ name: 'cr_workflow_data' }),
25
+ __metadata("design:paramtypes", [])
26
+ ], WorkFlowData);
27
+ //# sourceMappingURL=workflow-data.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-data.entity.js","sourceRoot":"","sources":["../../../../src/module/workflow/entity/workflow-data.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,uEAA6D;AAC7D,6EAAuE;AACvE,qCAAiC;AAG1B,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,+BAAU;IAC1C;QACE,KAAK,EAAE,CAAC;QACR,IAAI,CAAC,WAAW,GAAG,+BAAa,CAAC;IACnC,CAAC;CACF,CAAA;AALY,oCAAY;uBAAZ,YAAY;IADxB,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,kBAAkB,EAAE,CAAC;;GACxB,YAAY,CAKxB"}
@@ -1,8 +1,9 @@
1
1
  import { BaseEntity } from 'src/module/meta/entity/base-entity.entity';
2
2
  import { EntityServiceImpl } from 'src/module/meta/service/entity-service-impl.service';
3
3
  import { UserData } from 'src/module/user/entity/user.entity';
4
- import { EntityManager } from 'typeorm';
4
+ import { DataSource, EntityManager } from 'typeorm';
5
5
  export declare class ActionService extends EntityServiceImpl {
6
- constructor();
6
+ private readonly dataSource;
7
+ constructor(dataSource: DataSource);
7
8
  createEntity(entityData: BaseEntity, loggedInUser: UserData | null, manager?: EntityManager | null, appcode?: string): Promise<any>;
8
9
  }
@@ -12,28 +12,38 @@ Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.ActionService = void 0;
13
13
  const common_1 = require("@nestjs/common");
14
14
  const entity_service_impl_service_1 = require("../../meta/service/entity-service-impl.service");
15
+ const typeorm_1 = require("typeorm");
15
16
  let ActionService = class ActionService extends entity_service_impl_service_1.EntityServiceImpl {
16
- constructor() {
17
+ constructor(dataSource) {
17
18
  super();
19
+ this.dataSource = dataSource;
18
20
  }
19
21
  async createEntity(entityData, loggedInUser, manager, appcode) {
20
- console.log("entityData", entityData);
22
+ console.log('entityData', entityData);
21
23
  let actionData = entityData;
22
24
  let action = await super.createEntity(entityData, loggedInUser, manager, appcode);
23
25
  let stageActionMapping = {
24
26
  action_id: action.id,
25
27
  stage_id: actionData.stage_id,
26
- entity_type: "STGM",
28
+ entity_type: 'STGM',
27
29
  };
28
30
  let stageActionMappingData = await super.createEntity(stageActionMapping, loggedInUser, manager, appcode);
29
- if (actionData.template.length > 0) {
30
- let templates = actionData.template;
31
+ if (Array.isArray(actionData.template) && actionData.template.length > 0) {
32
+ const templates = actionData.template;
31
33
  for (let i = 0; i < templates.length; i++) {
32
- let actionTemplateMapping = {
34
+ const templateId = templates[i];
35
+ const templateResult = await this.dataSource.query(`SELECT code FROM cr_wf_comm_template WHERE id = ?`, [templateId]);
36
+ if (templateResult.length === 0) {
37
+ console.warn(`Template not found for id: ${templateId}`);
38
+ continue;
39
+ }
40
+ const templateCode = templateResult[0].code;
41
+ const actionTemplateMapping = {
33
42
  stg_act_mapping_id: stageActionMappingData.id,
34
- template_code: "",
35
- entity_type: "ACTM",
43
+ template_code: templateCode,
44
+ entity_type: 'ATMP',
36
45
  };
46
+ await super.createEntity(actionTemplateMapping, loggedInUser, manager, appcode);
37
47
  }
38
48
  }
39
49
  return actionData;
@@ -42,6 +52,6 @@ let ActionService = class ActionService extends entity_service_impl_service_1.En
42
52
  exports.ActionService = ActionService;
43
53
  exports.ActionService = ActionService = __decorate([
44
54
  (0, common_1.Injectable)(),
45
- __metadata("design:paramtypes", [])
55
+ __metadata("design:paramtypes", [typeorm_1.DataSource])
46
56
  ], ActionService);
47
57
  //# sourceMappingURL=action.service.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"action.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/action.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAE5C,gGAAwF;AAKjF,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,+CAAiB;IAChD;QACI,KAAK,EAAE,CAAC;IACZ,CAAC;IAED,KAAK,CAAC,YAAY,CAAC,UAAsB,EAAE,YAA6B,EAAE,OAA8B,EAAE,OAAgB;QACtH,OAAO,CAAC,GAAG,CAAC,YAAY,EAAE,UAAU,CAAC,CAAC;QAEtC,IAAI,UAAU,GAAG,UAAiB,CAAC;QAEnC,IAAI,MAAM,GAAG,MAAM,KAAK,CAAC,YAAY,CAAC,UAAU,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,CAAC,CAAA;QAEjF,IAAI,kBAAkB,GAAC;YACnB,SAAS,EAAE,MAAM,CAAC,EAAE;YACpB,QAAQ,EAAE,UAAU,CAAC,QAAQ;YAC7B,WAAW,EAAC,MAAM;SACd,CAAC;QAET,IAAI,sBAAsB,GAAG,MAAM,KAAK,CAAC,YAAY,CAAC,kBAAkB,EAAE,YAAY,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;QAE1G,IAAG,UAAU,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YAEhC,IAAI,SAAS,GAAC,UAAU,CAAC,QAAQ,CAAC;YAEnC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAI3C,IAAI,qBAAqB,GAAE;oBACvB,kBAAkB,EAAE,sBAAsB,CAAC,EAAE;oBAC7C,aAAa,EAAC,EAAE;oBAChB,WAAW,EAAE,MAAM;iBACf,CAAC;YAIV,CAAC;QAGJ,CAAC;QAED,OAAO,UAAU,CAAC;IACtB,CAAC;CACJ,CAAA;AA3CY,sCAAa;wBAAb,aAAa;IADzB,IAAA,mBAAU,GAAE;;GACA,aAAa,CA2CzB"}
1
+ {"version":3,"file":"action.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/action.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAE5C,gGAAwF;AAExF,qCAAoD;AAG7C,IAAM,aAAa,GAAnB,MAAM,aAAc,SAAQ,+CAAiB;IAClD,YAA6B,UAAsB;QACjD,KAAK,EAAE,CAAC;QADmB,eAAU,GAAV,UAAU,CAAY;IAEnD,CAAC;IAED,KAAK,CAAC,YAAY,CAChB,UAAsB,EACtB,YAA6B,EAC7B,OAA8B,EAC9B,OAAgB;QAEhB,OAAO,CAAC,GAAG,CAAC,YAAY,EAAE,UAAU,CAAC,CAAC;QAEtC,IAAI,UAAU,GAAG,UAAiB,CAAC;QAEnC,IAAI,MAAM,GAAG,MAAM,KAAK,CAAC,YAAY,CACnC,UAAU,EACV,YAAY,EACZ,OAAO,EACP,OAAO,CACR,CAAC;QAEF,IAAI,kBAAkB,GAAG;YACvB,SAAS,EAAE,MAAM,CAAC,EAAE;YACpB,QAAQ,EAAE,UAAU,CAAC,QAAQ;YAC7B,WAAW,EAAE,MAAM;SACb,CAAC;QAET,IAAI,sBAAsB,GAAG,MAAM,KAAK,CAAC,YAAY,CACnD,kBAAkB,EAClB,YAAY,EACZ,OAAO,EACP,OAAO,CACR,CAAC;QAEF,IAAI,KAAK,CAAC,OAAO,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,UAAU,CAAC,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;YACzE,MAAM,SAAS,GAAG,UAAU,CAAC,QAAQ,CAAC;YAEtC,KAAK,IAAI,CAAC,GAAG,CAAC,EAAE,CAAC,GAAG,SAAS,CAAC,MAAM,EAAE,CAAC,EAAE,EAAE,CAAC;gBAC1C,MAAM,UAAU,GAAG,SAAS,CAAC,CAAC,CAAC,CAAC;gBAGhC,MAAM,cAAc,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,CAChD,mDAAmD,EACnD,CAAC,UAAU,CAAC,CACb,CAAC;gBAEF,IAAI,cAAc,CAAC,MAAM,KAAK,CAAC,EAAE,CAAC;oBAChC,OAAO,CAAC,IAAI,CAAC,8BAA8B,UAAU,EAAE,CAAC,CAAC;oBACzD,SAAS;gBACX,CAAC;gBAED,MAAM,YAAY,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;gBAG5C,MAAM,qBAAqB,GAAG;oBAC5B,kBAAkB,EAAE,sBAAsB,CAAC,EAAE;oBAC7C,aAAa,EAAE,YAAY;oBAC3B,WAAW,EAAE,MAAM;iBACb,CAAC;gBAET,MAAM,KAAK,CAAC,YAAY,CACtB,qBAAqB,EACrB,YAAY,EACZ,OAAO,EACP,OAAO,CACR,CAAC;YACJ,CAAC;QACH,CAAC;QAED,OAAO,UAAU,CAAC;IACpB,CAAC;CACF,CAAA;AAxEY,sCAAa;wBAAb,aAAa;IADzB,IAAA,mBAAU,GAAE;qCAE8B,oBAAU;GADxC,aAAa,CAwEzB"}
@@ -1,3 +1,9 @@
1
+ import { BaseEntity } from 'src/module/meta/entity/base-entity.entity';
1
2
  import { EntityServiceImpl } from 'src/module/meta/service/entity-service-impl.service';
3
+ import { UserData } from 'src/module/user/entity/user.entity';
4
+ import { DataSource, EntityManager } from 'typeorm';
2
5
  export declare class StageService extends EntityServiceImpl {
6
+ private readonly dataSource;
7
+ constructor(dataSource: DataSource);
8
+ createEntity(entityData: BaseEntity, loggedInUser: UserData | null, manager?: EntityManager | null, appcode?: string): Promise<any>;
3
9
  }
@@ -5,14 +5,38 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
5
5
  else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
6
  return c > 3 && r && Object.defineProperty(target, key, r), r;
7
7
  };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
8
11
  Object.defineProperty(exports, "__esModule", { value: true });
9
12
  exports.StageService = void 0;
10
13
  const common_1 = require("@nestjs/common");
11
14
  const entity_service_impl_service_1 = require("../../meta/service/entity-service-impl.service");
15
+ const typeorm_1 = require("typeorm");
12
16
  let StageService = class StageService extends entity_service_impl_service_1.EntityServiceImpl {
17
+ constructor(dataSource) {
18
+ super();
19
+ this.dataSource = dataSource;
20
+ }
21
+ async createEntity(entityData, loggedInUser, manager, appcode) {
22
+ const stageData = entityData;
23
+ let stageGroupName = '';
24
+ if (stageData.stage_group_id) {
25
+ const result = await this.dataSource.query(`SELECT name FROM cr_wf_stage_group WHERE id = ?`, [stageData.stage_group_id]);
26
+ if (result.length > 0) {
27
+ stageGroupName = result[0].name;
28
+ }
29
+ }
30
+ if (stageGroupName && stageData.name) {
31
+ stageData.full_name = `${stageGroupName}-${stageData.name}`;
32
+ }
33
+ const savedStage = await super.createEntity(stageData, loggedInUser, manager, appcode);
34
+ return savedStage;
35
+ }
13
36
  };
14
37
  exports.StageService = StageService;
15
38
  exports.StageService = StageService = __decorate([
16
- (0, common_1.Injectable)()
39
+ (0, common_1.Injectable)(),
40
+ __metadata("design:paramtypes", [typeorm_1.DataSource])
17
41
  ], StageService);
18
42
  //# sourceMappingURL=stage.service.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"stage.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/stage.service.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAA4C;AAC5C,gGAAwF;AAGjF,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,+CAAiB;CAAG,CAAA;AAAzC,oCAAY;uBAAZ,YAAY;IADxB,IAAA,mBAAU,GAAE;GACA,YAAY,CAA6B"}
1
+ {"version":3,"file":"stage.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/stage.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAE5C,gGAAwF;AAExF,qCAAoD;AAG7C,IAAM,YAAY,GAAlB,MAAM,YAAa,SAAQ,+CAAiB;IACjD,YAA6B,UAAsB;QACjD,KAAK,EAAE,CAAC;QADmB,eAAU,GAAV,UAAU,CAAY;IAEnD,CAAC;IAED,KAAK,CAAC,YAAY,CAChB,UAAsB,EACtB,YAA6B,EAC7B,OAA8B,EAC9B,OAAgB;QAEhB,MAAM,SAAS,GAAG,UAAiB,CAAC;QAGpC,IAAI,cAAc,GAAG,EAAE,CAAC;QACxB,IAAI,SAAS,CAAC,cAAc,EAAE,CAAC;YAC7B,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,CACxC,iDAAiD,EACjD,CAAC,SAAS,CAAC,cAAc,CAAC,CAC3B,CAAC;YAEF,IAAI,MAAM,CAAC,MAAM,GAAG,CAAC,EAAE,CAAC;gBACtB,cAAc,GAAG,MAAM,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;YAClC,CAAC;QACH,CAAC;QAED,IAAI,cAAc,IAAI,SAAS,CAAC,IAAI,EAAE,CAAC;YACrC,SAAS,CAAC,SAAS,GAAG,GAAG,cAAc,IAAI,SAAS,CAAC,IAAI,EAAE,CAAC;QAC9D,CAAC;QAED,MAAM,UAAU,GAAG,MAAM,KAAK,CAAC,YAAY,CACzC,SAAS,EACT,YAAY,EACZ,OAAO,EACP,OAAO,CACR,CAAC;QAEF,OAAO,UAAU,CAAC;IACpB,CAAC;CACF,CAAA;AAvCY,oCAAY;uBAAZ,YAAY;IADxB,IAAA,mBAAU,GAAE;qCAE8B,oBAAU;GADxC,YAAY,CAuCxB"}
@@ -0,0 +1,8 @@
1
+ import { EntityServiceImpl } from 'src/module/meta/service/entity-service-impl.service';
2
+ import { DataSource } from 'typeorm';
3
+ export declare class WorkflowListMasterService extends EntityServiceImpl {
4
+ private readonly dataSource;
5
+ constructor(dataSource: DataSource);
6
+ getActionCategoryListByStageId(stageId: number): Promise<any[]>;
7
+ getStagesByGroup(stageGroupId: number): Promise<any[]>;
8
+ }
@@ -0,0 +1,51 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.WorkflowListMasterService = void 0;
13
+ const common_1 = require("@nestjs/common");
14
+ const entity_service_impl_service_1 = require("../../meta/service/entity-service-impl.service");
15
+ const typeorm_1 = require("typeorm");
16
+ let WorkflowListMasterService = class WorkflowListMasterService extends entity_service_impl_service_1.EntityServiceImpl {
17
+ constructor(dataSource) {
18
+ super();
19
+ this.dataSource = dataSource;
20
+ }
21
+ async getActionCategoryListByStageId(stageId) {
22
+ const results = await this.dataSource.query(`
23
+ SELECT
24
+ ac.logo AS logo,
25
+ ac.name AS name,
26
+ ac.modalName AS modalName,
27
+ a.action_requirement AS actionRequirement
28
+ FROM cr_wf_stage_action_mapping sam
29
+ JOIN cr_wf_action a ON sam.action_id = a.id
30
+ JOIN cr_wf_action_category ac ON a.action_cat_id = ac.id
31
+ WHERE sam.stage_id = ?
32
+ `, [stageId]);
33
+ return results.map((item) => ({
34
+ logo: item.logo,
35
+ name: item.name,
36
+ modalName: item.modalName,
37
+ actionRequirement: item.actionRequirement,
38
+ actionStatus: 'Done',
39
+ }));
40
+ }
41
+ async getStagesByGroup(stageGroupId) {
42
+ const results = await this.dataSource.query(`SELECT id, full_name FROM cr_wf_stage WHERE stage_group_id = ?`, [stageGroupId]);
43
+ return results;
44
+ }
45
+ };
46
+ exports.WorkflowListMasterService = WorkflowListMasterService;
47
+ exports.WorkflowListMasterService = WorkflowListMasterService = __decorate([
48
+ (0, common_1.Injectable)(),
49
+ __metadata("design:paramtypes", [typeorm_1.DataSource])
50
+ ], WorkflowListMasterService);
51
+ //# sourceMappingURL=workflow-list-master.service.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"workflow-list-master.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/workflow-list-master.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,gGAAwF;AACxF,qCAAqC;AAG9B,IAAM,yBAAyB,GAA/B,MAAM,yBAA0B,SAAQ,+CAAiB;IAC9D,YAA6B,UAAsB;QACjD,KAAK,EAAE,CAAC;QADmB,eAAU,GAAV,UAAU,CAAY;IAEnD,CAAC;IAED,KAAK,CAAC,8BAA8B,CAAC,OAAe;QAClD,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,CACzC;;;;;;;;;;OAUC,EACD,CAAC,OAAO,CAAC,CACV,CAAC;QAGF,OAAO,OAAO,CAAC,GAAG,CAAC,CAAC,IAAS,EAAE,EAAE,CAAC,CAAC;YACjC,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,IAAI,EAAE,IAAI,CAAC,IAAI;YACf,SAAS,EAAE,IAAI,CAAC,SAAS;YACzB,iBAAiB,EAAE,IAAI,CAAC,iBAAiB;YACzC,YAAY,EAAE,MAAM;SACrB,CAAC,CAAC,CAAC;IACN,CAAC;IAED,KAAK,CAAC,gBAAgB,CAAC,YAAoB;QACzC,MAAM,OAAO,GAAG,MAAM,IAAI,CAAC,UAAU,CAAC,KAAK,CACzC,gEAAgE,EAChE,CAAC,YAAY,CAAC,CACf,CAAC;QACF,OAAO,OAAO,CAAC;IACjB,CAAC;CACF,CAAA;AAtCY,8DAAyB;oCAAzB,yBAAyB;IADrC,IAAA,mBAAU,GAAE;qCAE8B,oBAAU;GADxC,yBAAyB,CAsCrC"}
@@ -1 +1 @@
1
- {"version":3,"file":"workflow.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/workflow.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,gGAAwF;AAGjF,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,+CAAiB;IAClD;QACI,KAAK,EAAE,CAAC;IACZ,CAAC;CACJ,CAAA;AAJY,0CAAe;0BAAf,eAAe;IAD3B,IAAA,mBAAU,GAAE;;GACA,eAAe,CAI3B"}
1
+ {"version":3,"file":"workflow.service.js","sourceRoot":"","sources":["../../../../src/module/workflow/service/workflow.service.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,2CAA4C;AAC5C,gGAAwF;AAGjF,IAAM,eAAe,GAArB,MAAM,eAAgB,SAAQ,+CAAiB;IACpD;QACE,KAAK,EAAE,CAAC;IACV,CAAC;CACF,CAAA;AAJY,0CAAe;0BAAf,eAAe;IAD3B,IAAA,mBAAU,GAAE;;GACA,eAAe,CAI3B"}
@@ -26,6 +26,8 @@ const stage_group_service_1 = require("./service/stage-group.service");
26
26
  const typeorm_1 = require("@nestjs/typeorm");
27
27
  const entity_module_1 = require("../meta/entity.module");
28
28
  const action_entity_1 = require("./entity/action.entity");
29
+ const workflow_list_master_service_1 = require("./service/workflow-list-master.service");
30
+ const workflow_list_master_controller_1 = require("./controller/workflow-list-master.controller");
29
31
  let WorkflowModule = class WorkflowModule {
30
32
  };
31
33
  exports.WorkflowModule = WorkflowModule;
@@ -59,6 +61,7 @@ exports.WorkflowModule = WorkflowModule = __decorate([
59
61
  { provide: 'ActionService', useClass: action_service_1.ActionService },
60
62
  { provide: 'StageService', useClass: stage_service_1.StageService },
61
63
  { provide: 'StageGroupService', useClass: stage_group_service_1.StageGroupService },
64
+ workflow_list_master_service_1.WorkflowListMasterService,
62
65
  ],
63
66
  exports: [
64
67
  'WorkflowService',
@@ -70,7 +73,7 @@ exports.WorkflowModule = WorkflowModule = __decorate([
70
73
  'StageService',
71
74
  'StageGroupService',
72
75
  ],
73
- controllers: [],
76
+ controllers: [workflow_list_master_controller_1.WorkflowListMasterController],
74
77
  })
75
78
  ], WorkflowModule);
76
79
  //# sourceMappingURL=workflow.module.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"workflow.module.js","sourceRoot":"","sources":["../../../src/module/workflow/workflow.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,8DAAoD;AACpD,iEAA6D;AAC7D,oEAAyD;AACzD,wDAA8C;AAC9C,4EAAiE;AACjE,wEAA6D;AAC7D,4FAAgF;AAChF,sFAA0E;AAC1E,+EAA0E;AAC1E,2EAAsE;AACtE,yFAAmF;AACnF,+FAAyF;AACzF,6DAAyD;AACzD,2DAAuD;AACvD,uEAAkE;AAClE,6CAAgD;AAChD,yDAAqD;AACrD,0DAAgD;AA4CzC,IAAM,cAAc,GAApB,MAAM,cAAc;CAAG,CAAA;AAAjB,wCAAc;yBAAd,cAAc;IA1C1B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE;YACP,uBAAa,CAAC,UAAU,CAAC;gBACvB,0BAAQ;gBACR,sBAAM;gBACN,uCAAc;gBACd,oBAAK;gBACL,+BAAU;gBACV,mCAAY;gBACZ,sDAAqB;gBACrB,gDAAkB;aACnB,CAAC;YACF,4BAAY;SACb;QACD,SAAS,EAAE;YACT,EAAE,OAAO,EAAE,iBAAiB,EAAE,QAAQ,EAAE,kCAAe,EAAE;YACzD,EAAE,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,+CAAqB,EAAE;YACrE,EAAE,OAAO,EAAE,qBAAqB,EAAE,QAAQ,EAAE,2CAAmB,EAAE;YACjE;gBACE,OAAO,EAAE,8BAA8B;gBACvC,QAAQ,EAAE,8DAA4B;aACvC;YACD;gBACE,OAAO,EAAE,2BAA2B;gBACpC,QAAQ,EAAE,wDAAyB;aACpC;YACD,EAAE,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,8BAAa,EAAE;YACrD,EAAE,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,4BAAY,EAAE;YACnD,EAAE,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,uCAAiB,EAAE;SAC9D;QACD,OAAO,EAAE;YACP,iBAAiB;YACjB,uBAAuB;YACvB,qBAAqB;YACrB,8BAA8B;YAC9B,2BAA2B;YAC3B,eAAe;YACf,cAAc;YACd,mBAAmB;SACpB;QACD,WAAW,EAAE,EAAE;KAChB,CAAC;GACW,cAAc,CAAG"}
1
+ {"version":3,"file":"workflow.module.js","sourceRoot":"","sources":["../../../src/module/workflow/workflow.module.ts"],"names":[],"mappings":";;;;;;;;;AAAA,2CAAwC;AACxC,8DAAoD;AACpD,iEAA6D;AAC7D,oEAAyD;AACzD,wDAA8C;AAC9C,4EAAiE;AACjE,wEAA6D;AAC7D,4FAAgF;AAChF,sFAA0E;AAC1E,+EAA0E;AAC1E,2EAAsE;AACtE,yFAAmF;AACnF,+FAAyF;AACzF,6DAAyD;AACzD,2DAAuD;AACvD,uEAAkE;AAClE,6CAAgD;AAChD,yDAAqD;AACrD,0DAAgD;AAChD,yFAAmF;AACnF,kGAA4F;AA6CrF,IAAM,cAAc,GAApB,MAAM,cAAc;CAAG,CAAA;AAAjB,wCAAc;yBAAd,cAAc;IA3C1B,IAAA,eAAM,EAAC;QACN,OAAO,EAAE;YACP,uBAAa,CAAC,UAAU,CAAC;gBACvB,0BAAQ;gBACR,sBAAM;gBACN,uCAAc;gBACd,oBAAK;gBACL,+BAAU;gBACV,mCAAY;gBACZ,sDAAqB;gBACrB,gDAAkB;aACnB,CAAC;YACF,4BAAY;SACb;QACD,SAAS,EAAE;YACT,EAAE,OAAO,EAAE,iBAAiB,EAAE,QAAQ,EAAE,kCAAe,EAAE;YACzD,EAAE,OAAO,EAAE,uBAAuB,EAAE,QAAQ,EAAE,+CAAqB,EAAE;YACrE,EAAE,OAAO,EAAE,qBAAqB,EAAE,QAAQ,EAAE,2CAAmB,EAAE;YACjE;gBACE,OAAO,EAAE,8BAA8B;gBACvC,QAAQ,EAAE,8DAA4B;aACvC;YACD;gBACE,OAAO,EAAE,2BAA2B;gBACpC,QAAQ,EAAE,wDAAyB;aACpC;YACD,EAAE,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,8BAAa,EAAE;YACrD,EAAE,OAAO,EAAE,cAAc,EAAE,QAAQ,EAAE,4BAAY,EAAE;YACnD,EAAE,OAAO,EAAE,mBAAmB,EAAE,QAAQ,EAAE,uCAAiB,EAAE;YAC7D,wDAAyB;SAC1B;QACD,OAAO,EAAE;YACP,iBAAiB;YACjB,uBAAuB;YACvB,qBAAqB;YACrB,8BAA8B;YAC9B,2BAA2B;YAC3B,eAAe;YACf,cAAc;YACd,mBAAmB;SACpB;QACD,WAAW,EAAE,CAAC,8DAA4B,CAAC;KAC5C,CAAC;GACW,cAAc,CAAG"}