kcommons 14.7.2 → 14.7.3

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.
@@ -31,5 +31,6 @@ export declare enum STATUSES {
31
31
  ARRIVED = "ARRIVED",
32
32
  REQUESTED_AT_SHIPPING_LOCATION = "REQUESTED_AT_SHIPPING_LOCATION",
33
33
  IN_TRANSIT = "IN_TRANSIT",
34
- EXITED = "EXITED"
34
+ EXITED = "EXITED",
35
+ IN_PROGRESS = "IN_PROGRESS"
35
36
  }
@@ -36,4 +36,5 @@ var STATUSES;
36
36
  STATUSES["REQUESTED_AT_SHIPPING_LOCATION"] = "REQUESTED_AT_SHIPPING_LOCATION";
37
37
  STATUSES["IN_TRANSIT"] = "IN_TRANSIT";
38
38
  STATUSES["EXITED"] = "EXITED";
39
+ STATUSES["IN_PROGRESS"] = "IN_PROGRESS";
39
40
  })(STATUSES || (exports.STATUSES = STATUSES = {}));
@@ -38,9 +38,6 @@ export declare enum PO_STATUS {
38
38
  PENDING_APPROVAL = "PENDING_APPROVAL",
39
39
  /** @description APPROVED means the PO was approved by everyone in the approval chain and is ready to be sent to vendor */
40
40
  APPROVED = "APPROVED",
41
- /** @description REJECTED measn the PO was rejected by one of the Users of approval chain and has been sent back to the member of approval chain preceeding
42
- * the user who rejected it */
43
- REJECTED = "REJECTED",
44
41
  /** @description CANCELLED means the PO was either cancelled by Company User or Vendor. Lifecyle of this PO has come to an end*/
45
42
  CANCELLED = "CANCELLED",
46
43
  /** @description CLOSED Status signifies that every item of PO has been included in GRNs and has been successfully delivered to the Company */
@@ -52,9 +49,8 @@ export declare enum PO_STATUS {
52
49
  ACCEPTED = "ACCEPTED",
53
50
  /** @description REJECTE_BY_VENDOR means the Vendor has received the PO and has rejected it. */
54
51
  REJECTED_BY_VENDOR = "REJECTED_BY_VENDOR",
55
- /** @description POCESSED means all the items of PO have been included in GRN successfully but some of the GRNs have not been approved yet i.e. Changes can
56
- * happen and staus might get demoted. */
57
- PROCESSED = "PROCESSED"
52
+ /** @description IN_PROGRESS Either ASN, VES or GI has been created corresponding to PO (items may be in partial quantity) meaning that the items requested in the PO are on the move. */
53
+ IN_PROGRESS = "IN_PROGRESS"
58
54
  }
59
55
  export declare enum PO_TYPE {
60
56
  DIRECT = "DIRECT",
@@ -23,9 +23,6 @@ var PO_STATUS;
23
23
  PO_STATUS["PENDING_APPROVAL"] = "PENDING_APPROVAL";
24
24
  /** @description APPROVED means the PO was approved by everyone in the approval chain and is ready to be sent to vendor */
25
25
  PO_STATUS["APPROVED"] = "APPROVED";
26
- /** @description REJECTED measn the PO was rejected by one of the Users of approval chain and has been sent back to the member of approval chain preceeding
27
- * the user who rejected it */
28
- PO_STATUS["REJECTED"] = "REJECTED";
29
26
  /** @description CANCELLED means the PO was either cancelled by Company User or Vendor. Lifecyle of this PO has come to an end*/
30
27
  PO_STATUS["CANCELLED"] = "CANCELLED";
31
28
  /** @description CLOSED Status signifies that every item of PO has been included in GRNs and has been successfully delivered to the Company */
@@ -37,9 +34,8 @@ var PO_STATUS;
37
34
  PO_STATUS["ACCEPTED"] = "ACCEPTED";
38
35
  /** @description REJECTE_BY_VENDOR means the Vendor has received the PO and has rejected it. */
39
36
  PO_STATUS["REJECTED_BY_VENDOR"] = "REJECTED_BY_VENDOR";
40
- /** @description POCESSED means all the items of PO have been included in GRN successfully but some of the GRNs have not been approved yet i.e. Changes can
41
- * happen and staus might get demoted. */
42
- PO_STATUS["PROCESSED"] = "PROCESSED";
37
+ /** @description IN_PROGRESS Either ASN, VES or GI has been created corresponding to PO (items may be in partial quantity) meaning that the items requested in the PO are on the move. */
38
+ PO_STATUS["IN_PROGRESS"] = "IN_PROGRESS";
43
39
  })(PO_STATUS || (exports.PO_STATUS = PO_STATUS = {}));
44
40
  var PO_TYPE;
45
41
  (function (PO_TYPE) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "kcommons",
3
- "version": "14.7.2",
3
+ "version": "14.7.3",
4
4
  "description": "",
5
5
  "main": "./build/index.js",
6
6
  "types": "./build/index.d.ts",