30308/backend/src/db/models/customers.js
2025-03-29 10:31:07 +00:00

106 lines
2.2 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 customers = sequelize.define(
'customers',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
name: {
type: DataTypes.TEXT,
},
email: {
type: DataTypes.TEXT,
},
phone: {
type: DataTypes.TEXT,
},
segment: {
type: DataTypes.ENUM,
values: ['VIP', 'PotentialLead', 'Complaint'],
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
customers.associate = (db) => {
db.customers.belongsToMany(db.interactions, {
as: 'interactions',
foreignKey: {
name: 'customers_interactionsId',
},
constraints: false,
through: 'customersInteractionsInteractions',
});
db.customers.belongsToMany(db.interactions, {
as: 'interactions_filter',
foreignKey: {
name: 'customers_interactionsId',
},
constraints: false,
through: 'customersInteractionsInteractions',
});
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.customers.hasMany(db.calls, {
as: 'calls_customer',
foreignKey: {
name: 'customerId',
},
constraints: false,
});
db.customers.hasMany(db.interactions, {
as: 'interactions_customer',
foreignKey: {
name: 'customerId',
},
constraints: false,
});
db.customers.hasMany(db.tickets, {
as: 'tickets_customer',
foreignKey: {
name: 'customerId',
},
constraints: false,
});
//end loop
db.customers.belongsTo(db.users, {
as: 'createdBy',
});
db.customers.belongsTo(db.users, {
as: 'updatedBy',
});
};
return customers;
};