@provis/provis-common-be-module 2.6.22 → 2.6.24

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,31 @@
1
+ declare const coretax: {
2
+ VAT_PERCENTAGE: number;
3
+ STATUS: {
4
+ DRAFT: {
5
+ code: string;
6
+ desc: {
7
+ en: string;
8
+ id: string;
9
+ };
10
+ };
11
+ SUBMIT: {
12
+ code: string;
13
+ desc: {
14
+ en: string;
15
+ id: string;
16
+ };
17
+ };
18
+ CANCEL: {
19
+ code: string;
20
+ desc: {
21
+ en: string;
22
+ id: string;
23
+ };
24
+ };
25
+ };
26
+ TYPE_CORETAX: {
27
+ CREATE: string;
28
+ UPDATE: string;
29
+ };
30
+ };
31
+ export default coretax;
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const coretax = {
4
+ VAT_PERCENTAGE: 11 / 100,
5
+ STATUS: {
6
+ DRAFT: {
7
+ code: '0',
8
+ desc: {
9
+ en: 'DRAFT',
10
+ id: 'DRAFT',
11
+ }
12
+ },
13
+ SUBMIT: {
14
+ code: '100',
15
+ desc: {
16
+ en: 'SUBMIT',
17
+ id: 'SUBMIT',
18
+ }
19
+ },
20
+ CANCEL: {
21
+ code: '300',
22
+ desc: {
23
+ en: 'CANCEL',
24
+ id: 'CANCEL',
25
+ }
26
+ },
27
+ },
28
+ TYPE_CORETAX: {
29
+ CREATE: 'CREATE',
30
+ UPDATE: 'UPDATE'
31
+ },
32
+ };
33
+ exports.default = coretax;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provis/provis-common-be-module",
3
- "version": "2.6.22",
3
+ "version": "2.6.24",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {