38524-vm/backend/src/db/api/vendors.js
2026-02-17 15:25:13 +00:00

832 lines
21 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 VendorsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const vendors = await db.vendors.create(
{
id: data.id || undefined,
name: data.name
||
null
,
vendor_type: data.vendor_type
||
null
,
website: data.website
||
null
,
email: data.email
||
null
,
phone: data.phone
||
null
,
tax_identifier: data.tax_identifier
||
null
,
status: data.status
||
null
,
estimated_cost: data.estimated_cost
||
null
,
deposit_amount: data.deposit_amount
||
null
,
deposit_due_at: data.deposit_due_at
||
null
,
final_payment_due_at: data.final_payment_due_at
||
null
,
currency_code: data.currency_code
||
null
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await vendors.setOrganization(currentUser.organization.id || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendors.getTableName(),
belongsToColumn: 'logo',
belongsToId: vendors.id,
},
data.logo,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendors.getTableName(),
belongsToColumn: 'contracts_files',
belongsToId: vendors.id,
},
data.contracts_files,
options,
);
return vendors;
}
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 vendorsData = data.map((item, index) => ({
id: item.id || undefined,
name: item.name
||
null
,
vendor_type: item.vendor_type
||
null
,
website: item.website
||
null
,
email: item.email
||
null
,
phone: item.phone
||
null
,
tax_identifier: item.tax_identifier
||
null
,
status: item.status
||
null
,
estimated_cost: item.estimated_cost
||
null
,
deposit_amount: item.deposit_amount
||
null
,
deposit_due_at: item.deposit_due_at
||
null
,
final_payment_due_at: item.final_payment_due_at
||
null
,
currency_code: item.currency_code
||
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 vendors = await db.vendors.bulkCreate(vendorsData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < vendors.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendors.getTableName(),
belongsToColumn: 'logo',
belongsToId: vendors[i].id,
},
data[i].logo,
options,
);
}
for (let i = 0; i < vendors.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendors.getTableName(),
belongsToColumn: 'contracts_files',
belongsToId: vendors[i].id,
},
data[i].contracts_files,
options,
);
}
return vendors;
}
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 vendors = await db.vendors.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.name !== undefined) updatePayload.name = data.name;
if (data.vendor_type !== undefined) updatePayload.vendor_type = data.vendor_type;
if (data.website !== undefined) updatePayload.website = data.website;
if (data.email !== undefined) updatePayload.email = data.email;
if (data.phone !== undefined) updatePayload.phone = data.phone;
if (data.tax_identifier !== undefined) updatePayload.tax_identifier = data.tax_identifier;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.estimated_cost !== undefined) updatePayload.estimated_cost = data.estimated_cost;
if (data.deposit_amount !== undefined) updatePayload.deposit_amount = data.deposit_amount;
if (data.deposit_due_at !== undefined) updatePayload.deposit_due_at = data.deposit_due_at;
if (data.final_payment_due_at !== undefined) updatePayload.final_payment_due_at = data.final_payment_due_at;
if (data.currency_code !== undefined) updatePayload.currency_code = data.currency_code;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await vendors.update(updatePayload, {transaction});
if (data.organization !== undefined) {
await vendors.setOrganization(
(globalAccess ? data.organization : currentUser.organization.id),
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendors.getTableName(),
belongsToColumn: 'logo',
belongsToId: vendors.id,
},
data.logo,
options,
);
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendors.getTableName(),
belongsToColumn: 'contracts_files',
belongsToId: vendors.id,
},
data.contracts_files,
options,
);
return vendors;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const vendors = await db.vendors.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of vendors) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of vendors) {
await record.destroy({transaction});
}
});
return vendors;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const vendors = await db.vendors.findByPk(id, options);
await vendors.update({
deletedBy: currentUser.id
}, {
transaction,
});
await vendors.destroy({
transaction
});
return vendors;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const vendors = await db.vendors.findOne(
{ where },
{ transaction },
);
if (!vendors) {
return vendors;
}
const output = vendors.get({plain: true});
output.event_vendors_vendor = await vendors.getEvent_vendors_vendor({
transaction
});
output.contacts_vendor = await vendors.getContacts_vendor({
transaction
});
output.schedule_items_vendor = await vendors.getSchedule_items_vendor({
transaction
});
output.budget_items_vendor = await vendors.getBudget_items_vendor({
transaction
});
output.organization = await vendors.getOrganization({
transaction
});
output.logo = await vendors.getLogo({
transaction
});
output.contracts_files = await vendors.getContracts_files({
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.organizations,
as: 'organization',
},
{
model: db.file,
as: 'logo',
},
{
model: db.file,
as: 'contracts_files',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendors',
'name',
filter.name,
),
};
}
if (filter.website) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendors',
'website',
filter.website,
),
};
}
if (filter.email) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendors',
'email',
filter.email,
),
};
}
if (filter.phone) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendors',
'phone',
filter.phone,
),
};
}
if (filter.tax_identifier) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendors',
'tax_identifier',
filter.tax_identifier,
),
};
}
if (filter.currency_code) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendors',
'currency_code',
filter.currency_code,
),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendors',
'notes',
filter.notes,
),
};
}
if (filter.estimated_costRange) {
const [start, end] = filter.estimated_costRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
estimated_cost: {
...where.estimated_cost,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
estimated_cost: {
...where.estimated_cost,
[Op.lte]: end,
},
};
}
}
if (filter.deposit_amountRange) {
const [start, end] = filter.deposit_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
deposit_amount: {
...where.deposit_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
deposit_amount: {
...where.deposit_amount,
[Op.lte]: end,
},
};
}
}
if (filter.deposit_due_atRange) {
const [start, end] = filter.deposit_due_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
deposit_due_at: {
...where.deposit_due_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
deposit_due_at: {
...where.deposit_due_at,
[Op.lte]: end,
},
};
}
}
if (filter.final_payment_due_atRange) {
const [start, end] = filter.final_payment_due_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
final_payment_due_at: {
...where.final_payment_due_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
final_payment_due_at: {
...where.final_payment_due_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.vendor_type) {
where = {
...where,
vendor_type: filter.vendor_type,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.organization) {
const listItems = filter.organization.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationId: {[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.vendors.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(
'vendors',
'name',
query,
),
],
};
}
const records = await db.vendors.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};