@hiennc24/constant 1.2.10 → 1.2.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.
|
@@ -176,8 +176,8 @@ declare const COLLECTIONS: {
|
|
|
176
176
|
INVENTORY_TRANSACTION_COLLECTION_NAME: string;
|
|
177
177
|
INVENTORY_PRODUCTS_REPOSITORY_NAME: string;
|
|
178
178
|
INVENTORY_PRODUCTS_COLLECTION_NAME: string;
|
|
179
|
-
|
|
180
|
-
|
|
179
|
+
ORDER_INVENTORY_TRANSACTION_REPOSITORY_NAME: string;
|
|
180
|
+
ORDER_INVENTORY_TRANSACTION_COLLECTION_NAME: string;
|
|
181
181
|
ORDER_PRODUCT_ITEM_REPOSITORY_NAME: string;
|
|
182
182
|
ORDER_PRODUCT_ITEM_COLLECTION_NAME: string;
|
|
183
183
|
WAREHOUSE_SETTING_REPOSITORY_NAME: string;
|
|
@@ -231,8 +231,8 @@ const COLLECTIONS = {
|
|
|
231
231
|
INVENTORY_PRODUCTS_REPOSITORY_NAME: "inventoryProduct",
|
|
232
232
|
INVENTORY_PRODUCTS_COLLECTION_NAME: "inventory_products",
|
|
233
233
|
// Order Inventories for SOPO & another modules
|
|
234
|
-
|
|
235
|
-
|
|
234
|
+
ORDER_INVENTORY_TRANSACTION_REPOSITORY_NAME: "orderInventoryTransaction",
|
|
235
|
+
ORDER_INVENTORY_TRANSACTION_COLLECTION_NAME: "order_inventory_transactions",
|
|
236
236
|
// Inventories - Order Product Items
|
|
237
237
|
ORDER_PRODUCT_ITEM_REPOSITORY_NAME: "orderProductItem",
|
|
238
238
|
ORDER_PRODUCT_ITEM_COLLECTION_NAME: "order_product_items",
|
|
@@ -477,8 +477,8 @@ const COLLECTIONS = {
|
|
|
477
477
|
BUSINESS_TRIP_REPOSITORY_NAME: "businessTrip",
|
|
478
478
|
BUSINESS_TRIP_COLLECTION_NAME: "business_trips",
|
|
479
479
|
// Setting Business Trip
|
|
480
|
-
SETTING_BUSINESS_TRIP_REPOSITORY_NAME:
|
|
481
|
-
SETTING_BUSINESS_TRIP_COLLECTION_NAME:
|
|
480
|
+
SETTING_BUSINESS_TRIP_REPOSITORY_NAME: "settingBusinessTrip",
|
|
481
|
+
SETTING_BUSINESS_TRIP_COLLECTION_NAME: "setting_business_trips",
|
|
482
482
|
// SALE - API
|
|
483
483
|
// Sale Order
|
|
484
484
|
VENDOR_CONFIRM_REPOSITORY_NAME: "vendorConfirm",
|
|
@@ -36,6 +36,7 @@
|
|
|
36
36
|
"SVC_INVENTORY": {
|
|
37
37
|
"NAME": "svc-product.inventories",
|
|
38
38
|
"ACTION_UPLOAD": "upload",
|
|
39
|
+
"ACTION_CREATE": "create",
|
|
39
40
|
"ACTION_UPDATE_DETAIL": "updateDetail",
|
|
40
41
|
"ACTION_GET_INVENTORY_REPORT": "getInventoryReport",
|
|
41
42
|
"ACTION_GET_QUEUE_IMPORT_STATUS": "getQueueImportStatus",
|
|
@@ -47,6 +48,11 @@
|
|
|
47
48
|
"ACTION_CREATE": "createInventoryTransaction",
|
|
48
49
|
"ACTION_GET_INVENTORY_REPORTS": "getInventoryReport"
|
|
49
50
|
},
|
|
51
|
+
"SVC_ORDER_INVENTORY_TRANSACTIONS": {
|
|
52
|
+
"NAME": "svc-product.order-inventory-transactions",
|
|
53
|
+
"ACTION_CREATE": "createOrderInventoryTransaction",
|
|
54
|
+
"ACTION_GET_ORDER_INVENTORY_REPORTS": "getOrderInventoryReport"
|
|
55
|
+
},
|
|
50
56
|
"SVC_PRODUCT_ORDER_PRODUCT_ITEMS": {
|
|
51
57
|
"NAME": "svc-product.orderProductItems",
|
|
52
58
|
"ACTION_FIND_ALL_BY_AGGREGATE": "findAllByAggregations"
|