@provis/provis-common-be-module 1.4.11 → 1.4.13
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.
- package/dist/constants/claim/document-container.d.ts +15 -0
- package/dist/constants/claim/document-container.js +70 -0
- package/dist/constants/claim/status.d.ts +2 -0
- package/dist/constants/claim/status.js +108 -0
- package/dist/constants/product.d.ts +6 -3
- package/dist/constants/product.js +64 -47
- package/package.json +1 -1
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
declare const doc: {
|
|
2
|
+
DOC_CLAIM: string;
|
|
3
|
+
DOC_CHRONOLOGY: string;
|
|
4
|
+
DOC_CERTIFICATE: string;
|
|
5
|
+
DOC_DELIVERY_RECEIPT: string;
|
|
6
|
+
DOC_PARTIAL_LOSS: string;
|
|
7
|
+
DOC_TOTAL_LOSS: string;
|
|
8
|
+
DOC_DOCUMENTATION: string;
|
|
9
|
+
DOC_BEFORE_ACCIDENT: string;
|
|
10
|
+
DOC_POLICE_REPORT: string;
|
|
11
|
+
DOC_OTHER: string;
|
|
12
|
+
LIST_DESC: {};
|
|
13
|
+
LIST_ACTIVE: any[];
|
|
14
|
+
};
|
|
15
|
+
export default doc;
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const doc = {
|
|
4
|
+
DOC_CLAIM: 'DOC_CLAIM',
|
|
5
|
+
DOC_CHRONOLOGY: 'DOC_CHRONOLOGY',
|
|
6
|
+
DOC_CERTIFICATE: 'DOC_CERTIFICATE',
|
|
7
|
+
DOC_DELIVERY_RECEIPT: 'DOC_DELIVERY_RECEIPT',
|
|
8
|
+
DOC_PARTIAL_LOSS: 'DOC_PARTIAL_LOSS',
|
|
9
|
+
DOC_TOTAL_LOSS: 'DOC_TOTAL_LOSS',
|
|
10
|
+
DOC_DOCUMENTATION: 'DOC_DOCUMENTATION',
|
|
11
|
+
DOC_BEFORE_ACCIDENT: 'DOC_BEFORE_ACCIDENT',
|
|
12
|
+
DOC_POLICE_REPORT: 'DOC_POLICE_REPORT',
|
|
13
|
+
DOC_OTHER: 'DOC_OTHER',
|
|
14
|
+
LIST_DESC: {},
|
|
15
|
+
LIST_ACTIVE: []
|
|
16
|
+
};
|
|
17
|
+
doc.LIST_DESC = {
|
|
18
|
+
[doc.DOC_CLAIM]: {
|
|
19
|
+
id: "Formulir klaim yang telah diisi lengkap disertai dengan perincian jumlah kerugian yang ditanda tangani & stampel sesuai atas nama Polis (terlampir)",
|
|
20
|
+
en: "Completely filled out claim form with details of loss amount signed & stamped in the name of the policy (attached)",
|
|
21
|
+
},
|
|
22
|
+
[doc.DOC_CHRONOLOGY]: {
|
|
23
|
+
id: "Laporan kronologis kejadian",
|
|
24
|
+
en: "Chronological report",
|
|
25
|
+
},
|
|
26
|
+
[doc.DOC_CERTIFICATE]: {
|
|
27
|
+
id: "Sertifikat Asuransi dengan informasi nomor container",
|
|
28
|
+
en: "Insurance Certificate with container number information",
|
|
29
|
+
},
|
|
30
|
+
[doc.DOC_DELIVERY_RECEIPT]: {
|
|
31
|
+
id: "Surat Jalan",
|
|
32
|
+
en: "Delivery Receipt",
|
|
33
|
+
},
|
|
34
|
+
[doc.DOC_PARTIAL_LOSS]: {
|
|
35
|
+
id: "Tagihan perbaikan dalam hal kerusakan sebagian",
|
|
36
|
+
en: "Invoice of partial loss",
|
|
37
|
+
},
|
|
38
|
+
[doc.DOC_TOTAL_LOSS]: {
|
|
39
|
+
id: "Tagihan dari pemilik kontainer dalam hal kerusakan menyeluruh",
|
|
40
|
+
en: "Invoice of total loss",
|
|
41
|
+
},
|
|
42
|
+
[doc.DOC_DOCUMENTATION]: {
|
|
43
|
+
id: "Foto - foto dokumentasi dan atau rekaman video kontainer yang rusak",
|
|
44
|
+
en: "Photo and/or video documentation of damaged containers",
|
|
45
|
+
},
|
|
46
|
+
[doc.DOC_BEFORE_ACCIDENT]: {
|
|
47
|
+
id: "Foto - foto dokumentasi sesaat sebelum pengiriman",
|
|
48
|
+
en: "Photo and/or video documentation before accident",
|
|
49
|
+
},
|
|
50
|
+
[doc.DOC_POLICE_REPORT]: {
|
|
51
|
+
id: "Laporan Kepolisian",
|
|
52
|
+
en: "Police report",
|
|
53
|
+
},
|
|
54
|
+
[doc.DOC_OTHER]: {
|
|
55
|
+
id: "Dokumen lain yang mendukung proses klaim",
|
|
56
|
+
en: "Other documents that support the claims process",
|
|
57
|
+
},
|
|
58
|
+
};
|
|
59
|
+
doc.LIST_ACTIVE = [
|
|
60
|
+
doc.DOC_CLAIM,
|
|
61
|
+
doc.DOC_CHRONOLOGY,
|
|
62
|
+
doc.DOC_DELIVERY_RECEIPT,
|
|
63
|
+
doc.DOC_PARTIAL_LOSS,
|
|
64
|
+
doc.DOC_TOTAL_LOSS,
|
|
65
|
+
doc.DOC_DOCUMENTATION,
|
|
66
|
+
doc.DOC_BEFORE_ACCIDENT,
|
|
67
|
+
doc.DOC_POLICE_REPORT,
|
|
68
|
+
doc.DOC_OTHER,
|
|
69
|
+
];
|
|
70
|
+
exports.default = doc;
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const statusClaim = {};
|
|
4
|
+
statusClaim.INITIAL = {
|
|
5
|
+
code: 100,
|
|
6
|
+
desc: {
|
|
7
|
+
en: 'Initial Report',
|
|
8
|
+
id: 'Pelaporan klaim pertama berhasil dilaporkan'
|
|
9
|
+
},
|
|
10
|
+
};
|
|
11
|
+
statusClaim.INITIAL_APPROVED = {
|
|
12
|
+
code: 101,
|
|
13
|
+
desc: {
|
|
14
|
+
en: 'Initial report approved',
|
|
15
|
+
id: 'Pelaporan klaim pertama disetujui'
|
|
16
|
+
},
|
|
17
|
+
};
|
|
18
|
+
statusClaim.INITIAL_COMPLETED = {
|
|
19
|
+
code: 102,
|
|
20
|
+
desc: {
|
|
21
|
+
en: 'Initial report completed',
|
|
22
|
+
id: 'Pelaporan klaim pertama selesai'
|
|
23
|
+
},
|
|
24
|
+
};
|
|
25
|
+
statusClaim.WAIT_DOCUMENT_COMPLETION = {
|
|
26
|
+
code: 110,
|
|
27
|
+
desc: {
|
|
28
|
+
en: 'Waiting for Document Completion',
|
|
29
|
+
id: 'Menunggu kelengkapan dokumen'
|
|
30
|
+
},
|
|
31
|
+
};
|
|
32
|
+
statusClaim.CHECK_DOCUMENT = {
|
|
33
|
+
code: 120,
|
|
34
|
+
desc: {
|
|
35
|
+
en: 'Checking Document',
|
|
36
|
+
id: 'Klaim dalam pemeriksaan'
|
|
37
|
+
},
|
|
38
|
+
};
|
|
39
|
+
statusClaim.SUBMIT_LOD = {
|
|
40
|
+
code: 130,
|
|
41
|
+
desc: {
|
|
42
|
+
en: 'Submit LOD',
|
|
43
|
+
id: 'Dokumen LOD berhasil Dikeluarkan'
|
|
44
|
+
},
|
|
45
|
+
};
|
|
46
|
+
statusClaim.WAIT_LOD_SIGN = {
|
|
47
|
+
code: 140,
|
|
48
|
+
desc: {
|
|
49
|
+
en: 'Waiting LOD Sign',
|
|
50
|
+
id: 'Menunggu penandatanganan dokumen LOD'
|
|
51
|
+
},
|
|
52
|
+
};
|
|
53
|
+
statusClaim.SUBMIT_LOD_SIGN = {
|
|
54
|
+
code: 150,
|
|
55
|
+
desc: {
|
|
56
|
+
en: 'Submit LOD Sign',
|
|
57
|
+
id: 'Dokumen LOD telah ditandatangani'
|
|
58
|
+
},
|
|
59
|
+
};
|
|
60
|
+
statusClaim.SUBMIT_CLAIM_TO_INSURANCE = {
|
|
61
|
+
code: 200,
|
|
62
|
+
desc: {
|
|
63
|
+
en: 'Submit Claim to Insurance',
|
|
64
|
+
id: 'Klaim Telah di teruskan ke asuransi'
|
|
65
|
+
},
|
|
66
|
+
};
|
|
67
|
+
statusClaim.SUBMIT_DOC_CLAIM_TO_INSURANCE = {
|
|
68
|
+
code: 210,
|
|
69
|
+
desc: {
|
|
70
|
+
en: 'Submit Doc Claim to Insurance',
|
|
71
|
+
id: 'Dokumen tambahan berhasil di teruskan ke asuransi'
|
|
72
|
+
},
|
|
73
|
+
};
|
|
74
|
+
statusClaim.CLAIM_APPROVED = {
|
|
75
|
+
code: 300,
|
|
76
|
+
desc: {
|
|
77
|
+
en: 'Claim Approved',
|
|
78
|
+
id: 'Klaim diterima'
|
|
79
|
+
},
|
|
80
|
+
};
|
|
81
|
+
statusClaim.CLAIM_PAID = {
|
|
82
|
+
code: 310,
|
|
83
|
+
desc: {
|
|
84
|
+
en: 'Claim Paid',
|
|
85
|
+
id: 'Klaim berhasil dibayar'
|
|
86
|
+
},
|
|
87
|
+
};
|
|
88
|
+
statusClaim.CLAIM_REJECTED = {
|
|
89
|
+
code: 400,
|
|
90
|
+
desc: {
|
|
91
|
+
en: 'Claim Rejected',
|
|
92
|
+
id: 'Klaim belum memenuhi kriteria'
|
|
93
|
+
},
|
|
94
|
+
};
|
|
95
|
+
statusClaim.LIST_ACTIVE = [
|
|
96
|
+
statusClaim.INITIAL.code,
|
|
97
|
+
statusClaim.WAIT_DOCUMENT_COMPLETION.code,
|
|
98
|
+
statusClaim.CHECK_DOCUMENT.code,
|
|
99
|
+
statusClaim.SUBMIT_LOD.code,
|
|
100
|
+
statusClaim.WAIT_LOD_SIGN.code,
|
|
101
|
+
statusClaim.SUBMIT_LOD_SIGN.code,
|
|
102
|
+
statusClaim.SUBMIT_CLAIM_TO_INSURANCE.code,
|
|
103
|
+
statusClaim.SUBMIT_DOC_CLAIM_TO_INSURANCE.code,
|
|
104
|
+
statusClaim.CLAIM_APPROVED.code,
|
|
105
|
+
statusClaim.CLAIM_REJECTED.code,
|
|
106
|
+
statusClaim.CLAIM_PAID.code,
|
|
107
|
+
];
|
|
108
|
+
exports.default = statusClaim;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
declare const product: {
|
|
2
|
+
LIST: {};
|
|
2
3
|
PRODUCT_POLISMALL_CARGO_MERATUS: string;
|
|
3
4
|
PRODUCT_POLISMALL_CARGO: string;
|
|
4
5
|
PRODUCT_CODE_PROPERTY_ALL_RISK: string;
|
|
@@ -38,18 +39,20 @@ declare const product: {
|
|
|
38
39
|
PRODUCT_CODE_HCI_MOTOR: string;
|
|
39
40
|
PRODUCT_CODE_HCP5_DISEASE: string;
|
|
40
41
|
PRODUCT_CODE_EXIM: string;
|
|
41
|
-
PRODUCT_CODE_BDKI_MOTOR: string;
|
|
42
|
-
PRODUCT_CODE_BDKI_RUMAH: string;
|
|
43
42
|
PRODUCT_CODE_MOVEABLE_ALL_RISK: string;
|
|
44
43
|
PRODUCT_CODE_SURETY_BOND: string;
|
|
45
44
|
PRODUCT_CODE_ERECTION_ALL_RISK: string;
|
|
46
45
|
PRODUCT_CODE_OTTO_CI: string;
|
|
47
46
|
PRODUCT_CODE_OTTO_FLEXAS: string;
|
|
48
47
|
PRODUCT_CODE_OTTO_CRACK_SCREEN: string;
|
|
48
|
+
PRODUCT_CODE_BDKI_MOTOR: string;
|
|
49
|
+
PRODUCT_CODE_BDKI_RUMAH: string;
|
|
49
50
|
PRODUCT_CODE_BNI_MOBIL: string;
|
|
50
51
|
PRODUCT_CODE_BNI_MOTOR: string;
|
|
51
52
|
PRODUCT_CODE_BNI_RUMAH: string;
|
|
52
53
|
PRODUCT_CODE_CARGO_BUNDLE: string;
|
|
53
|
-
|
|
54
|
+
PRODUCT_CODE_RETAIL_LOKET_PA: string;
|
|
55
|
+
PRODUCT_CODE_RETAIL_KALOG_CARGO: string;
|
|
56
|
+
PRODUCT_CODE_RETAIL_POS_CARGO: string;
|
|
54
57
|
};
|
|
55
58
|
export default product;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const product = {
|
|
4
|
+
LIST: {},
|
|
4
5
|
PRODUCT_POLISMALL_CARGO_MERATUS: 'polismall-cargo-meratus',
|
|
5
6
|
PRODUCT_POLISMALL_CARGO: 'polismall-cargo',
|
|
6
7
|
PRODUCT_CODE_PROPERTY_ALL_RISK: 'polismall-property-allrisk',
|
|
@@ -40,8 +41,6 @@ const product = {
|
|
|
40
41
|
PRODUCT_CODE_HCI_MOTOR: 'polismall-hci-motor',
|
|
41
42
|
PRODUCT_CODE_HCP5_DISEASE: 'polismall-hcp5-disease',
|
|
42
43
|
PRODUCT_CODE_EXIM: 'polismall-exim',
|
|
43
|
-
PRODUCT_CODE_BDKI_MOTOR: 'polismall-bdki-motor',
|
|
44
|
-
PRODUCT_CODE_BDKI_RUMAH: 'polismall-bdki-rumah',
|
|
45
44
|
PRODUCT_CODE_MOVEABLE_ALL_RISK: 'polismall-moveable-all-risk',
|
|
46
45
|
PRODUCT_CODE_SURETY_BOND: 'polismall-surety-bond',
|
|
47
46
|
PRODUCT_CODE_ERECTION_ALL_RISK: 'polismall-erection-all-risk',
|
|
@@ -49,13 +48,19 @@ const product = {
|
|
|
49
48
|
PRODUCT_CODE_OTTO_CI: 'polismall-otto-critical-illness',
|
|
50
49
|
PRODUCT_CODE_OTTO_FLEXAS: 'polismall-otto-flexas',
|
|
51
50
|
PRODUCT_CODE_OTTO_CRACK_SCREEN: 'polismall-otto-crack',
|
|
51
|
+
// BDKI
|
|
52
|
+
PRODUCT_CODE_BDKI_MOTOR: 'polismall-bdki-motor',
|
|
53
|
+
PRODUCT_CODE_BDKI_RUMAH: 'polismall-bdki-rumah',
|
|
52
54
|
// BNI
|
|
53
55
|
PRODUCT_CODE_BNI_MOBIL: 'polismall-bni-mobil',
|
|
54
56
|
PRODUCT_CODE_BNI_MOTOR: 'polismall-bni-motor',
|
|
55
57
|
PRODUCT_CODE_BNI_RUMAH: 'polismall-bni-rumah',
|
|
56
58
|
// BUNDLE
|
|
57
59
|
PRODUCT_CODE_CARGO_BUNDLE: 'polismall-cargo-bundle',
|
|
58
|
-
|
|
60
|
+
// [PM] POLISMALL RETAIL
|
|
61
|
+
PRODUCT_CODE_RETAIL_LOKET_PA: 'polismall-loket-pa',
|
|
62
|
+
PRODUCT_CODE_RETAIL_KALOG_CARGO: 'polismall-kalog-cargo',
|
|
63
|
+
PRODUCT_CODE_RETAIL_POS_CARGO: 'polismall-pos-cargo',
|
|
59
64
|
};
|
|
60
65
|
product.LIST = {
|
|
61
66
|
[product.PRODUCT_CODE_BNI_MOBIL]: {
|
|
@@ -83,180 +88,192 @@ product.LIST = {
|
|
|
83
88
|
name: "Smartphone Protection",
|
|
84
89
|
},
|
|
85
90
|
[product.PRODUCT_POLISMALL_CARGO]: {
|
|
86
|
-
value:
|
|
91
|
+
value: product.PRODUCT_POLISMALL_CARGO,
|
|
87
92
|
name: "Polismall Marine Cargo",
|
|
88
93
|
},
|
|
89
94
|
[product.PRODUCT_POLISMALL_CARGO_MERATUS]: {
|
|
90
|
-
value:
|
|
95
|
+
value: product.PRODUCT_POLISMALL_CARGO_MERATUS,
|
|
91
96
|
name: "Microsite Marine Cargo",
|
|
92
97
|
},
|
|
93
98
|
[product.PRODUCT_CODE_PROPERTY_ALL_RISK]: {
|
|
94
|
-
value:
|
|
99
|
+
value: product.PRODUCT_CODE_PROPERTY_ALL_RISK,
|
|
95
100
|
name: "Property All Risk",
|
|
96
101
|
},
|
|
97
102
|
[product.PRODUCT_CODE_EARTHQUAKE]: {
|
|
98
|
-
value:
|
|
103
|
+
value: product.PRODUCT_CODE_EARTHQUAKE,
|
|
99
104
|
name: "Earthquake",
|
|
100
105
|
},
|
|
101
106
|
[product.PRODUCT_CODE_VEHICLE]: {
|
|
102
|
-
value:
|
|
107
|
+
value: product.PRODUCT_CODE_VEHICLE,
|
|
103
108
|
name: "Motor Vehicle",
|
|
104
109
|
},
|
|
105
110
|
[product.PRODUCT_CODE_PUBLIC_LIABILITY]: {
|
|
106
|
-
value:
|
|
111
|
+
value: product.PRODUCT_CODE_PUBLIC_LIABILITY,
|
|
107
112
|
name: "Public Liability",
|
|
108
113
|
},
|
|
109
114
|
[product.PRODUCT_CODE_MACHINERYR_BREAKDOWN]: {
|
|
110
|
-
value:
|
|
115
|
+
value: product.PRODUCT_CODE_MACHINERYR_BREAKDOWN,
|
|
111
116
|
name: "Machinery Breakdown",
|
|
112
117
|
},
|
|
113
118
|
[product.PRODUCT_CODE_TERRORISM_SABOTAGE]: {
|
|
114
|
-
value:
|
|
119
|
+
value: product.PRODUCT_CODE_TERRORISM_SABOTAGE,
|
|
115
120
|
name: "Terrorism and Sabotage",
|
|
116
121
|
},
|
|
117
122
|
[product.PRODUCT_CODE_COMPREHENSIVE_LIABILITY]: {
|
|
118
|
-
value:
|
|
123
|
+
value: product.PRODUCT_CODE_COMPREHENSIVE_LIABILITY,
|
|
119
124
|
name: "Comprehensive General Liability",
|
|
120
125
|
},
|
|
121
126
|
[product.PRODUCT_CODE_CONTAINER]: {
|
|
122
|
-
value:
|
|
127
|
+
value: product.PRODUCT_CODE_CONTAINER,
|
|
123
128
|
name: "Container Insurance",
|
|
124
129
|
},
|
|
125
130
|
[product.PRODUCT_CODE_GROUP_HEALTH]: {
|
|
126
|
-
value:
|
|
131
|
+
value: product.PRODUCT_CODE_GROUP_HEALTH,
|
|
127
132
|
name: "Group Health Insurance",
|
|
128
133
|
},
|
|
129
134
|
[product.PRODUCT_CODE_TRAVEL]: {
|
|
130
|
-
value:
|
|
135
|
+
value: product.PRODUCT_CODE_TRAVEL,
|
|
131
136
|
name: "Travel",
|
|
132
137
|
},
|
|
133
138
|
[product.PRODUCT_CODE_HOSPITAL_CASH_PLAN]: {
|
|
134
|
-
value:
|
|
139
|
+
value: product.PRODUCT_CODE_HOSPITAL_CASH_PLAN,
|
|
135
140
|
name: "Hospital Cash Plan",
|
|
136
141
|
},
|
|
137
142
|
[product.PRODUCT_CODE_TERM_LIFE]: {
|
|
138
|
-
value:
|
|
143
|
+
value: product.PRODUCT_CODE_TERM_LIFE,
|
|
139
144
|
name: "Term Life",
|
|
140
145
|
},
|
|
141
146
|
[product.PRODUCT_CODE_PERSONAL_ACCIDENT]: {
|
|
142
|
-
value:
|
|
147
|
+
value: product.PRODUCT_CODE_PERSONAL_ACCIDENT,
|
|
143
148
|
name: "Personal Accident",
|
|
144
149
|
},
|
|
145
150
|
[product.PRODUCT_CODE_TAILOR_MADE]: {
|
|
146
|
-
value:
|
|
151
|
+
value: product.PRODUCT_CODE_TAILOR_MADE,
|
|
147
152
|
name: "Tailor Made",
|
|
148
153
|
},
|
|
149
154
|
[product.PRODUCT_CODE_CRITICAL_ILLNESS]: {
|
|
150
|
-
value:
|
|
155
|
+
value: product.PRODUCT_CODE_CRITICAL_ILLNESS,
|
|
151
156
|
name: "Critical Illness",
|
|
152
157
|
},
|
|
153
158
|
[product.PRODUCT_CODE_FREIGHT_FORWARDER_LIABILITY]: {
|
|
154
|
-
value:
|
|
159
|
+
value: product.PRODUCT_CODE_FREIGHT_FORWARDER_LIABILITY,
|
|
155
160
|
name: "Freight Forwarder Liability",
|
|
156
161
|
},
|
|
157
162
|
[product.PRODUCT_CODE_MARINE_HULL]: {
|
|
158
|
-
value:
|
|
163
|
+
value: product.PRODUCT_CODE_MARINE_HULL,
|
|
159
164
|
name: "Marine Hull",
|
|
160
165
|
},
|
|
161
166
|
[product.PRODUCT_CODE_CREDIT_LIFE]: {
|
|
162
|
-
value:
|
|
167
|
+
value: product.PRODUCT_CODE_CREDIT_LIFE,
|
|
163
168
|
name: "Credit Life",
|
|
164
169
|
},
|
|
165
170
|
[product.PRODUCT_CODE_TRADITIONAL_WHOLE_LIFE]: {
|
|
166
|
-
value:
|
|
171
|
+
value: product.PRODUCT_CODE_TRADITIONAL_WHOLE_LIFE,
|
|
167
172
|
name: "Traditional Whole Life",
|
|
168
173
|
},
|
|
169
174
|
[product.PRODUCT_CODE_CARPAKR_LIABILITY]: {
|
|
170
|
-
value:
|
|
175
|
+
value: product.PRODUCT_CODE_CARPAKR_LIABILITY,
|
|
171
176
|
name: "Carpark Liability",
|
|
172
177
|
},
|
|
173
178
|
[product.PRODUCT_CODE_DIRECTOR_OFFICER_LIABILITY]: {
|
|
174
|
-
value:
|
|
179
|
+
value: product.PRODUCT_CODE_DIRECTOR_OFFICER_LIABILITY,
|
|
175
180
|
name: "Director Officer Liability",
|
|
176
181
|
},
|
|
177
182
|
[product.PRODUCT_CODE_PROFESIONAL_INDEMNITY]: {
|
|
178
|
-
value:
|
|
183
|
+
value: product.PRODUCT_CODE_PROFESIONAL_INDEMNITY,
|
|
179
184
|
name: "Professional Indemnity",
|
|
180
185
|
},
|
|
181
186
|
[product.PRODUCT_CODE_GENERAL_LIABILITY]: {
|
|
182
|
-
value:
|
|
187
|
+
value: product.PRODUCT_CODE_GENERAL_LIABILITY,
|
|
183
188
|
name: "General Liability"
|
|
184
189
|
},
|
|
185
190
|
[product.PRODUCT_CODE_WEDDING]: {
|
|
186
|
-
value:
|
|
191
|
+
value: product.PRODUCT_CODE_WEDDING,
|
|
187
192
|
name: "General Wedding"
|
|
188
193
|
},
|
|
189
194
|
[product.PRODUCT_CODE_PENSIUN_FUND]: {
|
|
190
|
-
value:
|
|
195
|
+
value: product.PRODUCT_CODE_PENSIUN_FUND,
|
|
191
196
|
name: "Pensiun Fund"
|
|
192
197
|
},
|
|
193
198
|
[product.PRODUCT_CODE_ENVIRONMENTAL_LIABILITY]: {
|
|
194
|
-
value:
|
|
199
|
+
value: product.PRODUCT_CODE_ENVIRONMENTAL_LIABILITY,
|
|
195
200
|
name: "Environmental Liability",
|
|
196
201
|
},
|
|
197
202
|
[product.PRODUCT_CODE_PROTECTION_INDEMNITY]: {
|
|
198
|
-
value:
|
|
203
|
+
value: product.PRODUCT_CODE_PROTECTION_INDEMNITY,
|
|
199
204
|
name: "Protection Indemnity"
|
|
200
205
|
},
|
|
201
206
|
[product.PRODUCT_CODE_STUDENT_PROTECTION]: {
|
|
202
|
-
value:
|
|
207
|
+
value: product.PRODUCT_CODE_STUDENT_PROTECTION,
|
|
203
208
|
name: "Student Protection"
|
|
204
209
|
},
|
|
205
210
|
[product.PRODUCT_CODE_GADGET]: {
|
|
206
|
-
value:
|
|
211
|
+
value: product.PRODUCT_CODE_GADGET,
|
|
207
212
|
name: "Gadget"
|
|
208
213
|
},
|
|
209
214
|
[product.PRODUCT_CODE_ELECTRONIC_EQUIPMENT]: {
|
|
210
|
-
value:
|
|
215
|
+
value: product.PRODUCT_CODE_ELECTRONIC_EQUIPMENT,
|
|
211
216
|
name: "Electronic Equipment Insurance",
|
|
212
217
|
},
|
|
213
218
|
[product.PRODUCT_CODE_CPM]: {
|
|
214
|
-
value:
|
|
219
|
+
value: product.PRODUCT_CODE_CPM,
|
|
215
220
|
name: "Contractor's Plant and Machinery",
|
|
216
221
|
},
|
|
217
222
|
[product.PRODUCT_CODE_CONSTRUCTION_ALLRISK]: {
|
|
218
|
-
value:
|
|
223
|
+
value: product.PRODUCT_CODE_CONSTRUCTION_ALLRISK,
|
|
219
224
|
name: "Construction All Risk",
|
|
220
225
|
},
|
|
221
226
|
[product.PRODUCT_CODE_MERIMEN_CARGO]: {
|
|
222
|
-
value:
|
|
227
|
+
value: product.PRODUCT_CODE_MERIMEN_CARGO,
|
|
223
228
|
name: "Merimen Cargo",
|
|
224
229
|
},
|
|
225
230
|
[product.PRODUCT_CODE_HCI_MOTOR]: {
|
|
226
|
-
value:
|
|
231
|
+
value: product.PRODUCT_CODE_HCI_MOTOR,
|
|
227
232
|
name: "HCI Santunan Motor",
|
|
228
233
|
},
|
|
229
234
|
[product.PRODUCT_CODE_HCP5_DISEASE]: {
|
|
230
|
-
value:
|
|
235
|
+
value: product.PRODUCT_CODE_HCP5_DISEASE,
|
|
231
236
|
name: "HCP 5 Disease",
|
|
232
237
|
},
|
|
233
238
|
[product.PRODUCT_CODE_EXIM]: {
|
|
234
|
-
value:
|
|
239
|
+
value: product.PRODUCT_CODE_EXIM,
|
|
235
240
|
name: "Polismall EXIM",
|
|
236
241
|
},
|
|
237
242
|
[product.PRODUCT_CODE_BDKI_MOTOR]: {
|
|
238
|
-
value:
|
|
243
|
+
value: product.PRODUCT_CODE_BDKI_MOTOR,
|
|
239
244
|
name: "Polismall BDKI motor",
|
|
240
245
|
},
|
|
241
246
|
[product.PRODUCT_CODE_BDKI_RUMAH]: {
|
|
242
|
-
value:
|
|
247
|
+
value: product.PRODUCT_CODE_BDKI_RUMAH,
|
|
243
248
|
name: "Polismall BDKI rumah",
|
|
244
249
|
},
|
|
245
250
|
[product.PRODUCT_CODE_MOVEABLE_ALL_RISK]: {
|
|
246
|
-
value:
|
|
251
|
+
value: product.PRODUCT_CODE_MOVEABLE_ALL_RISK,
|
|
247
252
|
name: "Polismall Moveable All Risk",
|
|
248
253
|
},
|
|
249
254
|
[product.PRODUCT_CODE_SURETY_BOND]: {
|
|
250
|
-
value:
|
|
255
|
+
value: product.PRODUCT_CODE_SURETY_BOND,
|
|
251
256
|
name: "Surety Bond",
|
|
252
257
|
},
|
|
253
258
|
[product.PRODUCT_CODE_ERECTION_ALL_RISK]: {
|
|
254
|
-
value:
|
|
259
|
+
value: product.PRODUCT_CODE_ERECTION_ALL_RISK,
|
|
255
260
|
name: "Erection All Risk",
|
|
256
261
|
},
|
|
257
262
|
[product.PRODUCT_CODE_CARGO_BUNDLE]: {
|
|
258
|
-
value:
|
|
263
|
+
value: product.PRODUCT_CODE_CARGO_BUNDLE,
|
|
259
264
|
name: "Polismall Cargo Bundle",
|
|
260
265
|
},
|
|
266
|
+
[product.PRODUCT_CODE_RETAIL_LOKET_PA]: {
|
|
267
|
+
value: product.PRODUCT_CODE_RETAIL_LOKET_PA,
|
|
268
|
+
name: "Polismall Loket Personal Accident",
|
|
269
|
+
},
|
|
270
|
+
[product.PRODUCT_CODE_RETAIL_KALOG_CARGO]: {
|
|
271
|
+
value: product.PRODUCT_CODE_RETAIL_KALOG_CARGO,
|
|
272
|
+
name: "Polismall Kalog Cargo Retail",
|
|
273
|
+
},
|
|
274
|
+
[product.PRODUCT_CODE_RETAIL_POS_CARGO]: {
|
|
275
|
+
value: product.PRODUCT_CODE_RETAIL_POS_CARGO,
|
|
276
|
+
name: "Polismall Pos Cargo Retail",
|
|
277
|
+
},
|
|
261
278
|
};
|
|
262
279
|
exports.default = product;
|