208 lines
2.7 KiB
JavaScript
208 lines
2.7 KiB
JavaScript
const config = require('../../config');
|
|
const providers = config.providers;
|
|
const crypto = require('crypto');
|
|
const bcrypt = require('bcrypt');
|
|
const moment = require('moment');
|
|
|
|
module.exports = function(sequelize, DataTypes) {
|
|
const inventory_transactions = sequelize.define(
|
|
'inventory_transactions',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
transaction_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"receipt",
|
|
|
|
|
|
"issue",
|
|
|
|
|
|
"move",
|
|
|
|
|
|
"adjustment",
|
|
|
|
|
|
"scrap",
|
|
|
|
|
|
"cycle_count"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
quantity: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
uom: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
transaction_at: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
reference: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
reason: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
inventory_transactions.associate = (db) => {
|
|
|
|
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
//end loop
|
|
|
|
|
|
|
|
db.inventory_transactions.belongsTo(db.plants, {
|
|
as: 'plant',
|
|
foreignKey: {
|
|
name: 'plantId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.items, {
|
|
as: 'item',
|
|
foreignKey: {
|
|
name: 'itemId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.lots, {
|
|
as: 'lot',
|
|
foreignKey: {
|
|
name: 'lotId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.locations, {
|
|
as: 'from_location',
|
|
foreignKey: {
|
|
name: 'from_locationId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.locations, {
|
|
as: 'to_location',
|
|
foreignKey: {
|
|
name: 'to_locationId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.users, {
|
|
as: 'performed_by_user',
|
|
foreignKey: {
|
|
name: 'performed_by_userId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.organizations, {
|
|
as: 'organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.inventory_transactions.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return inventory_transactions;
|
|
};
|
|
|
|
|