@provis/provis-common-be-module 2.6.89 → 2.6.91
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.
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
declare const invoiceCoaType: {
|
|
2
|
+
INVOICE: string;
|
|
3
|
+
CREDIT_NOTE: string;
|
|
4
|
+
};
|
|
5
|
+
declare const coaType: {
|
|
6
|
+
DEBIT: string;
|
|
7
|
+
CREDIT: string;
|
|
8
|
+
};
|
|
1
9
|
declare const generalCoa: {
|
|
2
10
|
BCA2000: {
|
|
3
11
|
code: string;
|
|
@@ -72,4 +80,4 @@ declare const specificCoa: {
|
|
|
72
80
|
};
|
|
73
81
|
};
|
|
74
82
|
};
|
|
75
|
-
export { generalCoa, specificCoa, };
|
|
83
|
+
export { generalCoa, specificCoa, invoiceCoaType, coaType, };
|
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.specificCoa = exports.generalCoa = void 0;
|
|
3
|
+
exports.coaType = exports.invoiceCoaType = exports.specificCoa = exports.generalCoa = void 0;
|
|
4
|
+
const invoiceCoaType = {
|
|
5
|
+
INVOICE: 'INVOICE',
|
|
6
|
+
CREDIT_NOTE: 'CREDIT_NOTE',
|
|
7
|
+
};
|
|
8
|
+
exports.invoiceCoaType = invoiceCoaType;
|
|
9
|
+
const coaType = {
|
|
10
|
+
DEBIT: 'DEBIT',
|
|
11
|
+
CREDIT: 'CREDIT',
|
|
12
|
+
};
|
|
13
|
+
exports.coaType = coaType;
|
|
4
14
|
// kode COA ini tidak boleh diubah, karena sudah digunakan. WAJIB KONSISTEN
|
|
5
15
|
const generalCoa = {
|
|
6
16
|
BCA2000: {
|
|
@@ -66,7 +76,7 @@ const specificCoa = {
|
|
|
66
76
|
code: 'SC-0005',
|
|
67
77
|
desc: {
|
|
68
78
|
en: '',
|
|
69
|
-
id: 'Hutang Usaha Premi
|
|
79
|
+
id: 'Hutang Usaha Premi Ins',
|
|
70
80
|
},
|
|
71
81
|
},
|
|
72
82
|
PENDAPATAN_KOMISI_INS: {
|
|
@@ -80,6 +80,7 @@ const product = {
|
|
|
80
80
|
PRODUCT_CODE_CREDIT_DEFAULT: 'polismall-credit-default',
|
|
81
81
|
PRODUCT_CODE_FINE_ART_COLLECTION: 'polismall-fine-art-collections',
|
|
82
82
|
PRODUCT_CODE_MONEY: 'polismall-money',
|
|
83
|
+
PRODUCT_CODE_FIDELITY_GUARANTEE_INSURANCE: 'polismall-fidelity-guarantee-insurance',
|
|
83
84
|
};
|
|
84
85
|
product.LIST = {
|
|
85
86
|
[product.PRODUCT_CODE_BNI_RUMAH]: {
|
|
@@ -154,6 +155,10 @@ product.LIST = {
|
|
|
154
155
|
value: product.PRODUCT_CODE_ERECTION_ALL_RISK,
|
|
155
156
|
name: "Erection All Risk",
|
|
156
157
|
},
|
|
158
|
+
[product.PRODUCT_CODE_FIDELITY_GUARANTEE_INSURANCE]: {
|
|
159
|
+
value: product.PRODUCT_CODE_FIDELITY_GUARANTEE_INSURANCE,
|
|
160
|
+
name: "Fidelity Guarantee Insurance",
|
|
161
|
+
},
|
|
157
162
|
[product.PRODUCT_CODE_FINE_ART_COLLECTION]: {
|
|
158
163
|
value: product.PRODUCT_CODE_FINE_ART_COLLECTION,
|
|
159
164
|
name: "Fine Art and Collections Insurance",
|
|
@@ -372,6 +377,7 @@ product.LIST = {
|
|
|
372
377
|
},
|
|
373
378
|
};
|
|
374
379
|
product.MANUAL_LIST = [
|
|
380
|
+
product.LIST[product.PRODUCT_CODE_FIDELITY_GUARANTEE_INSURANCE],
|
|
375
381
|
product.LIST[product.PRODUCT_CODE_PROPERTY_ALL_RISK],
|
|
376
382
|
product.LIST[product.PRODUCT_CODE_EARTHQUAKE],
|
|
377
383
|
product.LIST[product.PRODUCT_CODE_VEHICLE],
|