39416-vm/backend/src/db/api/vendor_invoices.js
2026-03-31 11:57:19 +00:00

857 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 Vendor_invoicesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const vendor_invoices = await db.vendor_invoices.create(
{
id: data.id || undefined,
invoice_number: data.invoice_number
||
null
,
invoice_date: data.invoice_date
||
null
,
due_date: data.due_date
||
null
,
status: data.status
||
null
,
currency: data.currency
||
null
,
subtotal: data.subtotal
||
null
,
tax_total: data.tax_total
||
null
,
grand_total: data.grand_total
||
null
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await vendor_invoices.setCompany( data.company || null, {
transaction,
});
await vendor_invoices.setVendor( data.vendor || null, {
transaction,
});
await vendor_invoices.setPurchase_order( data.purchase_order || null, {
transaction,
});
await vendor_invoices.setGoods_receipt( data.goods_receipt || null, {
transaction,
});
await vendor_invoices.setOrganizations( data.organizations || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendor_invoices.getTableName(),
belongsToColumn: 'invoice_files',
belongsToId: vendor_invoices.id,
},
data.invoice_files,
options,
);
return vendor_invoices;
}
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 vendor_invoicesData = data.map((item, index) => ({
id: item.id || undefined,
invoice_number: item.invoice_number
||
null
,
invoice_date: item.invoice_date
||
null
,
due_date: item.due_date
||
null
,
status: item.status
||
null
,
currency: item.currency
||
null
,
subtotal: item.subtotal
||
null
,
tax_total: item.tax_total
||
null
,
grand_total: item.grand_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 vendor_invoices = await db.vendor_invoices.bulkCreate(vendor_invoicesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < vendor_invoices.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendor_invoices.getTableName(),
belongsToColumn: 'invoice_files',
belongsToId: vendor_invoices[i].id,
},
data[i].invoice_files,
options,
);
}
return vendor_invoices;
}
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 vendor_invoices = await db.vendor_invoices.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.invoice_number !== undefined) updatePayload.invoice_number = data.invoice_number;
if (data.invoice_date !== undefined) updatePayload.invoice_date = data.invoice_date;
if (data.due_date !== undefined) updatePayload.due_date = data.due_date;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.currency !== undefined) updatePayload.currency = data.currency;
if (data.subtotal !== undefined) updatePayload.subtotal = data.subtotal;
if (data.tax_total !== undefined) updatePayload.tax_total = data.tax_total;
if (data.grand_total !== undefined) updatePayload.grand_total = data.grand_total;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await vendor_invoices.update(updatePayload, {transaction});
if (data.company !== undefined) {
await vendor_invoices.setCompany(
data.company,
{ transaction }
);
}
if (data.vendor !== undefined) {
await vendor_invoices.setVendor(
data.vendor,
{ transaction }
);
}
if (data.purchase_order !== undefined) {
await vendor_invoices.setPurchase_order(
data.purchase_order,
{ transaction }
);
}
if (data.goods_receipt !== undefined) {
await vendor_invoices.setGoods_receipt(
data.goods_receipt,
{ transaction }
);
}
if (data.organizations !== undefined) {
await vendor_invoices.setOrganizations(
data.organizations,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.vendor_invoices.getTableName(),
belongsToColumn: 'invoice_files',
belongsToId: vendor_invoices.id,
},
data.invoice_files,
options,
);
return vendor_invoices;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const vendor_invoices = await db.vendor_invoices.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of vendor_invoices) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of vendor_invoices) {
await record.destroy({transaction});
}
});
return vendor_invoices;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const vendor_invoices = await db.vendor_invoices.findByPk(id, options);
await vendor_invoices.update({
deletedBy: currentUser.id
}, {
transaction,
});
await vendor_invoices.destroy({
transaction
});
return vendor_invoices;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const vendor_invoices = await db.vendor_invoices.findOne(
{ where },
{ transaction },
);
if (!vendor_invoices) {
return vendor_invoices;
}
const output = vendor_invoices.get({plain: true});
output.invoice_lines_vendor_invoice = await vendor_invoices.getInvoice_lines_vendor_invoice({
transaction
});
output.payments_vendor_invoice = await vendor_invoices.getPayments_vendor_invoice({
transaction
});
output.company = await vendor_invoices.getCompany({
transaction
});
output.vendor = await vendor_invoices.getVendor({
transaction
});
output.purchase_order = await vendor_invoices.getPurchase_order({
transaction
});
output.goods_receipt = await vendor_invoices.getGoods_receipt({
transaction
});
output.invoice_files = await vendor_invoices.getInvoice_files({
transaction
});
output.organizations = await vendor_invoices.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.companies,
as: 'company',
where: filter.company ? {
[Op.or]: [
{ id: { [Op.in]: filter.company.split('|').map(term => Utils.uuid(term)) } },
{
company_name: {
[Op.or]: filter.company.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.vendors,
as: 'vendor',
where: filter.vendor ? {
[Op.or]: [
{ id: { [Op.in]: filter.vendor.split('|').map(term => Utils.uuid(term)) } },
{
vendor_name: {
[Op.or]: filter.vendor.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.purchase_orders,
as: 'purchase_order',
where: filter.purchase_order ? {
[Op.or]: [
{ id: { [Op.in]: filter.purchase_order.split('|').map(term => Utils.uuid(term)) } },
{
po_number: {
[Op.or]: filter.purchase_order.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.goods_receipts,
as: 'goods_receipt',
where: filter.goods_receipt ? {
[Op.or]: [
{ id: { [Op.in]: filter.goods_receipt.split('|').map(term => Utils.uuid(term)) } },
{
grn_number: {
[Op.or]: filter.goods_receipt.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.organizations,
as: 'organizations',
},
{
model: db.file,
as: 'invoice_files',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.invoice_number) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendor_invoices',
'invoice_number',
filter.invoice_number,
),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'vendor_invoices',
'notes',
filter.notes,
),
};
}
if (filter.invoice_dateRange) {
const [start, end] = filter.invoice_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
invoice_date: {
...where.invoice_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
invoice_date: {
...where.invoice_date,
[Op.lte]: end,
},
};
}
}
if (filter.due_dateRange) {
const [start, end] = filter.due_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
due_date: {
...where.due_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
due_date: {
...where.due_date,
[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_totalRange) {
const [start, end] = filter.tax_totalRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
tax_total: {
...where.tax_total,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
tax_total: {
...where.tax_total,
[Op.lte]: end,
},
};
}
}
if (filter.grand_totalRange) {
const [start, end] = filter.grand_totalRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
grand_total: {
...where.grand_total,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
grand_total: {
...where.grand_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.currency) {
where = {
...where,
currency: filter.currency,
};
}
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.vendor_invoices.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(
'vendor_invoices',
'invoice_number',
query,
),
],
};
}
const records = await db.vendor_invoices.findAll({
attributes: [ 'id', 'invoice_number' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['invoice_number', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.invoice_number,
}));
}
};