@provis/provis-common-be-module 2.6.90 → 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: {
|