156 lines
3.0 KiB
JavaScript
156 lines
3.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 projects = sequelize.define(
|
|
'projects',
|
|
{
|
|
id: {
|
|
type: DataTypes.UUID,
|
|
defaultValue: DataTypes.UUIDV4,
|
|
primaryKey: true,
|
|
},
|
|
|
|
name: {
|
|
type: DataTypes.TEXT,
|
|
},
|
|
|
|
fiscal_year_start: {
|
|
type: DataTypes.DATE,
|
|
},
|
|
|
|
fiscal_year_end: {
|
|
type: DataTypes.DATE,
|
|
},
|
|
|
|
reporting_scope: {
|
|
type: DataTypes.ENUM,
|
|
|
|
values: ['ESRS_SET1', 'VSME'],
|
|
},
|
|
|
|
status: {
|
|
type: DataTypes.TEXT,
|
|
},
|
|
|
|
importHash: {
|
|
type: DataTypes.STRING(255),
|
|
allowNull: true,
|
|
unique: true,
|
|
},
|
|
},
|
|
{
|
|
timestamps: true,
|
|
paranoid: true,
|
|
freezeTableName: true,
|
|
},
|
|
);
|
|
|
|
projects.associate = (db) => {
|
|
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
|
|
|
|
db.projects.hasMany(db.audit_packs, {
|
|
as: 'audit_packs_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.contexts, {
|
|
as: 'contexts_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.evidence_files, {
|
|
as: 'evidence_files_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.jobs, {
|
|
as: 'jobs_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.mappings, {
|
|
as: 'mappings_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.metric_values, {
|
|
as: 'metric_values_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.narratives, {
|
|
as: 'narratives_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.units, {
|
|
as: 'units_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.hasMany(db.xbrl_instances, {
|
|
as: 'xbrl_instances_project',
|
|
foreignKey: {
|
|
name: 'projectId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
//end loop
|
|
|
|
db.projects.belongsTo(db.organizations, {
|
|
as: 'org',
|
|
foreignKey: {
|
|
name: 'orgId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.belongsTo(db.organizations, {
|
|
as: 'organizations',
|
|
foreignKey: {
|
|
name: 'organizationsId',
|
|
},
|
|
constraints: false,
|
|
});
|
|
|
|
db.projects.belongsTo(db.users, {
|
|
as: 'createdBy',
|
|
});
|
|
|
|
db.projects.belongsTo(db.users, {
|
|
as: 'updatedBy',
|
|
});
|
|
};
|
|
|
|
return projects;
|
|
};
|