kcommons 5.9.10 → 5.9.12
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,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.etc = exports.
|
|
4
|
-
var
|
|
5
|
-
(function (
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
})(
|
|
3
|
+
exports.etc = exports.PR_INCLUDE = void 0;
|
|
4
|
+
var PR_INCLUDE;
|
|
5
|
+
(function (PR_INCLUDE) {
|
|
6
|
+
PR_INCLUDE["items"] = "items";
|
|
7
|
+
PR_INCLUDE["approval_chain"] = "approval_chain";
|
|
8
|
+
})((PR_INCLUDE = exports.PR_INCLUDE || (exports.PR_INCLUDE = {})));
|
|
9
9
|
exports.etc = "hello";
|
|
@@ -38,7 +38,6 @@ export interface INestedPR extends Omit<IPR, "created_by_user" | "company" | "pa
|
|
|
38
38
|
}
|
|
39
39
|
export interface IPRItems extends IDocItem {
|
|
40
40
|
pr_id: string;
|
|
41
|
-
pr_no: string;
|
|
42
41
|
quantity: number;
|
|
43
42
|
pending_quantity: number;
|
|
44
43
|
}
|
|
@@ -57,8 +56,14 @@ export declare enum PR_STATUS {
|
|
|
57
56
|
CLOSED = "CLOSED",
|
|
58
57
|
SENT_TO_PURCHASE = "SENT TO PURCHASE"
|
|
59
58
|
}
|
|
60
|
-
export declare enum
|
|
59
|
+
export declare enum PR_INCLUDE {
|
|
60
|
+
created_by_user = "created_by_user",
|
|
61
|
+
company = "company",
|
|
62
|
+
parent_indent = "parent_indent",
|
|
63
|
+
parent_department = "parent_department",
|
|
64
|
+
target_purchase_location = "target_purchase_location",
|
|
65
|
+
approval_chain = "approval_chain",
|
|
61
66
|
items = "items",
|
|
62
|
-
|
|
67
|
+
referenced_rfq_items = "referenced_rfq_items"
|
|
63
68
|
}
|
|
64
69
|
export declare const etc = "hello";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.etc = exports.
|
|
3
|
+
exports.etc = exports.PR_INCLUDE = exports.PR_STATUS = exports.PR_PRIORITY_TYPES = void 0;
|
|
4
4
|
exports.PR_PRIORITY_TYPES = {
|
|
5
5
|
LOW: "Low",
|
|
6
6
|
MEDIUM: "Medium",
|
|
@@ -16,9 +16,15 @@ var PR_STATUS;
|
|
|
16
16
|
PR_STATUS["CLOSED"] = "CLOSED";
|
|
17
17
|
PR_STATUS["SENT_TO_PURCHASE"] = "SENT TO PURCHASE";
|
|
18
18
|
})(PR_STATUS || (exports.PR_STATUS = PR_STATUS = {}));
|
|
19
|
-
var
|
|
20
|
-
(function (
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
19
|
+
var PR_INCLUDE;
|
|
20
|
+
(function (PR_INCLUDE) {
|
|
21
|
+
PR_INCLUDE["created_by_user"] = "created_by_user";
|
|
22
|
+
PR_INCLUDE["company"] = "company";
|
|
23
|
+
PR_INCLUDE["parent_indent"] = "parent_indent";
|
|
24
|
+
PR_INCLUDE["parent_department"] = "parent_department";
|
|
25
|
+
PR_INCLUDE["target_purchase_location"] = "target_purchase_location";
|
|
26
|
+
PR_INCLUDE["approval_chain"] = "approval_chain";
|
|
27
|
+
PR_INCLUDE["items"] = "items";
|
|
28
|
+
PR_INCLUDE["referenced_rfq_items"] = "referenced_rfq_items";
|
|
29
|
+
})(PR_INCLUDE || (exports.PR_INCLUDE = PR_INCLUDE = {}));
|
|
24
30
|
exports.etc = "hello";
|