@provis/provis-common-be-module 1.7.18 → 1.7.20
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.
|
@@ -6,6 +6,11 @@ declare const doc: {
|
|
|
6
6
|
DOC_DOCUMENTATION: string;
|
|
7
7
|
DOC_POLICE_REPORT: string;
|
|
8
8
|
DOC_OTHER: string;
|
|
9
|
+
DOC_LOD: string;
|
|
10
|
+
DOC_SPGR: string;
|
|
11
|
+
DOC_SPGR_SIGNED: string;
|
|
12
|
+
DOC_LOD_SIGNED: string;
|
|
13
|
+
DOC_PAYMENT: string;
|
|
9
14
|
LIST_DESC: {};
|
|
10
15
|
LIST_ACTIVE: any[];
|
|
11
16
|
LIST_RISK: any[];
|
|
@@ -9,6 +9,11 @@ const doc = {
|
|
|
9
9
|
DOC_DOCUMENTATION: 'DOC_DOCUMENTATION',
|
|
10
10
|
DOC_POLICE_REPORT: 'DOC_POLICE_REPORT',
|
|
11
11
|
DOC_OTHER: 'DOC_OTHER',
|
|
12
|
+
DOC_LOD: 'DOC_LOD',
|
|
13
|
+
DOC_SPGR: 'DOC_SPGR',
|
|
14
|
+
DOC_SPGR_SIGNED: 'DOC_SPGR_SIGNED',
|
|
15
|
+
DOC_LOD_SIGNED: 'DOC_LOD_SIGNED',
|
|
16
|
+
DOC_PAYMENT: 'DOC_PAYMENT',
|
|
12
17
|
LIST_DESC: {},
|
|
13
18
|
LIST_ACTIVE: [],
|
|
14
19
|
LIST_RISK: [],
|
|
@@ -45,6 +50,26 @@ doc.LIST_DESC = {
|
|
|
45
50
|
id: "Dokumen lain yang mendukung proses klaim",
|
|
46
51
|
en: "Other documents that support the claims process",
|
|
47
52
|
},
|
|
53
|
+
[doc.DOC_LOD]: {
|
|
54
|
+
id: "Dokumen LOD",
|
|
55
|
+
en: "LOD document",
|
|
56
|
+
},
|
|
57
|
+
[doc.DOC_SPGR]: {
|
|
58
|
+
id: "Surat Pernyataan Ganti Rugi",
|
|
59
|
+
en: "Statement of Compensation",
|
|
60
|
+
},
|
|
61
|
+
[doc.DOC_SPGR_SIGNED]: {
|
|
62
|
+
id: "Surat Perjanjian Ganti Rugi Yang Telah ditandatangani",
|
|
63
|
+
en: "Signed Compensation Agreement",
|
|
64
|
+
},
|
|
65
|
+
[doc.DOC_LOD_SIGNED]: {
|
|
66
|
+
id: "Dokumen LOD yang sudah ditandatangani",
|
|
67
|
+
en: "Signed LOD document",
|
|
68
|
+
},
|
|
69
|
+
[doc.DOC_PAYMENT]: {
|
|
70
|
+
id: "Bukti Bayar",
|
|
71
|
+
en: "Payment Proof",
|
|
72
|
+
},
|
|
48
73
|
};
|
|
49
74
|
doc.LIST_ACTIVE = [
|
|
50
75
|
doc.DOC_RESI,
|
|
@@ -57,7 +82,7 @@ doc.LIST_ACTIVE = [
|
|
|
57
82
|
];
|
|
58
83
|
doc.STATUS_DEADLINE[status_1.default.INITIAL.code] = {
|
|
59
84
|
deadline: 30,
|
|
60
|
-
key: '
|
|
85
|
+
key: 'reportDate',
|
|
61
86
|
};
|
|
62
87
|
doc.STATUS_DEADLINE[status_1.default.WAIT_DOCUMENT_COMPLETION.code] = {
|
|
63
88
|
deadline: 30,
|
|
@@ -128,6 +128,13 @@ const statusClaim = {
|
|
|
128
128
|
id: 'Klaim belum memenuhi kriteria'
|
|
129
129
|
},
|
|
130
130
|
},
|
|
131
|
+
CLAIM_WITHDRAWAL: {
|
|
132
|
+
code: '401',
|
|
133
|
+
desc: {
|
|
134
|
+
en: 'Claim Withdrawal',
|
|
135
|
+
id: 'Klaim kadaluarsa'
|
|
136
|
+
},
|
|
137
|
+
}
|
|
131
138
|
};
|
|
132
139
|
statusClaim.LIST_ACTIVE = [
|
|
133
140
|
statusClaim.INITIAL.code,
|
|
@@ -148,5 +155,6 @@ statusClaim.LIST_ACTIVE = [
|
|
|
148
155
|
statusClaim.CLAIM_WAITING_PAYMENT_CLAIM.code,
|
|
149
156
|
statusClaim.CLAIM_REJECTED.code,
|
|
150
157
|
statusClaim.CLAIM_PAID.code,
|
|
158
|
+
statusClaim.CLAIM_WITHDRAWAL.code,
|
|
151
159
|
];
|
|
152
160
|
exports.default = statusClaim;
|