88 lines
1.7 KiB
JavaScript
88 lines
1.7 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 reports = sequelize.define(
|
|
'reports',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
total_created: {
|
|
type: DataTypes.INTEGER,
|
|
},
|
|
|
|
total_approved: {
|
|
type: DataTypes.INTEGER,
|
|
},
|
|
|
|
total_rejected: {
|
|
type: DataTypes.INTEGER,
|
|
},
|
|
|
|
monthly_values: {
|
|
type: DataTypes.DECIMAL,
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
reports.associate = (db) => {
|
|
db.reports.belongsToMany(db.quotes, {
|
|
as: 'quotes',
|
|
foreignKey: {
|
|
name: 'reports_quotesId',
|
|
},
|
|
constraints: false,
|
|
through: 'reportsQuotesQuotes',
|
|
});
|
|
|
|
db.reports.belongsToMany(db.quotes, {
|
|
as: 'quotes_filter',
|
|
foreignKey: {
|
|
name: 'reports_quotesId',
|
|
},
|
|
constraints: false,
|
|
through: 'reportsQuotesQuotes',
|
|
});
|
|
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
//end loop
|
|
|
|
db.reports.belongsTo(db.tenants, {
|
|
as: 'tenants',
|
|
foreignKey: {
|
|
name: 'tenantsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.reports.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.reports.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
return reports;
|
|
};
|