@provis/provis-common-be-module 1.4.22 → 1.4.24

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.
@@ -28,5 +28,6 @@ declare const loket: {
28
28
  LIST_RISK: any[];
29
29
  RISK_CONFIG: {};
30
30
  DOCUMENT_CONFIG: {};
31
+ STATUS_DEADLINE: {};
31
32
  };
32
33
  export default loket;
@@ -1,5 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
+ const status_1 = require("./status");
3
4
  const loket = {
4
5
  // LIST RESIKO
5
6
  RISK_CLK001: 'CLK001',
@@ -32,6 +33,7 @@ const loket = {
32
33
  LIST_RISK: [],
33
34
  RISK_CONFIG: {},
34
35
  DOCUMENT_CONFIG: {},
36
+ STATUS_DEADLINE: {},
35
37
  };
36
38
  loket.LIST_RISK.push(loket.RISK_CLK001);
37
39
  loket.LIST_RISK.push(loket.RISK_CLK002);
@@ -256,4 +258,8 @@ loket.DOCUMENT_CONFIG[loket.DOCUMENT_DLK019] = {
256
258
  en: '',
257
259
  },
258
260
  };
261
+ loket.STATUS_DEADLINE[status_1.default.INITIAL.code] = {
262
+ deadline: 60,
263
+ key: 'accidentDateTime'
264
+ };
259
265
  exports.default = loket;
@@ -22,6 +22,13 @@ statusClaim.INITIAL_COMPLETED = {
22
22
  id: 'Pelaporan klaim pertama selesai'
23
23
  },
24
24
  };
25
+ statusClaim.INITIAL_REVISION = {
26
+ code: 103,
27
+ desc: {
28
+ en: 'Initial report revision',
29
+ id: 'Pelaporan klaim revisi'
30
+ },
31
+ };
25
32
  statusClaim.WAIT_DOCUMENT_COMPLETION = {
26
33
  code: 110,
27
34
  desc: {
@@ -101,6 +108,9 @@ statusClaim.CLAIM_REJECTED = {
101
108
  };
102
109
  statusClaim.LIST_ACTIVE = [
103
110
  statusClaim.INITIAL.code,
111
+ statusClaim.INITIAL_APPROVED.code,
112
+ statusClaim.INITIAL_COMPLETED.code,
113
+ statusClaim.INITIAL_REVISION.code,
104
114
  statusClaim.WAIT_DOCUMENT_COMPLETION.code,
105
115
  statusClaim.CHECK_DOCUMENT.code,
106
116
  statusClaim.REVIEW_PROVIS.code,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provis/provis-common-be-module",
3
- "version": "1.4.22",
3
+ "version": "1.4.24",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {