214 lines
2.5 KiB
JavaScript
214 lines
2.5 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_number: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
transaction_type: {
|
|
type: DataTypes.ENUM,
|
|
|
|
|
|
|
|
values: [
|
|
|
|
"receipt",
|
|
|
|
|
|
"issue",
|
|
|
|
|
|
"transfer",
|
|
|
|
|
|
"adjustment",
|
|
|
|
|
|
"production_consumption",
|
|
|
|
|
|
"production_output",
|
|
|
|
|
|
"scrap"
|
|
|
|
],
|
|
|
|
},
|
|
|
|
quantity: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
unit_cost: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
transaction_at: {
|
|
type: DataTypes.DATE,
|
|
|
|
|
|
|
|
},
|
|
|
|
reference: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
notes: {
|
|
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.items, {
|
|
as: 'item',
|
|
foreignKey: {
|
|
name: 'itemId',
|
|
},
|
|
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.inventory_lots, {
|
|
as: 'lot',
|
|
foreignKey: {
|
|
name: 'lotId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.users, {
|
|
as: 'performed_by',
|
|
foreignKey: {
|
|
name: 'performed_byId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.inventory_transactions.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.inventory_transactions.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return inventory_transactions;
|
|
};
|
|
|
|
|