@provis/provis-common-be-module 1.4.52 → 1.4.53
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,53 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const doc = {
|
|
4
|
+
DOC_RESI: 'DOC_RESI',
|
|
5
|
+
DOC_CLAIM: 'DOC_CLAIM',
|
|
6
|
+
DOC_INVOICE: 'DOC_INVOICE',
|
|
7
|
+
DOC_OPENING: 'DOC_OPENING',
|
|
8
|
+
DOC_DOCUMENTATION: 'DOC_DOCUMENTATION',
|
|
9
|
+
DOC_POLICE_REPORT: 'DOC_POLICE_REPORT',
|
|
10
|
+
DOC_OTHER: 'DOC_OTHER',
|
|
11
|
+
LIST_DESC: {},
|
|
12
|
+
LIST_ACTIVE: []
|
|
13
|
+
};
|
|
14
|
+
doc.LIST_DESC = {
|
|
15
|
+
[doc.DOC_RESI]: {
|
|
16
|
+
id: "Foto Resi",
|
|
17
|
+
en: "Receipt Photo",
|
|
18
|
+
},
|
|
19
|
+
[doc.DOC_CLAIM]: {
|
|
20
|
+
id: "Formulir klaim yang telah diisi lengkap disertai dengan perincian jumlah kerugian",
|
|
21
|
+
en: "Completely filled out claim form with details of loss amount",
|
|
22
|
+
},
|
|
23
|
+
[doc.DOC_INVOICE]: {
|
|
24
|
+
id: "Dokumen Tagihan Nilai Barang",
|
|
25
|
+
en: "Goods Value Invoice documents",
|
|
26
|
+
},
|
|
27
|
+
[doc.DOC_OPENING]: {
|
|
28
|
+
id: "Rekaman vidio pembukaan barang",
|
|
29
|
+
en: "Video recording of opening of goods",
|
|
30
|
+
},
|
|
31
|
+
[doc.DOC_DOCUMENTATION]: {
|
|
32
|
+
id: "Foto - foto dokumentasi barang yang rusak",
|
|
33
|
+
en: "Documentation photos of damaged goods",
|
|
34
|
+
},
|
|
35
|
+
[doc.DOC_POLICE_REPORT]: {
|
|
36
|
+
id: "Laporan Kepolisian",
|
|
37
|
+
en: "Police report",
|
|
38
|
+
},
|
|
39
|
+
[doc.DOC_OTHER]: {
|
|
40
|
+
id: "Dokumen lain yang mendukung proses klaim",
|
|
41
|
+
en: "Other documents that support the claims process",
|
|
42
|
+
},
|
|
43
|
+
};
|
|
44
|
+
doc.LIST_ACTIVE = [
|
|
45
|
+
doc.DOC_RESI,
|
|
46
|
+
doc.DOC_CLAIM,
|
|
47
|
+
doc.DOC_INVOICE,
|
|
48
|
+
doc.DOC_OPENING,
|
|
49
|
+
doc.DOC_DOCUMENTATION,
|
|
50
|
+
doc.DOC_POLICE_REPORT,
|
|
51
|
+
doc.DOC_OTHER,
|
|
52
|
+
];
|
|
53
|
+
exports.default = doc;
|