39947-vm/backend/src/db/api/invoices.js
2026-05-10 20:02:58 +00:00

989 lines
24 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 InvoicesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const invoices = await db.invoices.create(
{
id: data.id || undefined,
invoice_number: data.invoice_number
||
null
,
type: data.type
||
null
,
status: data.status
||
null
,
issue_at: data.issue_at
||
null
,
due_at: data.due_at
||
null
,
currency: data.currency
||
null
,
subtotal: data.subtotal
||
null
,
tax_rate_percent: data.tax_rate_percent
||
null
,
tax_amount: data.tax_amount
||
null
,
total: data.total
||
null
,
amount_paid: data.amount_paid
||
null
,
public_notes: data.public_notes
||
null
,
internal_notes: data.internal_notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await invoices.setTenant( data.tenant || null, {
transaction,
});
await invoices.setCompany( data.company || null, {
transaction,
});
await invoices.setProject( data.project || null, {
transaction,
});
await invoices.setContract( data.contract || null, {
transaction,
});
await invoices.setOrganizations( data.organizations || null, {
transaction,
});
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.invoices.getTableName(),
belongsToColumn: 'pdf_file',
belongsToId: invoices.id,
},
data.pdf_file,
options,
);
return 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 invoicesData = data.map((item, index) => ({
id: item.id || undefined,
invoice_number: item.invoice_number
||
null
,
type: item.type
||
null
,
status: item.status
||
null
,
issue_at: item.issue_at
||
null
,
due_at: item.due_at
||
null
,
currency: item.currency
||
null
,
subtotal: item.subtotal
||
null
,
tax_rate_percent: item.tax_rate_percent
||
null
,
tax_amount: item.tax_amount
||
null
,
total: item.total
||
null
,
amount_paid: item.amount_paid
||
null
,
public_notes: item.public_notes
||
null
,
internal_notes: item.internal_notes
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const invoices = await db.invoices.bulkCreate(invoicesData, { transaction });
// For each item created, replace relation files
for (let i = 0; i < invoices.length; i++) {
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.invoices.getTableName(),
belongsToColumn: 'pdf_file',
belongsToId: invoices[i].id,
},
data[i].pdf_file,
options,
);
}
return 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 invoices = await db.invoices.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.invoice_number !== undefined) updatePayload.invoice_number = data.invoice_number;
if (data.type !== undefined) updatePayload.type = data.type;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.issue_at !== undefined) updatePayload.issue_at = data.issue_at;
if (data.due_at !== undefined) updatePayload.due_at = data.due_at;
if (data.currency !== undefined) updatePayload.currency = data.currency;
if (data.subtotal !== undefined) updatePayload.subtotal = data.subtotal;
if (data.tax_rate_percent !== undefined) updatePayload.tax_rate_percent = data.tax_rate_percent;
if (data.tax_amount !== undefined) updatePayload.tax_amount = data.tax_amount;
if (data.total !== undefined) updatePayload.total = data.total;
if (data.amount_paid !== undefined) updatePayload.amount_paid = data.amount_paid;
if (data.public_notes !== undefined) updatePayload.public_notes = data.public_notes;
if (data.internal_notes !== undefined) updatePayload.internal_notes = data.internal_notes;
updatePayload.updatedById = currentUser.id;
await invoices.update(updatePayload, {transaction});
if (data.tenant !== undefined) {
await invoices.setTenant(
data.tenant,
{ transaction }
);
}
if (data.company !== undefined) {
await invoices.setCompany(
data.company,
{ transaction }
);
}
if (data.project !== undefined) {
await invoices.setProject(
data.project,
{ transaction }
);
}
if (data.contract !== undefined) {
await invoices.setContract(
data.contract,
{ transaction }
);
}
if (data.organizations !== undefined) {
await invoices.setOrganizations(
data.organizations,
{ transaction }
);
}
await FileDBApi.replaceRelationFiles(
{
belongsTo: db.invoices.getTableName(),
belongsToColumn: 'pdf_file',
belongsToId: invoices.id,
},
data.pdf_file,
options,
);
return invoices;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const invoices = await db.invoices.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of invoices) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of invoices) {
await record.destroy({transaction});
}
});
return invoices;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const invoices = await db.invoices.findByPk(id, options);
await invoices.update({
deletedBy: currentUser.id
}, {
transaction,
});
await invoices.destroy({
transaction
});
return invoices;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const invoices = await db.invoices.findOne(
{ where },
{ transaction },
);
if (!invoices) {
return invoices;
}
const output = invoices.get({plain: true});
output.invoice_line_items_invoice = await invoices.getInvoice_line_items_invoice({
transaction
});
output.payments_invoice = await invoices.getPayments_invoice({
transaction
});
output.tenant = await invoices.getTenant({
transaction
});
output.company = await invoices.getCompany({
transaction
});
output.project = await invoices.getProject({
transaction
});
output.contract = await invoices.getContract({
transaction
});
output.pdf_file = await invoices.getPdf_file({
transaction
});
output.organizations = await 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.tenants,
as: 'tenant',
where: filter.tenant ? {
[Op.or]: [
{ id: { [Op.in]: filter.tenant.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.tenant.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.companies,
as: 'company',
where: filter.company ? {
[Op.or]: [
{ id: { [Op.in]: filter.company.split('|').map(term => Utils.uuid(term)) } },
{
legal_name: {
[Op.or]: filter.company.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.projects,
as: 'project',
where: filter.project ? {
[Op.or]: [
{ id: { [Op.in]: filter.project.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.project.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.contracts,
as: 'contract',
where: filter.contract ? {
[Op.or]: [
{ id: { [Op.in]: filter.contract.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.contract.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.organizations,
as: 'organizations',
},
{
model: db.file,
as: 'pdf_file',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.invoice_number) {
where = {
...where,
[Op.and]: Utils.ilike(
'invoices',
'invoice_number',
filter.invoice_number,
),
};
}
if (filter.public_notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'invoices',
'public_notes',
filter.public_notes,
),
};
}
if (filter.internal_notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'invoices',
'internal_notes',
filter.internal_notes,
),
};
}
if (filter.issue_atRange) {
const [start, end] = filter.issue_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
issue_at: {
...where.issue_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
issue_at: {
...where.issue_at,
[Op.lte]: end,
},
};
}
}
if (filter.due_atRange) {
const [start, end] = filter.due_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
due_at: {
...where.due_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
due_at: {
...where.due_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_rate_percentRange) {
const [start, end] = filter.tax_rate_percentRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
tax_rate_percent: {
...where.tax_rate_percent,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
tax_rate_percent: {
...where.tax_rate_percent,
[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.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.amount_paidRange) {
const [start, end] = filter.amount_paidRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
amount_paid: {
...where.amount_paid,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
amount_paid: {
...where.amount_paid,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.type) {
where = {
...where,
type: filter.type,
};
}
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.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(
'invoices',
'invoice_number',
query,
),
],
};
}
const records = await db.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,
}));
}
};