38214-vm/backend/src/db/models/estimates.js
2026-02-05 12:41:14 +00:00

207 lines
2.5 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 estimates = sequelize.define(
'estimates',
{
id: {
type: DataTypes.UUID,
defaultValue: DataTypes.UUIDV4,
primaryKey: true,
},
estimate_number: {
type: DataTypes.TEXT,
},
status: {
type: DataTypes.ENUM,
values: [
"draft",
"sent",
"accepted",
"declined",
"expired"
],
},
issue_date: {
type: DataTypes.DATE,
},
expires_at: {
type: DataTypes.DATE,
},
subtotal: {
type: DataTypes.DECIMAL,
},
tax_amount: {
type: DataTypes.DECIMAL,
},
discount_amount: {
type: DataTypes.DECIMAL,
},
total: {
type: DataTypes.DECIMAL,
},
notes: {
type: DataTypes.TEXT,
},
importHash: {
type: DataTypes.STRING(255),
allowNull: true,
unique: true,
},
},
{
timestamps: true,
paranoid: true,
freezeTableName: true,
},
);
estimates.associate = (db) => {
/// loop through entities and it's fields, and if ref === current e[name] and create relation has many on parent entity
db.estimates.hasMany(db.estimate_line_items, {
as: 'estimate_line_items_estimate',
foreignKey: {
name: 'estimateId',
},
constraints: false,
});
//end loop
db.estimates.belongsTo(db.workspaces, {
as: 'workspace',
foreignKey: {
name: 'workspaceId',
},
constraints: false,
});
db.estimates.belongsTo(db.customers, {
as: 'customer',
foreignKey: {
name: 'customerId',
},
constraints: false,
});
db.estimates.belongsTo(db.properties, {
as: 'property',
foreignKey: {
name: 'propertyId',
},
constraints: false,
});
db.estimates.belongsTo(db.organizations, {
as: 'organizations',
foreignKey: {
name: 'organizationsId',
},
constraints: false,
});
db.estimates.belongsTo(db.users, {
as: 'createdBy',
});
db.estimates.belongsTo(db.users, {
as: 'updatedBy',
});
};
return estimates;
};