39206-vm/backend/src/db/models/purchase_order_lines.js
2026-03-15 21:17:48 +00:00

166 lines
2.0 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 purchase_order_lines = sequelize.define(
'purchase_order_lines',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
line_number: {
type: DataTypes.INTEGER,
},
ordered_quantity: {
type: DataTypes.DECIMAL,
},
unit_price: {
type: DataTypes.DECIMAL,
},
line_total: {
type: DataTypes.DECIMAL,
},
need_by_at: {
type: DataTypes.DATE,
},
notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
purchase_order_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.purchase_order_lines.belongsTo(db.purchase_orders, {
as: 'purchase_order',
foreignKey: {
name: 'purchase_orderId',
},
constraints: false,
});
db.purchase_order_lines.belongsTo(db.items, {
as: 'item',
foreignKey: {
name: 'itemId',
},
constraints: false,
});
db.purchase_order_lines.belongsTo(db.uoms, {
as: 'uom',
foreignKey: {
name: 'uomId',
},
constraints: false,
});
db.purchase_order_lines.belongsTo(db.users, {
as: 'createdBy',
});
db.purchase_order_lines.belongsTo(db.users, {
as: 'updatedBy',
});
};
return purchase_order_lines;
};