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 invoices = sequelize.define( 'invoices', { id: { type: DataTypes.UUID, defaultValue: DataTypes.UUIDV4, primaryKey: true, }, issue_date: { type: DataTypes.DATE, }, importHash: { type: DataTypes.STRING(255), allowNull: true, unique: true, }, }, { timestamps: true, paranoid: true, freezeTableName: true, }, ); invoices.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.invoices.belongsTo(db.transactions, { as: 'transaction', foreignKey: { name: 'transactionId', }, constraints: false, }); db.invoices.belongsTo(db.cabangs, { as: 'cabangs', foreignKey: { name: 'cabangsId', }, constraints: false, }); db.invoices.hasMany(db.file, { as: 'pdf', foreignKey: 'belongsToId', constraints: false, scope: { belongsTo: db.invoices.getTableName(), belongsToColumn: 'pdf', }, }); db.invoices.belongsTo(db.users, { as: 'createdBy', }); db.invoices.belongsTo(db.users, { as: 'updatedBy', }); }; return invoices; };