feat: added item transaction models

This commit is contained in:
Sathishkumar Krishnan
2022-01-07 07:17:35 +05:30
parent ae921ccc96
commit a22b2adc5c
2 changed files with 167 additions and 0 deletions

View File

@@ -59,6 +59,15 @@ const AUTHORIZATION_FAILURE_ERROR_MESSAGE =
const SubLevelTypes = ["POSITION", "BIN", "PALLET"];
const ItemTransactionTypes = [
"PUT",
"PICK",
"RESERVE",
"CHECK-IN",
"CHECK-OUT",
"RESERVE"
];
module.exports = {
UserActions,
InventoryScopes,
@@ -75,4 +84,5 @@ module.exports = {
AREA_ADMIN_ROLE: "area-admin",
AUTHENTICATION_FAILURE_ERROR_MESSAGE,
AUTHORIZATION_FAILURE_ERROR_MESSAGE,
ItemTransactionTypes,
};