feat: added models Inventory, Material, Item & User

This commit is contained in:
Sathishkumar Krishnan
2021-12-22 05:23:00 +05:30
parent 3a66670d5f
commit 291eea44f8
7 changed files with 299 additions and 2 deletions

46
src/config/constants.js Normal file
View File

@@ -0,0 +1,46 @@
const UserActions = [
"Read",
"Add",
"Delete",
"Edit",
"Pick",
"Put Away",
"Cycle Count",
"Query",
"Report",
"Order",
"Receive",
];
const WarehouseScopes = [
"Warehouse",
"Zone",
"Area",
"Bay",
"Row",
"Level",
"Sublevel",
];
const InventoryTypes = [
"Perishable",
"Material",
"Product",
"Equipment",
"Fleet",
];
const CustomAttributeTypes = [
"Date",
"Number",
"Decimal",
"String",
"Enumerable",
];
module.exports = {
UserActions,
WarehouseScopes,
InventoryTypes,
CustomAttributeTypes,
};