kcommons 9.7.1 → 9.9.0
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.
|
@@ -23,6 +23,7 @@ var DOCUMENTS;
|
|
|
23
23
|
DOCUMENTS["COMPARATIVE"] = "COMPARATIVE";
|
|
24
24
|
DOCUMENTS["ISTD"] = "ISTD";
|
|
25
25
|
// IAD = "IAD",
|
|
26
|
+
// IAD = "IAD",
|
|
26
27
|
})(DOCUMENTS || (exports.DOCUMENTS = DOCUMENTS = {}));
|
|
27
28
|
var RFQ_TO_PO_DOCUMENTS;
|
|
28
29
|
(function (RFQ_TO_PO_DOCUMENTS) {
|
|
@@ -92,6 +93,7 @@ exports.EntitySpecificDocuments = {
|
|
|
92
93
|
DOCUMENTS.MI,
|
|
93
94
|
DOCUMENTS.INDENT,
|
|
94
95
|
DOCUMENTS.ISTD,
|
|
96
|
+
// DOCUMENTS.IAD,
|
|
95
97
|
],
|
|
96
98
|
[entityTypes_constants_1.EntityTypes.PURCHASE_LOCATION]: [
|
|
97
99
|
DOCUMENTS.RFQ,
|
package/build/index.d.ts
CHANGED
|
@@ -49,6 +49,7 @@ export * from "./typings/company/istd/istd.typings";
|
|
|
49
49
|
export * from "./typings/company/istd/istdItems.typings";
|
|
50
50
|
export * from "./typings/company/iad/iad.typings";
|
|
51
51
|
export * from "./typings/company/inventory/inventoryLogger.typings";
|
|
52
|
+
export * from "./typings/company/inventory/inventoryOverview.typings";
|
|
52
53
|
export * from "./constants/permission.constants";
|
|
53
54
|
export * from "./constants/entityTypes.constants";
|
|
54
55
|
export * from "./constants/statuses.constants";
|
package/build/index.js
CHANGED
|
@@ -66,6 +66,7 @@ __exportStar(require("./typings/company/istd/istd.typings"), exports);
|
|
|
66
66
|
__exportStar(require("./typings/company/istd/istdItems.typings"), exports);
|
|
67
67
|
__exportStar(require("./typings/company/iad/iad.typings"), exports);
|
|
68
68
|
__exportStar(require("./typings/company/inventory/inventoryLogger.typings"), exports);
|
|
69
|
+
__exportStar(require("./typings/company/inventory/inventoryOverview.typings"), exports);
|
|
69
70
|
// Constants
|
|
70
71
|
__exportStar(require("./constants/permission.constants"), exports);
|
|
71
72
|
__exportStar(require("./constants/entityTypes.constants"), exports);
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { IPaginationFilters } from "../../common/paginationFilters.typings";
|
|
2
|
+
import { IItem } from "../../item.typings";
|
|
3
|
+
import { IInventoryItem } from "./storeInventory.typings";
|
|
4
|
+
interface IInventoryOverviewData extends Pick<IInventoryItem, "id" | "store_location_id" | "stock_in_hand" | "min_reorder_level" | "locked_quantity"> {
|
|
5
|
+
}
|
|
6
|
+
export interface IInventoryOverview extends Pick<IItem, "id" | "name" | "code_sku" | "hsn_code" | "sac_code" | "uom"> {
|
|
7
|
+
total: number;
|
|
8
|
+
location_specific_data: IInventoryOverviewData[];
|
|
9
|
+
}
|
|
10
|
+
export interface IInventoryOverviewFilters {
|
|
11
|
+
search?: string | null;
|
|
12
|
+
}
|
|
13
|
+
export interface IInventoryOverviewFiltersWithPagination extends IInventoryOverviewFilters, IPaginationFilters {
|
|
14
|
+
}
|
|
15
|
+
export {};
|