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

789 lines
19 KiB
JavaScript

const db = require('../models');
const FileDBApi = require('./file');
const crypto = require('crypto');
const Utils = require('../utils');
const Sequelize = db.Sequelize;
const Op = Sequelize.Op;
module.exports = class EstimatesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const estimates = await db.estimates.create(
{
id: data.id || undefined,
estimate_number: data.estimate_number
||
null
,
status: data.status
||
null
,
issue_date: data.issue_date
||
null
,
expires_at: data.expires_at
||
null
,
subtotal: data.subtotal
||
null
,
tax_amount: data.tax_amount
||
null
,
discount_amount: data.discount_amount
||
null
,
total: data.total
||
null
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await estimates.setWorkspace( data.workspace || null, {
transaction,
});
await estimates.setCustomer( data.customer || null, {
transaction,
});
await estimates.setProperty( data.property || null, {
transaction,
});
await estimates.setOrganizations( data.organizations || null, {
transaction,
});
return estimates;
}
static async bulkImport(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
// Prepare data - wrapping individual data transformations in a map() method
const estimatesData = data.map((item, index) => ({
id: item.id || undefined,
estimate_number: item.estimate_number
||
null
,
status: item.status
||
null
,
issue_date: item.issue_date
||
null
,
expires_at: item.expires_at
||
null
,
subtotal: item.subtotal
||
null
,
tax_amount: item.tax_amount
||
null
,
discount_amount: item.discount_amount
||
null
,
total: item.total
||
null
,
notes: item.notes
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const estimates = await db.estimates.bulkCreate(estimatesData, { transaction });
// For each item created, replace relation files
return estimates;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const globalAccess = currentUser.app_role?.globalAccess;
const estimates = await db.estimates.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.estimate_number !== undefined) updatePayload.estimate_number = data.estimate_number;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.issue_date !== undefined) updatePayload.issue_date = data.issue_date;
if (data.expires_at !== undefined) updatePayload.expires_at = data.expires_at;
if (data.subtotal !== undefined) updatePayload.subtotal = data.subtotal;
if (data.tax_amount !== undefined) updatePayload.tax_amount = data.tax_amount;
if (data.discount_amount !== undefined) updatePayload.discount_amount = data.discount_amount;
if (data.total !== undefined) updatePayload.total = data.total;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await estimates.update(updatePayload, {transaction});
if (data.workspace !== undefined) {
await estimates.setWorkspace(
data.workspace,
{ transaction }
);
}
if (data.customer !== undefined) {
await estimates.setCustomer(
data.customer,
{ transaction }
);
}
if (data.property !== undefined) {
await estimates.setProperty(
data.property,
{ transaction }
);
}
if (data.organizations !== undefined) {
await estimates.setOrganizations(
data.organizations,
{ transaction }
);
}
return estimates;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const estimates = await db.estimates.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of estimates) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of estimates) {
await record.destroy({transaction});
}
});
return estimates;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const estimates = await db.estimates.findByPk(id, options);
await estimates.update({
deletedBy: currentUser.id
}, {
transaction,
});
await estimates.destroy({
transaction
});
return estimates;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const estimates = await db.estimates.findOne(
{ where },
{ transaction },
);
if (!estimates) {
return estimates;
}
const output = estimates.get({plain: true});
output.estimate_line_items_estimate = await estimates.getEstimate_line_items_estimate({
transaction
});
output.workspace = await estimates.getWorkspace({
transaction
});
output.customer = await estimates.getCustomer({
transaction
});
output.property = await estimates.getProperty({
transaction
});
output.organizations = await estimates.getOrganizations({
transaction
});
return output;
}
static async findAll(
filter,
globalAccess, options
) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
const userOrganizations = (user && user.organizations?.id) || null;
if (userOrganizations) {
if (options?.currentUser?.organizationsId) {
where.organizationsId = options.currentUser.organizationsId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.workspaces,
as: 'workspace',
where: filter.workspace ? {
[Op.or]: [
{ id: { [Op.in]: filter.workspace.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.workspace.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.customers,
as: 'customer',
where: filter.customer ? {
[Op.or]: [
{ id: { [Op.in]: filter.customer.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.customer.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.properties,
as: 'property',
where: filter.property ? {
[Op.or]: [
{ id: { [Op.in]: filter.property.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.property.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.organizations,
as: 'organizations',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.estimate_number) {
where = {
...where,
[Op.and]: Utils.ilike(
'estimates',
'estimate_number',
filter.estimate_number,
),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'estimates',
'notes',
filter.notes,
),
};
}
if (filter.issue_dateRange) {
const [start, end] = filter.issue_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
issue_date: {
...where.issue_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
issue_date: {
...where.issue_date,
[Op.lte]: end,
},
};
}
}
if (filter.expires_atRange) {
const [start, end] = filter.expires_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
expires_at: {
...where.expires_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
expires_at: {
...where.expires_at,
[Op.lte]: end,
},
};
}
}
if (filter.subtotalRange) {
const [start, end] = filter.subtotalRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
subtotal: {
...where.subtotal,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
subtotal: {
...where.subtotal,
[Op.lte]: end,
},
};
}
}
if (filter.tax_amountRange) {
const [start, end] = filter.tax_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
tax_amount: {
...where.tax_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
tax_amount: {
...where.tax_amount,
[Op.lte]: end,
},
};
}
}
if (filter.discount_amountRange) {
const [start, end] = filter.discount_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
discount_amount: {
...where.discount_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
discount_amount: {
...where.discount_amount,
[Op.lte]: end,
},
};
}
}
if (filter.totalRange) {
const [start, end] = filter.totalRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
total: {
...where.total,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
total: {
...where.total,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.organizations) {
const listItems = filter.organizations.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationsId: {[Op.or]: listItems}
};
}
if (filter.createdAtRange) {
const [start, end] = filter.createdAtRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
['createdAt']: {
...where.createdAt,
[Op.lte]: end,
},
};
}
}
}
if (globalAccess) {
delete where.organizationsId;
}
const queryOptions = {
where,
include,
distinct: true,
order: filter.field && filter.sort
? [[filter.field, filter.sort]]
: [['createdAt', 'desc']],
transaction: options?.transaction,
logging: console.log
};
if (!options?.countOnly) {
queryOptions.limit = limit ? Number(limit) : undefined;
queryOptions.offset = offset ? Number(offset) : undefined;
}
try {
const { rows, count } = await db.estimates.findAndCountAll(queryOptions);
return {
rows: options?.countOnly ? [] : rows,
count: count
};
} catch (error) {
console.error('Error executing query:', error);
throw error;
}
}
static async findAllAutocomplete(query, limit, offset, globalAccess, organizationId,) {
let where = {};
if (!globalAccess && organizationId) {
where.organizationId = organizationId;
}
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike(
'estimates',
'estimate_number',
query,
),
],
};
}
const records = await db.estimates.findAll({
attributes: [ 'id', 'estimate_number' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['estimate_number', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.estimate_number,
}));
}
};