39508-vm/backend/src/db/models/companies.js
2026-04-07 01:39:29 +00:00

267 lines
3.3 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 companies = sequelize.define(
'companies',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
domain: {
type: DataTypes.TEXT,
},
phone: {
type: DataTypes.TEXT,
},
website: {
type: DataTypes.TEXT,
},
industry: {
type: DataTypes.TEXT,
},
employee_count: {
type: DataTypes.INTEGER,
},
annual_revenue: {
type: DataTypes.DECIMAL,
},
address_line1: {
type: DataTypes.TEXT,
},
address_line2: {
type: DataTypes.TEXT,
},
city: {
type: DataTypes.TEXT,
},
state: {
type: DataTypes.TEXT,
},
postal_code: {
type: DataTypes.TEXT,
},
country: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"active",
"inactive",
"prospect"
],
},
notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
companies.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.companies.hasMany(db.contacts, {
as: 'contacts_company',
foreignKey: {
name: 'companyId',
},
constraints: false,
});
db.companies.hasMany(db.leads, {
as: 'leads_converted_company',
foreignKey: {
name: 'converted_companyId',
},
constraints: false,
});
db.companies.hasMany(db.deals, {
as: 'deals_company',
foreignKey: {
name: 'companyId',
},
constraints: false,
});
db.companies.hasMany(db.activities, {
as: 'activities_company',
foreignKey: {
name: 'companyId',
},
constraints: false,
});
db.companies.hasMany(db.tasks, {
as: 'tasks_company',
foreignKey: {
name: 'companyId',
},
constraints: false,
});
//end loop
db.companies.belongsTo(db.tenants, {
as: 'tenant',
foreignKey: {
name: 'tenantId',
},
constraints: false,
});
db.companies.belongsTo(db.users, {
as: 'owner',
foreignKey: {
name: 'ownerId',
},
constraints: false,
});
db.companies.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.companies.belongsTo(db.users, {
as: 'createdBy',
});
db.companies.belongsTo(db.users, {
as: 'updatedBy',
});
};
return companies;
};