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 invoice_line_items = sequelize.define( 'invoice_line_items', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, name: { type: DataTypes.TEXT, }, description: { type: DataTypes.TEXT, }, quantity: { type: DataTypes.DECIMAL, }, unit_price: { type: DataTypes.DECIMAL, }, unit_type: { type: DataTypes.ENUM, values: [ "each", "hour", "day", "week", "month" ], }, tax_rate: { type: DataTypes.DECIMAL, }, line_total: { type: DataTypes.DECIMAL, }, sort_order: { type: DataTypes.INTEGER, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); invoice_line_items.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.invoice_line_items.belongsTo(db.tenants, { as: 'tenant', foreignKey: { name: 'tenantId', }, constraints: false, }); db.invoice_line_items.belongsTo(db.invoices, { as: 'invoice', foreignKey: { name: 'invoiceId', }, constraints: false, }); db.invoice_line_items.belongsTo(db.organizations, { as: 'organizations', foreignKey: { name: 'organizationsId', }, constraints: false, }); db.invoice_line_items.belongsTo(db.users, { as: 'createdBy', }); db.invoice_line_items.belongsTo(db.users, { as: 'updatedBy', }); }; return invoice_line_items; };