@provis/provis-common-be-module 2.6.53 → 2.6.54

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.
@@ -7,6 +7,7 @@ declare const cargo: {
7
7
  REVISION: string;
8
8
  CANCEL: string;
9
9
  };
10
+ STATUS_NAME: {};
10
11
  TYPE: {
11
12
  TYPE_ICCA_INV: {
12
13
  code: string;
@@ -9,35 +9,44 @@ const cargo = {
9
9
  REVISION: "250",
10
10
  CANCEL: "300",
11
11
  },
12
+ STATUS_NAME: {},
12
13
  TYPE: {
13
14
  TYPE_ICCA_INV: {
14
15
  code: 'ICCA-INV',
15
16
  desc: {
16
- id: '',
17
+ id: 'Institute Cargo Clause (A) 01/01/09 - Invoice value +10%',
17
18
  en: 'Institute Cargo Clause (A) 01/01/09 - Invoice value +10%',
18
19
  },
19
20
  },
20
21
  TYPE_ICCC_INV: {
21
22
  code: 'ICCC-INV',
22
23
  desc: {
23
- id: '',
24
+ id: 'Institute Cargo Clause (C) 01/01/09 - Invoice value +10%',
24
25
  en: 'Institute Cargo Clause (C) 01/01/09 - Invoice value +10%',
25
26
  },
26
27
  },
27
28
  TYPE_ICCA_FLB: {
28
29
  code: 'ICCA-FLB',
29
30
  desc: {
30
- id: '',
31
+ id: 'Institute Cargo Clause (A) 01/01/09 - First Loss Basis',
31
32
  en: 'Institute Cargo Clause (A) 01/01/09 - First Loss Basis',
32
33
  },
33
34
  },
34
35
  TYPE_ICCC_FLB: {
35
36
  code: 'ICCC-FLB',
36
37
  desc: {
37
- id: '',
38
+ id: 'Institute Cargo Clause (C) 01/01/09 - First Loss Basis',
38
39
  en: 'Institute Cargo Clause (C) 01/01/09 - First Loss Basis',
39
40
  },
40
41
  },
41
42
  }
42
43
  };
44
+ cargo.STATUS_NAME = {
45
+ [cargo.STATUS.INITIAL]: 'DRAFT',
46
+ [cargo.STATUS.PAID]: 'PAID',
47
+ [cargo.STATUS.WAITING_FOR_PAYMENT]: 'WAITING FOR PAYMENT',
48
+ [cargo.STATUS.SUBMITTED]: 'SUBMITTED',
49
+ [cargo.STATUS.REVISION]: 'REVISION',
50
+ [cargo.STATUS.CANCEL]: 'CANCEL',
51
+ };
43
52
  exports.default = cargo;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@provis/provis-common-be-module",
3
- "version": "2.6.53",
3
+ "version": "2.6.54",
4
4
  "description": "This common module for Provis internal backend use lib",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {