166 lines
2.1 KiB
JavaScript
166 lines
2.1 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_transfer_lines = sequelize.define(
|
|
'inventory_transfer_lines',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
quantity: {
|
|
type: DataTypes.DECIMAL,
|
|
|
|
|
|
|
|
},
|
|
|
|
memo: {
|
|
type: DataTypes.TEXT,
|
|
|
|
|
|
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
inventory_transfer_lines.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_transfer_lines.belongsTo(db.inventory_transfers, {
|
|
as: 'transfer',
|
|
foreignKey: {
|
|
name: 'transferId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transfer_lines.belongsTo(db.items, {
|
|
as: 'item',
|
|
foreignKey: {
|
|
name: 'itemId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transfer_lines.belongsTo(db.lots, {
|
|
as: 'lot',
|
|
foreignKey: {
|
|
name: 'lotId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transfer_lines.belongsTo(db.serial_numbers, {
|
|
as: 'serial_number',
|
|
foreignKey: {
|
|
name: 'serial_numberId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.inventory_transfer_lines.belongsTo(db.organizations, {
|
|
as: 'organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
|
|
|
|
|
|
db.inventory_transfer_lines.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.inventory_transfer_lines.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
|
|
|
|
return inventory_transfer_lines;
|
|
};
|
|
|
|
|