38831-vm/backend/src/db/models/sales_invoice_lines.js
2026-02-28 10:59:10 +00:00

169 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 sales_invoice_lines = sequelize.define(
'sales_invoice_lines',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
description: {
type: DataTypes.TEXT,
},
quantity: {
type: DataTypes.DECIMAL,
},
unit_price: {
type: DataTypes.DECIMAL,
},
line_subtotal: {
type: DataTypes.DECIMAL,
},
vat_treatment: {
type: DataTypes.ENUM,
values: [
"standard_15",
"zero_rated",
"exempt",
"not_applicable"
],
},
vat_amount: {
type: DataTypes.DECIMAL,
},
line_total: {
type: DataTypes.DECIMAL,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
sales_invoice_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.sales_invoice_lines.belongsTo(db.sales_invoices, {
as: 'sales_invoice',
foreignKey: {
name: 'sales_invoiceId',
},
constraints: false,
});
db.sales_invoice_lines.belongsTo(db.products, {
as: 'product',
foreignKey: {
name: 'productId',
},
constraints: false,
});
db.sales_invoice_lines.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.sales_invoice_lines.belongsTo(db.users, {
as: 'createdBy',
});
db.sales_invoice_lines.belongsTo(db.users, {
as: 'updatedBy',
});
};
return sales_invoice_lines;
};