@provis/provis-common-be-module 2.5.9 → 2.5.12
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/loket.d.ts +9 -0
- package/dist/constants/claim/loket.js +113 -1
- package/dist/constants/config.d.ts +19 -1
- package/dist/constants/config.js +23 -20
- package/dist/constants/product/mv/clause.d.ts +1 -1
- package/dist/constants/product/mv/clause.js +2 -1
- package/dist/constants/product/mv/merk.d.ts +2 -0
- package/dist/constants/product/mv/merk.js +23 -8
- package/dist/constants/product/mv/mv.d.ts +28 -5
- package/dist/constants/product/mv/mv.js +131 -8
- package/dist/constants/quotation.d.ts +14 -0
- package/dist/constants/quotation.js +16 -0
- package/dist/helpers/calculateForNullable.d.ts +2 -1
- package/dist/helpers/calculateForNullable.js +9 -1
- package/package.json +1 -1
|
@@ -8,6 +8,11 @@ declare const loket: {
|
|
|
8
8
|
RISK_CLK007: string;
|
|
9
9
|
RISK_CLK008: string;
|
|
10
10
|
RISK_CLK009: string;
|
|
11
|
+
RISK_CLK010: string;
|
|
12
|
+
RISK_CLK011: string;
|
|
13
|
+
RISK_CLK012: string;
|
|
14
|
+
RISK_CLK013: string;
|
|
15
|
+
RISK_CLK014: string;
|
|
11
16
|
DOCUMENT_DLK001: string;
|
|
12
17
|
DOCUMENT_DLK002: string;
|
|
13
18
|
DOCUMENT_DLK003: string;
|
|
@@ -28,6 +33,10 @@ declare const loket: {
|
|
|
28
33
|
DOCUMENT_DLK018: string;
|
|
29
34
|
DOCUMENT_DLK019: string;
|
|
30
35
|
DOCUMENT_DLK020: string;
|
|
36
|
+
DOCUMENT_DLK021: string;
|
|
37
|
+
DOCUMENT_DLK022: string;
|
|
38
|
+
DOCUMENT_DLK023: string;
|
|
39
|
+
DOCUMENT_DLK024: string;
|
|
31
40
|
DOCUMENT_DT001: string;
|
|
32
41
|
DOCUMENT_DT002: string;
|
|
33
42
|
DOCUMENT_DT003: string;
|
|
@@ -12,6 +12,11 @@ const loket = {
|
|
|
12
12
|
RISK_CLK007: 'CLK007',
|
|
13
13
|
RISK_CLK008: 'CLK008',
|
|
14
14
|
RISK_CLK009: 'CLK009',
|
|
15
|
+
RISK_CLK010: 'CLK010',
|
|
16
|
+
RISK_CLK011: 'CLK011',
|
|
17
|
+
RISK_CLK012: 'CLK012',
|
|
18
|
+
RISK_CLK013: 'CLK013',
|
|
19
|
+
RISK_CLK014: 'CLK014',
|
|
15
20
|
// LIST DOCUMENT
|
|
16
21
|
DOCUMENT_DLK001: 'DLK001',
|
|
17
22
|
DOCUMENT_DLK002: 'DLK002',
|
|
@@ -33,6 +38,10 @@ const loket = {
|
|
|
33
38
|
DOCUMENT_DLK018: 'DLK018',
|
|
34
39
|
DOCUMENT_DLK019: 'DLK019',
|
|
35
40
|
DOCUMENT_DLK020: 'DLK020',
|
|
41
|
+
DOCUMENT_DLK021: 'DLK021',
|
|
42
|
+
DOCUMENT_DLK022: 'DLK022',
|
|
43
|
+
DOCUMENT_DLK023: 'DLK023',
|
|
44
|
+
DOCUMENT_DLK024: 'DLK024',
|
|
36
45
|
DOCUMENT_DT001: 'DT001',
|
|
37
46
|
DOCUMENT_DT002: 'DT002',
|
|
38
47
|
DOCUMENT_DT003: 'DT003',
|
|
@@ -51,6 +60,11 @@ loket.LIST_RISK.push(loket.RISK_CLK006);
|
|
|
51
60
|
loket.LIST_RISK.push(loket.RISK_CLK007);
|
|
52
61
|
loket.LIST_RISK.push(loket.RISK_CLK008);
|
|
53
62
|
loket.LIST_RISK.push(loket.RISK_CLK009);
|
|
63
|
+
loket.LIST_RISK.push(loket.RISK_CLK010);
|
|
64
|
+
loket.LIST_RISK.push(loket.RISK_CLK011);
|
|
65
|
+
loket.LIST_RISK.push(loket.RISK_CLK012);
|
|
66
|
+
loket.LIST_RISK.push(loket.RISK_CLK013);
|
|
67
|
+
loket.LIST_RISK.push(loket.RISK_CLK014);
|
|
54
68
|
loket.RISK_CONFIG[loket.RISK_CLK001] = {
|
|
55
69
|
isRequiredFillClaimAmount: false,
|
|
56
70
|
desc: {
|
|
@@ -183,6 +197,71 @@ loket.RISK_CONFIG[loket.RISK_CLK009] = {
|
|
|
183
197
|
loket.DOCUMENT_DLK020,
|
|
184
198
|
],
|
|
185
199
|
};
|
|
200
|
+
loket.RISK_CONFIG[loket.RISK_CLK010] = {
|
|
201
|
+
isRequiredFillClaimAmount: false,
|
|
202
|
+
desc: {
|
|
203
|
+
id: 'Pembatalan Karena Cedera atau Penyakit serius atau meninggal dunia yang dialami Tertanggung atau keluarga inti*',
|
|
204
|
+
en: 'Cancellation due to serious injury, serious illness, or death suffered by the Insured or an immediate family member*',
|
|
205
|
+
},
|
|
206
|
+
requiredDocument: [
|
|
207
|
+
loket.DOCUMENT_DLK001,
|
|
208
|
+
loket.DOCUMENT_DLK002,
|
|
209
|
+
loket.DOCUMENT_DLK003,
|
|
210
|
+
loket.DOCUMENT_DLK009,
|
|
211
|
+
],
|
|
212
|
+
};
|
|
213
|
+
loket.RISK_CONFIG[loket.RISK_CLK011] = {
|
|
214
|
+
isRequiredFillClaimAmount: false,
|
|
215
|
+
desc: {
|
|
216
|
+
id: 'Pembatalan Karena Panggilan untuk menjadi saksi pengadilan, yang tidak diberitahukan lebih dahulu kepada anda sebelum anda mengambil Polis ini',
|
|
217
|
+
en: 'Cancellation due to a court summons requiring you to appear as a witness, provided that such summons was not issued or notified to you prior to the issuance of this Policy',
|
|
218
|
+
},
|
|
219
|
+
requiredDocument: [
|
|
220
|
+
loket.DOCUMENT_DLK001,
|
|
221
|
+
loket.DOCUMENT_DLK002,
|
|
222
|
+
loket.DOCUMENT_DLK003,
|
|
223
|
+
loket.DOCUMENT_DLK021,
|
|
224
|
+
],
|
|
225
|
+
};
|
|
226
|
+
loket.RISK_CONFIG[loket.RISK_CLK012] = {
|
|
227
|
+
isRequiredFillClaimAmount: false,
|
|
228
|
+
desc: {
|
|
229
|
+
id: 'Pembatalan Karena Terjadinya pemogokan, kerusuhan atau huru-hara yang tidak terduga dimana keadaan tersebut terjadi di tempat tujuan (lokasi acara) yang direncanakan diluar kendali anda',
|
|
230
|
+
en: 'Cancellation due to unexpected strikes, riots, or civil commotions occurring at the intended destination (event location), which are beyond your control',
|
|
231
|
+
},
|
|
232
|
+
requiredDocument: [
|
|
233
|
+
loket.DOCUMENT_DLK001,
|
|
234
|
+
loket.DOCUMENT_DLK002,
|
|
235
|
+
loket.DOCUMENT_DLK003,
|
|
236
|
+
loket.DOCUMENT_DLK022,
|
|
237
|
+
],
|
|
238
|
+
};
|
|
239
|
+
loket.RISK_CONFIG[loket.RISK_CLK013] = {
|
|
240
|
+
isRequiredFillClaimAmount: false,
|
|
241
|
+
desc: {
|
|
242
|
+
id: 'Pembatalan Karena Tempat tinggal anda atau Tempat usaha anda di Indonesia mengalami kerusakan besar** karena kebakaran, banjir atau bencana alam sejenis dan kehadiran anda diperlukan pada tempatnya saat atau setelah tanggal keberangkatan',
|
|
243
|
+
en: 'Cancellation due to substantial damage** to your residence or business premises in Indonesia caused by fire, flood, or similar natural disasters, requiring your presence at the location on or after the scheduled departure date',
|
|
244
|
+
},
|
|
245
|
+
requiredDocument: [
|
|
246
|
+
loket.DOCUMENT_DLK001,
|
|
247
|
+
loket.DOCUMENT_DLK002,
|
|
248
|
+
loket.DOCUMENT_DLK003,
|
|
249
|
+
loket.DOCUMENT_DLK023,
|
|
250
|
+
],
|
|
251
|
+
};
|
|
252
|
+
loket.RISK_CONFIG[loket.RISK_CLK014] = {
|
|
253
|
+
isRequiredFillClaimAmount: false,
|
|
254
|
+
desc: {
|
|
255
|
+
id: 'Pembatalan Karena Pesawat delay min 4 jam dan/atau penerbangan pesawat dibatalkan karena bencana alam, akibat pemogokan, aksi buruh sektor industri, cuaca buruk, kerusakan mekanis atau penutupan bandara atau pelabuhan keberangkatan',
|
|
256
|
+
en: 'Cancellation due to a flight delay of not less than four (4) hours and/or flight cancellation resulting from force majeure events, including but not limited to natural disasters, strikes or industrial actions, adverse weather conditions, mechanical breakdown, or closure of the designated departure airport or seaport',
|
|
257
|
+
},
|
|
258
|
+
requiredDocument: [
|
|
259
|
+
loket.DOCUMENT_DLK001,
|
|
260
|
+
loket.DOCUMENT_DLK002,
|
|
261
|
+
loket.DOCUMENT_DLK003,
|
|
262
|
+
loket.DOCUMENT_DLK024,
|
|
263
|
+
],
|
|
264
|
+
};
|
|
186
265
|
loket.DOCUMENT_CONFIG[loket.DOCUMENT_DLK001] = {
|
|
187
266
|
desc: {
|
|
188
267
|
id: 'KTP',
|
|
@@ -303,6 +382,30 @@ loket.DOCUMENT_CONFIG[loket.DOCUMENT_DLK020] = {
|
|
|
303
382
|
en: 'Proof of Payment for Accommodation and Transportation - Invoices, hotel receipts, proof of reservation, scheduled transportation tickets (e.g. train, plane)',
|
|
304
383
|
},
|
|
305
384
|
};
|
|
385
|
+
loket.DOCUMENT_CONFIG[loket.DOCUMENT_DLK021] = {
|
|
386
|
+
desc: {
|
|
387
|
+
id: 'Surat panggilan pengadilan (jika batal akibat menjadi saksi)',
|
|
388
|
+
en: 'Court Summons (in the event of cancellation due to being required to appear as a witness)',
|
|
389
|
+
},
|
|
390
|
+
};
|
|
391
|
+
loket.DOCUMENT_CONFIG[loket.DOCUMENT_DLK022] = {
|
|
392
|
+
desc: {
|
|
393
|
+
id: 'Surat keterangan dari penyelenggara acara, kepolisian, pemerintah setempat, dan/atau media yang menyatakan bahwa terjadi pemogokan, kerusuhan, atau huru-hara di lokasi acara',
|
|
394
|
+
en: 'Official statement from the event organizer, police, local authorities, and/or media confirming the occurrence of a strike, riot, or civil commotion at the event location',
|
|
395
|
+
},
|
|
396
|
+
};
|
|
397
|
+
loket.DOCUMENT_CONFIG[loket.DOCUMENT_DLK023] = {
|
|
398
|
+
desc: {
|
|
399
|
+
id: 'Surat keterangan RT/RW dan foto-foto pendukung (jika tempat tinggal atau tempat usaha rusak)',
|
|
400
|
+
en: 'Certificate from the neighborhood authority (RT/RW) and supporting photographs (in the event of damage to the residence or business premises)',
|
|
401
|
+
},
|
|
402
|
+
};
|
|
403
|
+
loket.DOCUMENT_CONFIG[loket.DOCUMENT_DLK024] = {
|
|
404
|
+
desc: {
|
|
405
|
+
id: 'Surat keterangan dari Maskapai Penerbangan (jika penerbangan delay atau dibatalkan)',
|
|
406
|
+
en: 'Certificate or official statement from the Airline (in the event of flight delay or cancellation)',
|
|
407
|
+
},
|
|
408
|
+
};
|
|
306
409
|
loket.DOCUMENT_CONFIG[loket.DOCUMENT_DT001] = {
|
|
307
410
|
desc: {
|
|
308
411
|
id: "Dokumen Surat Kuasa",
|
|
@@ -340,16 +443,25 @@ loket.BENEFIT_BASE_ON_PRODUCT = {
|
|
|
340
443
|
loket.RISK_CLK007,
|
|
341
444
|
loket.RISK_CLK008,
|
|
342
445
|
loket.RISK_CLK009,
|
|
446
|
+
loket.RISK_CLK010,
|
|
447
|
+
loket.RISK_CLK011,
|
|
448
|
+
loket.RISK_CLK012,
|
|
449
|
+
loket.RISK_CLK013,
|
|
450
|
+
loket.RISK_CLK014,
|
|
343
451
|
],
|
|
344
452
|
'P126': [
|
|
345
453
|
loket.RISK_CLK001,
|
|
346
454
|
loket.RISK_CLK002,
|
|
347
455
|
loket.RISK_CLK003,
|
|
348
|
-
loket.RISK_CLK004,
|
|
349
456
|
loket.RISK_CLK005,
|
|
350
457
|
loket.RISK_CLK006,
|
|
351
458
|
loket.RISK_CLK007,
|
|
352
459
|
loket.RISK_CLK008,
|
|
460
|
+
loket.RISK_CLK010,
|
|
461
|
+
loket.RISK_CLK011,
|
|
462
|
+
loket.RISK_CLK012,
|
|
463
|
+
loket.RISK_CLK013,
|
|
464
|
+
loket.RISK_CLK014,
|
|
353
465
|
],
|
|
354
466
|
};
|
|
355
467
|
exports.default = loket;
|
|
@@ -1,2 +1,20 @@
|
|
|
1
|
-
declare const config:
|
|
1
|
+
declare const config: {
|
|
2
|
+
date_time_type_for_time: string;
|
|
3
|
+
date_time_type_for_days: string;
|
|
4
|
+
date_time_type_for_set_time: string;
|
|
5
|
+
date_format_full_datetime_with_separator: string;
|
|
6
|
+
date_format_full_datetime_without_milisecond_with_separator: string;
|
|
7
|
+
date_simple_format: string;
|
|
8
|
+
date_simple_format_withoud_dash: string;
|
|
9
|
+
date_format_full_datetime_only: string;
|
|
10
|
+
date_format_timestamp: string;
|
|
11
|
+
date_format_indonesia_format: string;
|
|
12
|
+
date_format_english_format: string;
|
|
13
|
+
date_simple_indonesia_format: string;
|
|
14
|
+
GENDER_MALE: string;
|
|
15
|
+
GENDER_FEMALE: string;
|
|
16
|
+
HTTP_STATUS_OK: number;
|
|
17
|
+
HTTP_STATUS_SERVER_ERROR: number;
|
|
18
|
+
DEFAULT: string;
|
|
19
|
+
};
|
|
2
20
|
export default config;
|
package/dist/constants/config.js
CHANGED
|
@@ -1,23 +1,26 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
const config = {
|
|
4
|
-
// DATE TIME TYPE
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
// GENDER
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
// HTTP STATUS CODE
|
|
21
|
-
|
|
22
|
-
|
|
3
|
+
const config = {
|
|
4
|
+
// DATE TIME TYPE
|
|
5
|
+
date_time_type_for_time: 'time',
|
|
6
|
+
date_time_type_for_days: 'day',
|
|
7
|
+
date_time_type_for_set_time: 'settime',
|
|
8
|
+
date_format_full_datetime_with_separator: 'YYYY-MM-DD HH:ii:ss.SSS',
|
|
9
|
+
date_format_full_datetime_without_milisecond_with_separator: 'YYYY-MM-DD HH:ii:ss',
|
|
10
|
+
date_simple_format: 'YYYY-MM-DD',
|
|
11
|
+
date_simple_format_withoud_dash: 'YYYYMMDD',
|
|
12
|
+
date_format_full_datetime_only: 'DD/MM/YYYY HH:ii:ss',
|
|
13
|
+
date_format_timestamp: 'timestamp',
|
|
14
|
+
date_format_indonesia_format: 'D M Y',
|
|
15
|
+
date_format_english_format: 'DD MMM YYYY',
|
|
16
|
+
date_simple_indonesia_format: 'DD-MM-YYYY',
|
|
17
|
+
// GENDER
|
|
18
|
+
GENDER_MALE: 'M',
|
|
19
|
+
GENDER_FEMALE: 'F',
|
|
20
|
+
// HTTP STATUS CODE
|
|
21
|
+
HTTP_STATUS_OK: 200,
|
|
22
|
+
HTTP_STATUS_SERVER_ERROR: 500,
|
|
23
|
+
// DEFAULT
|
|
24
|
+
DEFAULT: 'default',
|
|
25
|
+
};
|
|
23
26
|
exports.default = config;
|
|
@@ -4,8 +4,6 @@ exports.default = {
|
|
|
4
4
|
"VT001": [
|
|
5
5
|
"Audi",
|
|
6
6
|
"BMW",
|
|
7
|
-
"BYD",
|
|
8
|
-
"Chery",
|
|
9
7
|
"Chevrolet",
|
|
10
8
|
"Citroën",
|
|
11
9
|
"Daihatsu",
|
|
@@ -26,7 +24,6 @@ exports.default = {
|
|
|
26
24
|
"MAN",
|
|
27
25
|
"Mazda",
|
|
28
26
|
"Mercedes-Benz",
|
|
29
|
-
"MG",
|
|
30
27
|
"MINI",
|
|
31
28
|
"Mitsubishi",
|
|
32
29
|
"Neta",
|
|
@@ -38,7 +35,6 @@ exports.default = {
|
|
|
38
35
|
"Subaru",
|
|
39
36
|
"Suzuki",
|
|
40
37
|
"Tata Motors",
|
|
41
|
-
"Tesla",
|
|
42
38
|
"Toyota",
|
|
43
39
|
"Volkswagen",
|
|
44
40
|
"Volvo",
|
|
@@ -86,7 +82,6 @@ exports.default = {
|
|
|
86
82
|
"Ducati",
|
|
87
83
|
"EM1",
|
|
88
84
|
"Energica",
|
|
89
|
-
"Gesits",
|
|
90
85
|
"Harley-Davidson",
|
|
91
86
|
"Honda",
|
|
92
87
|
"Italjet",
|
|
@@ -102,10 +97,30 @@ exports.default = {
|
|
|
102
97
|
"Suzuki",
|
|
103
98
|
"TVS",
|
|
104
99
|
"Vespa",
|
|
100
|
+
"Yamaha",
|
|
101
|
+
"Zero Motorcycles"
|
|
102
|
+
],
|
|
103
|
+
"VT005": [
|
|
104
|
+
"BMW",
|
|
105
|
+
"BYD",
|
|
106
|
+
"Chery",
|
|
107
|
+
"DFSK",
|
|
108
|
+
"Hyundai",
|
|
109
|
+
"Kia",
|
|
110
|
+
"Lexus",
|
|
111
|
+
"Mercedes-Benz",
|
|
112
|
+
"MG",
|
|
113
|
+
"MINI",
|
|
114
|
+
"Renault",
|
|
115
|
+
"Tesla",
|
|
116
|
+
"Toyota",
|
|
117
|
+
"Wuling"
|
|
118
|
+
],
|
|
119
|
+
"VT006": [
|
|
120
|
+
"Gesits",
|
|
121
|
+
"Honda",
|
|
105
122
|
"Viar",
|
|
106
123
|
"Volta",
|
|
107
124
|
"Yadea",
|
|
108
|
-
|
|
109
|
-
"Zero Motorcycles"
|
|
110
|
-
]
|
|
125
|
+
],
|
|
111
126
|
};
|
|
@@ -9,8 +9,12 @@ declare const insuranceType: {
|
|
|
9
9
|
en: string;
|
|
10
10
|
};
|
|
11
11
|
deductible: {
|
|
12
|
-
|
|
13
|
-
|
|
12
|
+
VT001: string[];
|
|
13
|
+
VT002: string[];
|
|
14
|
+
VT003: string[];
|
|
15
|
+
VT004: string[];
|
|
16
|
+
VT005: string[];
|
|
17
|
+
VT006: string[];
|
|
14
18
|
};
|
|
15
19
|
}[];
|
|
16
20
|
declare const regionCode: {
|
|
@@ -28,7 +32,7 @@ declare const vehicleTypeCode: {
|
|
|
28
32
|
};
|
|
29
33
|
maxAge: number;
|
|
30
34
|
}[];
|
|
31
|
-
declare const additionalCoverage: {
|
|
35
|
+
declare const additionalCoverage: ({
|
|
32
36
|
code: string;
|
|
33
37
|
desc: {
|
|
34
38
|
id: string;
|
|
@@ -37,7 +41,18 @@ declare const additionalCoverage: {
|
|
|
37
41
|
isVisible: boolean;
|
|
38
42
|
isInputSumInsured: boolean;
|
|
39
43
|
isInputQty: boolean;
|
|
40
|
-
|
|
44
|
+
deductible: string[];
|
|
45
|
+
} | {
|
|
46
|
+
code: string;
|
|
47
|
+
desc: {
|
|
48
|
+
id: string;
|
|
49
|
+
en: string;
|
|
50
|
+
};
|
|
51
|
+
isVisible: boolean;
|
|
52
|
+
isInputSumInsured: boolean;
|
|
53
|
+
isInputQty: boolean;
|
|
54
|
+
deductible?: undefined;
|
|
55
|
+
})[];
|
|
41
56
|
declare const vehicleUsage: {
|
|
42
57
|
code: string;
|
|
43
58
|
desc: {
|
|
@@ -45,4 +60,12 @@ declare const vehicleUsage: {
|
|
|
45
60
|
en: string;
|
|
46
61
|
};
|
|
47
62
|
}[];
|
|
48
|
-
|
|
63
|
+
declare const deductible: {
|
|
64
|
+
code: string;
|
|
65
|
+
order: number;
|
|
66
|
+
desc: {
|
|
67
|
+
id: string;
|
|
68
|
+
en: string;
|
|
69
|
+
};
|
|
70
|
+
}[];
|
|
71
|
+
export { insuranceType, regionCode, vehicleTypeCode, additionalCoverage, vehicleUsage, deductible, };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.vehicleUsage = exports.additionalCoverage = exports.vehicleTypeCode = exports.regionCode = exports.insuranceType = void 0;
|
|
3
|
+
exports.deductible = exports.vehicleUsage = exports.additionalCoverage = exports.vehicleTypeCode = exports.regionCode = exports.insuranceType = void 0;
|
|
4
4
|
const insuranceType = [
|
|
5
5
|
{
|
|
6
6
|
code: "all-risk",
|
|
@@ -13,8 +13,12 @@ const insuranceType = [
|
|
|
13
13
|
en: 'Covering Loss and/or physical damage to insured vehicle by cause not otherwise excluded in terms of the policy',
|
|
14
14
|
},
|
|
15
15
|
deductible: {
|
|
16
|
-
|
|
17
|
-
|
|
16
|
+
"VT001": ['MV_DEDUCT05'],
|
|
17
|
+
"VT002": ['MV_DEDUCT05'],
|
|
18
|
+
"VT003": ['MV_DEDUCT05'],
|
|
19
|
+
"VT004": ['MV_DEDUCT06'],
|
|
20
|
+
"VT005": ['MV_DEDUCT05'],
|
|
21
|
+
"VT006": ['MV_DEDUCT06', 'MV_DEDUCT01'],
|
|
18
22
|
},
|
|
19
23
|
},
|
|
20
24
|
{
|
|
@@ -28,8 +32,12 @@ const insuranceType = [
|
|
|
28
32
|
en: 'To pay loss or damage when the cost of such loss or damage exceeds 75% of the value of the vehicle at the time of loss by cause not otherwise excluded in terms of the policy',
|
|
29
33
|
},
|
|
30
34
|
deductible: {
|
|
31
|
-
|
|
32
|
-
|
|
35
|
+
"VT001": ['MV_DEDUCT07'],
|
|
36
|
+
"VT002": ['MV_DEDUCT07'],
|
|
37
|
+
"VT003": ['MV_DEDUCT07'],
|
|
38
|
+
"VT004": ['MV_DEDUCT08'],
|
|
39
|
+
"VT005": ['MV_DEDUCT07'],
|
|
40
|
+
"VT006": ['MV_DEDUCT08', 'MV_DEDUCT01'],
|
|
33
41
|
},
|
|
34
42
|
},
|
|
35
43
|
];
|
|
@@ -91,6 +99,22 @@ const vehicleTypeCode = [
|
|
|
91
99
|
},
|
|
92
100
|
maxAge: 5,
|
|
93
101
|
},
|
|
102
|
+
{
|
|
103
|
+
code: "VT005",
|
|
104
|
+
desc: {
|
|
105
|
+
id: "Jenis Kendaraan Non Bus dan Non Truk Listrik",
|
|
106
|
+
en: "ypes of Non-Bus and Non-Truck Electrical Vehicles",
|
|
107
|
+
},
|
|
108
|
+
maxAge: 10,
|
|
109
|
+
},
|
|
110
|
+
{
|
|
111
|
+
code: "VT006",
|
|
112
|
+
desc: {
|
|
113
|
+
id: "Jenis Kendaraan Roda 2 (dua) Listrik",
|
|
114
|
+
en: "Type of 2 (two) Wheeled Electrical Vehicle",
|
|
115
|
+
},
|
|
116
|
+
maxAge: 5,
|
|
117
|
+
},
|
|
94
118
|
];
|
|
95
119
|
exports.vehicleTypeCode = vehicleTypeCode;
|
|
96
120
|
const additionalCoverage = [
|
|
@@ -103,6 +127,9 @@ const additionalCoverage = [
|
|
|
103
127
|
isVisible: true,
|
|
104
128
|
isInputSumInsured: false,
|
|
105
129
|
isInputQty: false,
|
|
130
|
+
deductible: [
|
|
131
|
+
'MV_DEDUCT02',
|
|
132
|
+
],
|
|
106
133
|
},
|
|
107
134
|
{
|
|
108
135
|
code: "EQVET",
|
|
@@ -113,6 +140,9 @@ const additionalCoverage = [
|
|
|
113
140
|
isVisible: true,
|
|
114
141
|
isInputSumInsured: false,
|
|
115
142
|
isInputQty: false,
|
|
143
|
+
deductible: [
|
|
144
|
+
'MV_DEDUCT02',
|
|
145
|
+
],
|
|
116
146
|
},
|
|
117
147
|
{
|
|
118
148
|
code: "SRCC",
|
|
@@ -123,6 +153,9 @@ const additionalCoverage = [
|
|
|
123
153
|
isVisible: true,
|
|
124
154
|
isInputSumInsured: false,
|
|
125
155
|
isInputQty: false,
|
|
156
|
+
deductible: [
|
|
157
|
+
'MV_DEDUCT02',
|
|
158
|
+
],
|
|
126
159
|
},
|
|
127
160
|
{
|
|
128
161
|
code: "PSATSI",
|
|
@@ -133,6 +166,9 @@ const additionalCoverage = [
|
|
|
133
166
|
isVisible: true,
|
|
134
167
|
isInputSumInsured: false,
|
|
135
168
|
isInputQty: false,
|
|
169
|
+
deductible: [
|
|
170
|
+
'MV_DEDUCT02',
|
|
171
|
+
],
|
|
136
172
|
},
|
|
137
173
|
{
|
|
138
174
|
code: "TPL",
|
|
@@ -143,6 +179,9 @@ const additionalCoverage = [
|
|
|
143
179
|
isVisible: true,
|
|
144
180
|
isInputSumInsured: true,
|
|
145
181
|
isInputQty: false,
|
|
182
|
+
deductible: [
|
|
183
|
+
'MV_DEDUCT03',
|
|
184
|
+
],
|
|
146
185
|
},
|
|
147
186
|
{
|
|
148
187
|
code: "PAD",
|
|
@@ -153,26 +192,36 @@ const additionalCoverage = [
|
|
|
153
192
|
isVisible: true,
|
|
154
193
|
isInputSumInsured: true,
|
|
155
194
|
isInputQty: false,
|
|
195
|
+
deductible: [
|
|
196
|
+
'MV_DEDUCT03',
|
|
197
|
+
],
|
|
156
198
|
},
|
|
157
199
|
{
|
|
158
200
|
code: "PAP",
|
|
159
201
|
desc: {
|
|
160
|
-
id: "
|
|
202
|
+
id: "Kecelakaan Penumpang",
|
|
161
203
|
en: "Personal Accident Passenger",
|
|
162
204
|
},
|
|
163
205
|
isVisible: true,
|
|
164
206
|
isInputSumInsured: false,
|
|
165
207
|
isInputQty: true,
|
|
208
|
+
deductible: [
|
|
209
|
+
'MV_DEDUCT03',
|
|
210
|
+
],
|
|
166
211
|
},
|
|
167
212
|
{
|
|
168
213
|
code: "TBOD",
|
|
169
214
|
desc: {
|
|
170
215
|
id: "Biaya Medis, Izin Bengkel, Tunjangan Ambulans, Ban dan Velg",
|
|
171
|
-
en: "TBOD, Authorize Workshop, Ambulance Allowance, Tire and Wheel",
|
|
216
|
+
en: "TBOD, Authorize Workshop, Ambulance Allowance, Tire and Wheel", // TBOD -> Theft By Own Driver / Employee
|
|
172
217
|
},
|
|
173
218
|
isVisible: true,
|
|
174
219
|
isInputSumInsured: false,
|
|
175
220
|
isInputQty: false,
|
|
221
|
+
deductible: [
|
|
222
|
+
'MV_DEDUCT03',
|
|
223
|
+
'MV_DEDUCT04',
|
|
224
|
+
],
|
|
176
225
|
},
|
|
177
226
|
{
|
|
178
227
|
code: "CASCO",
|
|
@@ -208,8 +257,82 @@ const vehicleUsage = [
|
|
|
208
257
|
code: "BUSINESS",
|
|
209
258
|
desc: {
|
|
210
259
|
id: "Bisnis",
|
|
211
|
-
en: "Office
|
|
260
|
+
en: "Office Business",
|
|
261
|
+
},
|
|
262
|
+
},
|
|
263
|
+
{
|
|
264
|
+
code: "PS",
|
|
265
|
+
desc: {
|
|
266
|
+
id: "Personal / Bisnis",
|
|
267
|
+
en: "Personal / Office Business",
|
|
212
268
|
},
|
|
213
269
|
},
|
|
214
270
|
];
|
|
215
271
|
exports.vehicleUsage = vehicleUsage;
|
|
272
|
+
const deductible = [
|
|
273
|
+
{
|
|
274
|
+
code: 'MV_DEDUCT01',
|
|
275
|
+
order: 5,
|
|
276
|
+
desc: {
|
|
277
|
+
'id': '- Deduktibel tambahan untuk Komponen Kelistrikan dan Baterai: 20% dari Nilai Pertanggungan (TSI)',
|
|
278
|
+
'en': '- Additional deductible for Electrical and Battery : 20% of TSI',
|
|
279
|
+
},
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
code: 'MV_DEDUCT02',
|
|
283
|
+
order: 2,
|
|
284
|
+
desc: {
|
|
285
|
+
'id': '- Bencana Alam sesuai Definisi AAUI (Gempa Bumi, Letusan Gunung Berapi dan Tsunami & Topan, Angin Kencang, Banjir, Tanah Longsor, Hujan Es), Pemogokan, Huru-hara, Kerusuhan Sipil serta Terorisme dan Sabotase: 10% dari kerugian yang disesuaikan, dengan minimum Rp 500.000,- untuk setiap kejadian dan setiap unit',
|
|
286
|
+
'en': '- Act of God as per AAUI Definition (Earthquake, Volcanic Eruption and Tsunami & Typhoon, Windstorm, Flood, Landslide, Hail), Strike, Riot, Civil Commotion & Terrorism and Sabotage: 10% of adjusted losses minimum IDR 500.000,- anyone occurrence and anyone unit',
|
|
287
|
+
},
|
|
288
|
+
},
|
|
289
|
+
{
|
|
290
|
+
code: 'MV_DEDUCT03',
|
|
291
|
+
order: 3,
|
|
292
|
+
desc: {
|
|
293
|
+
'id': '- TPL, PA Pengemudi, PA Penumpang, Biaya Medis: Nihil',
|
|
294
|
+
'en': '- TPL, PA Driver, PA Passenger, Medical Expenses: NIL',
|
|
295
|
+
},
|
|
296
|
+
},
|
|
297
|
+
{
|
|
298
|
+
code: 'MV_DEDUCT04',
|
|
299
|
+
order: 4,
|
|
300
|
+
desc: {
|
|
301
|
+
'id': '- Risiko Pencurian oleh Pengemudi atau Karyawan Sendiri dikenakan deductible sebesar 10% dari nilai klaim untuk setiap kejadian maupun setiap pengajuan klaim',
|
|
302
|
+
'en': '- Theft by Own Driver / Employee: 10% of claim amount any one claim or occurrence',
|
|
303
|
+
},
|
|
304
|
+
},
|
|
305
|
+
{
|
|
306
|
+
code: 'MV_DEDUCT05',
|
|
307
|
+
order: 1,
|
|
308
|
+
desc: {
|
|
309
|
+
'id': 'Kerusakan Material Sendiri, pencurian, dan pembobolan: Deductible sebesar IDR 300.000 untuk setiap kejadian dan untuk setiap unit atas kerugian sebagian (partial loss), kecuali untuk:',
|
|
310
|
+
'en': 'Own Material Damage, theft, burglary: IDR 300.000 anyone occurrence and for anyone unit for partial loss, except for:',
|
|
311
|
+
},
|
|
312
|
+
},
|
|
313
|
+
{
|
|
314
|
+
code: 'MV_DEDUCT06',
|
|
315
|
+
order: 1,
|
|
316
|
+
desc: {
|
|
317
|
+
'id': 'Kerusakan Material Sendiri, pencurian, dan pembobolan: Deductible sebesar IDR 150.000 untuk setiap kejadian dan untuk setiap unit atas kerugian sebagian (partial loss), kecuali untuk:',
|
|
318
|
+
'en': 'Own Material Damage, theft, burglary: IDR 150.000 anyone occurrence and for anyone unit for partial loss, except for:',
|
|
319
|
+
},
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
code: 'MV_DEDUCT07',
|
|
323
|
+
order: 1,
|
|
324
|
+
desc: {
|
|
325
|
+
'id': 'Kerusakan Material Sendiri, Pencurian, Pembobolan, dan Total Loss: Deductible sebesar IDR 300.000 untuk setiap kejadian dan untuk setiap unit, kecuali untuk:',
|
|
326
|
+
'en': 'Own Material Damage, Theft, Burglary and Total Loss: IDR 300.000 anyone occurrence and for anyone unit Except for:',
|
|
327
|
+
},
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
code: 'MV_DEDUCT08',
|
|
331
|
+
order: 1,
|
|
332
|
+
desc: {
|
|
333
|
+
'id': 'Kerusakan Material Sendiri, Pencurian, Pembobolan, dan Total Loss: Deductible sebesar IDR 150.000 untuk setiap kejadian dan untuk setiap unit, kecuali untuk:',
|
|
334
|
+
'en': 'Own Material Damage, Theft, Burglary and Total Loss: IDR 150.000 anyone occurrence and for anyone unit Except for:',
|
|
335
|
+
},
|
|
336
|
+
},
|
|
337
|
+
];
|
|
338
|
+
exports.deductible = deductible;
|
|
@@ -27,6 +27,20 @@ declare const quotation: {
|
|
|
27
27
|
id: string;
|
|
28
28
|
};
|
|
29
29
|
};
|
|
30
|
+
TYPE_QUOTATION_ATTACHMENT_INSURER_GENERATED_QUOTATION: {
|
|
31
|
+
code: string;
|
|
32
|
+
desc: {
|
|
33
|
+
en: string;
|
|
34
|
+
id: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
TYPE_QUOTATION_ATTACHMENT_CUSTOMER_GENERATED_QUOTATION: {
|
|
38
|
+
code: string;
|
|
39
|
+
desc: {
|
|
40
|
+
en: string;
|
|
41
|
+
id: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
30
44
|
LIST: any[];
|
|
31
45
|
};
|
|
32
46
|
export default quotation;
|
|
@@ -29,10 +29,26 @@ const quotation = {
|
|
|
29
29
|
id: "Polis"
|
|
30
30
|
},
|
|
31
31
|
},
|
|
32
|
+
TYPE_QUOTATION_ATTACHMENT_INSURER_GENERATED_QUOTATION: {
|
|
33
|
+
code: 'INSURER_GENERATED_QUOTATION',
|
|
34
|
+
desc: {
|
|
35
|
+
en: "Insurer Quotation Auto Generated",
|
|
36
|
+
id: "Kutipan Pertanggungan dari Penanggung yang Dihasilkan Secara Otomatis"
|
|
37
|
+
},
|
|
38
|
+
},
|
|
39
|
+
TYPE_QUOTATION_ATTACHMENT_CUSTOMER_GENERATED_QUOTATION: {
|
|
40
|
+
code: 'CUSTOMER_GENERATED_QUOTATION',
|
|
41
|
+
desc: {
|
|
42
|
+
en: "Customer Quotation Auto Generated",
|
|
43
|
+
id: "Kutipan Pertanggungan untuk Nasabah yang Dihasilkan Secara Otomatis"
|
|
44
|
+
},
|
|
45
|
+
},
|
|
32
46
|
LIST: [],
|
|
33
47
|
};
|
|
34
48
|
quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_PREMIUM_NOTE);
|
|
35
49
|
quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_COMMISSION_NOTE);
|
|
36
50
|
quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_DOC_OTHER);
|
|
37
51
|
quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_POLICY);
|
|
52
|
+
quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_INSURER_GENERATED_QUOTATION);
|
|
53
|
+
quotation.LIST.push(quotation.TYPE_QUOTATION_ATTACHMENT_CUSTOMER_GENERATED_QUOTATION);
|
|
38
54
|
exports.default = quotation;
|
|
@@ -2,4 +2,5 @@ declare function sum(a: number | null, b: number | null): number;
|
|
|
2
2
|
declare function minus(a: number | null, b: number | null): number;
|
|
3
3
|
declare function multiple(a: number | null, b: number | null): number;
|
|
4
4
|
declare function divide(a: number | null, b: number | null): number;
|
|
5
|
-
|
|
5
|
+
declare const sumN: (...numbers: (number | null)[]) => any;
|
|
6
|
+
export { sum, minus, multiple, divide, sumN };
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.divide = exports.multiple = exports.minus = exports.sum = void 0;
|
|
3
|
+
exports.sumN = exports.divide = exports.multiple = exports.minus = exports.sum = void 0;
|
|
4
4
|
function sum(a, b) {
|
|
5
5
|
try {
|
|
6
6
|
if (a == null && b == null)
|
|
@@ -45,3 +45,11 @@ function divide(a, b) {
|
|
|
45
45
|
}
|
|
46
46
|
}
|
|
47
47
|
exports.divide = divide;
|
|
48
|
+
const sumN = (...numbers) => {
|
|
49
|
+
let result = null;
|
|
50
|
+
numbers.forEach(each => {
|
|
51
|
+
result = sum(result, each);
|
|
52
|
+
});
|
|
53
|
+
return result;
|
|
54
|
+
};
|
|
55
|
+
exports.sumN = sumN;
|