kcommons 5.24.13 → 5.24.15
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.
|
@@ -9,6 +9,19 @@ import { INestedPR } from "./pr.typings";
|
|
|
9
9
|
import { INestedRFQ } from "./rfq.typings";
|
|
10
10
|
import { INestedRole } from "./roles.typings";
|
|
11
11
|
import { INestedUser } from "./user.typings";
|
|
12
|
+
export declare enum ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES {
|
|
13
|
+
company = "company",
|
|
14
|
+
user = "user",
|
|
15
|
+
role = "role",
|
|
16
|
+
indent = "indent",
|
|
17
|
+
mi = "mi",
|
|
18
|
+
pr = "pr",
|
|
19
|
+
rfq = "rfq",
|
|
20
|
+
comparative = "comparative",
|
|
21
|
+
po = "po",
|
|
22
|
+
grn = "grn",
|
|
23
|
+
mrn = "mrn"
|
|
24
|
+
}
|
|
12
25
|
export interface IEntityApprovalChainEntry {
|
|
13
26
|
id: string;
|
|
14
27
|
user_id: string;
|
|
@@ -1,2 +1,17 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES = void 0;
|
|
4
|
+
var ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES;
|
|
5
|
+
(function (ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES) {
|
|
6
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["company"] = "company";
|
|
7
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["user"] = "user";
|
|
8
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["role"] = "role";
|
|
9
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["indent"] = "indent";
|
|
10
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["mi"] = "mi";
|
|
11
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["pr"] = "pr";
|
|
12
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["rfq"] = "rfq";
|
|
13
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["comparative"] = "comparative";
|
|
14
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["po"] = "po";
|
|
15
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["grn"] = "grn";
|
|
16
|
+
ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES["mrn"] = "mrn";
|
|
17
|
+
})(ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES || (exports.ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES = ENTITY_APPROVAL_CHAIN_ENTRY_INCLUDES = {}));
|
|
@@ -44,11 +44,11 @@ export declare enum IndentStatus {
|
|
|
44
44
|
REJECTED = "REJECTED",
|
|
45
45
|
SENT_TO_STORE = "SENT TO STORE"
|
|
46
46
|
}
|
|
47
|
-
export declare
|
|
48
|
-
LOW
|
|
49
|
-
MEDIUM
|
|
50
|
-
HIGH
|
|
51
|
-
}
|
|
47
|
+
export declare enum INDENT_PRIORITY_TYPES {
|
|
48
|
+
LOW = "Low",
|
|
49
|
+
MEDIUM = "Medium",
|
|
50
|
+
HIGH = "High"
|
|
51
|
+
}
|
|
52
52
|
export declare enum IndentInclude {
|
|
53
53
|
items = "items",
|
|
54
54
|
department = "department",
|
|
@@ -9,11 +9,18 @@ var IndentStatus;
|
|
|
9
9
|
IndentStatus["REJECTED"] = "REJECTED";
|
|
10
10
|
IndentStatus["SENT_TO_STORE"] = "SENT TO STORE";
|
|
11
11
|
})(IndentStatus || (exports.IndentStatus = IndentStatus = {}));
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
};
|
|
12
|
+
// export const INDENT_PRIORITY_TYPES = {
|
|
13
|
+
// LOW: "Low",
|
|
14
|
+
// MEDIUM: "Medium",
|
|
15
|
+
// HIGH: "High",
|
|
16
|
+
// };
|
|
17
|
+
// changes made on 12 march
|
|
18
|
+
var INDENT_PRIORITY_TYPES;
|
|
19
|
+
(function (INDENT_PRIORITY_TYPES) {
|
|
20
|
+
INDENT_PRIORITY_TYPES["LOW"] = "Low";
|
|
21
|
+
INDENT_PRIORITY_TYPES["MEDIUM"] = "Medium";
|
|
22
|
+
INDENT_PRIORITY_TYPES["HIGH"] = "High";
|
|
23
|
+
})(INDENT_PRIORITY_TYPES || (exports.INDENT_PRIORITY_TYPES = INDENT_PRIORITY_TYPES = {}));
|
|
17
24
|
var IndentInclude;
|
|
18
25
|
(function (IndentInclude) {
|
|
19
26
|
IndentInclude["items"] = "items";
|