feat: added models Inventory, Material, Item & User
This commit is contained in:
46
src/config/constants.js
Normal file
46
src/config/constants.js
Normal 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,
|
||||
};
|
||||
Reference in New Issue
Block a user