@provis/provis-common-be-module 2.5.37 → 2.5.38
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.
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
declare const doc: {
|
|
2
|
+
DOC_OTHER: string;
|
|
3
|
+
DOC_LOD: string;
|
|
4
|
+
DOC_SPGR: string;
|
|
5
|
+
DOC_SPGR_SIGNED: string;
|
|
6
|
+
DOC_LOD_SIGNED: string;
|
|
7
|
+
DOC_PAYMENT: string;
|
|
8
|
+
LIST_DESC: {};
|
|
9
|
+
LIST_REQUIREMENT_LOD_SPGR: any[];
|
|
10
|
+
LIST_REQUIREMENT_LOD_SIGNED: any[];
|
|
11
|
+
LIST_REQUIREMENT_PAYMENT: any[];
|
|
12
|
+
LIST_RISK: any[];
|
|
13
|
+
RISK_CONFIG: {};
|
|
14
|
+
DOCUMENT_CONFIG: {};
|
|
15
|
+
};
|
|
16
|
+
export default doc;
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const doc = {
|
|
4
|
+
DOC_OTHER: 'DOC_OTHER',
|
|
5
|
+
DOC_LOD: 'DOC_LOD',
|
|
6
|
+
DOC_SPGR: 'DOC_SPGR',
|
|
7
|
+
DOC_SPGR_SIGNED: 'DOC_SPGR_SIGNED',
|
|
8
|
+
DOC_LOD_SIGNED: 'DOC_LOD_SIGNED',
|
|
9
|
+
DOC_PAYMENT: 'DOC_PAYMENT',
|
|
10
|
+
LIST_DESC: {},
|
|
11
|
+
LIST_REQUIREMENT_LOD_SPGR: [],
|
|
12
|
+
LIST_REQUIREMENT_LOD_SIGNED: [],
|
|
13
|
+
LIST_REQUIREMENT_PAYMENT: [],
|
|
14
|
+
LIST_RISK: [],
|
|
15
|
+
RISK_CONFIG: {},
|
|
16
|
+
DOCUMENT_CONFIG: {},
|
|
17
|
+
};
|
|
18
|
+
doc.LIST_DESC = {
|
|
19
|
+
[doc.DOC_OTHER]: {
|
|
20
|
+
id: "Dokumen lain yang mendukung proses klaim",
|
|
21
|
+
en: "Other documents that support the claims process",
|
|
22
|
+
},
|
|
23
|
+
[doc.DOC_LOD]: {
|
|
24
|
+
id: "Dokumen LOD",
|
|
25
|
+
en: "LOD document",
|
|
26
|
+
},
|
|
27
|
+
[doc.DOC_SPGR]: {
|
|
28
|
+
id: "Surat Pernyataan Ganti Rugi",
|
|
29
|
+
en: "Statement of Compensation",
|
|
30
|
+
},
|
|
31
|
+
[doc.DOC_SPGR_SIGNED]: {
|
|
32
|
+
id: "Surat Usulan",
|
|
33
|
+
en: "Proposed Letter",
|
|
34
|
+
},
|
|
35
|
+
[doc.DOC_LOD_SIGNED]: {
|
|
36
|
+
id: "Dokumen LOD yang sudah ditandatangani",
|
|
37
|
+
en: "Signed LOD document",
|
|
38
|
+
},
|
|
39
|
+
[doc.DOC_PAYMENT]: {
|
|
40
|
+
id: "Bukti Bayar",
|
|
41
|
+
en: "Payment Proof",
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
doc.LIST_REQUIREMENT_LOD_SPGR = [
|
|
45
|
+
doc.DOC_LOD,
|
|
46
|
+
doc.DOC_SPGR,
|
|
47
|
+
];
|
|
48
|
+
doc.LIST_REQUIREMENT_LOD_SIGNED = [
|
|
49
|
+
doc.DOC_LOD_SIGNED,
|
|
50
|
+
];
|
|
51
|
+
doc.LIST_REQUIREMENT_PAYMENT = [
|
|
52
|
+
doc.DOC_PAYMENT,
|
|
53
|
+
];
|
|
54
|
+
exports.default = doc;
|