532 lines
13 KiB
JavaScript
532 lines
13 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,
|
|
date: data.date || null,
|
|
subtotal: data.subtotal || null,
|
|
discount: data.discount || null,
|
|
tax: data.tax || null,
|
|
security_deposit: data.security_deposit || null,
|
|
total: data.total || null,
|
|
paid: data.paid || null,
|
|
balance: data.balance || null,
|
|
pdf_uri: data.pdf_uri || null,
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
await invoices.setBooking(data.booking || null, {
|
|
transaction,
|
|
});
|
|
|
|
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,
|
|
date: item.date || null,
|
|
subtotal: item.subtotal || null,
|
|
discount: item.discount || null,
|
|
tax: item.tax || null,
|
|
security_deposit: item.security_deposit || null,
|
|
total: item.total || null,
|
|
paid: item.paid || null,
|
|
balance: item.balance || null,
|
|
pdf_uri: item.pdf_uri || 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
|
|
|
|
return invoices;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const invoices = await db.invoices.findByPk(id, {}, { transaction });
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.invoice_number !== undefined)
|
|
updatePayload.invoice_number = data.invoice_number;
|
|
|
|
if (data.date !== undefined) updatePayload.date = data.date;
|
|
|
|
if (data.subtotal !== undefined) updatePayload.subtotal = data.subtotal;
|
|
|
|
if (data.discount !== undefined) updatePayload.discount = data.discount;
|
|
|
|
if (data.tax !== undefined) updatePayload.tax = data.tax;
|
|
|
|
if (data.security_deposit !== undefined)
|
|
updatePayload.security_deposit = data.security_deposit;
|
|
|
|
if (data.total !== undefined) updatePayload.total = data.total;
|
|
|
|
if (data.paid !== undefined) updatePayload.paid = data.paid;
|
|
|
|
if (data.balance !== undefined) updatePayload.balance = data.balance;
|
|
|
|
if (data.pdf_uri !== undefined) updatePayload.pdf_uri = data.pdf_uri;
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await invoices.update(updatePayload, { transaction });
|
|
|
|
if (data.booking !== undefined) {
|
|
await invoices.setBooking(
|
|
data.booking,
|
|
|
|
{ transaction },
|
|
);
|
|
}
|
|
|
|
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.booking = await invoices.getBooking({
|
|
transaction,
|
|
});
|
|
|
|
return output;
|
|
}
|
|
|
|
static async findAll(filter, options) {
|
|
const limit = filter.limit || 0;
|
|
let offset = 0;
|
|
let where = {};
|
|
const currentPage = +filter.page;
|
|
|
|
offset = currentPage * limit;
|
|
|
|
const orderBy = null;
|
|
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
let include = [
|
|
{
|
|
model: db.bookings,
|
|
as: 'booking',
|
|
|
|
where: filter.booking
|
|
? {
|
|
[Op.or]: [
|
|
{
|
|
id: {
|
|
[Op.in]: filter.booking
|
|
.split('|')
|
|
.map((term) => Utils.uuid(term)),
|
|
},
|
|
},
|
|
{
|
|
status: {
|
|
[Op.or]: filter.booking
|
|
.split('|')
|
|
.map((term) => ({ [Op.iLike]: `%${term}%` })),
|
|
},
|
|
},
|
|
],
|
|
}
|
|
: {},
|
|
},
|
|
];
|
|
|
|
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.pdf_uri) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike('invoices', 'pdf_uri', filter.pdf_uri),
|
|
};
|
|
}
|
|
|
|
if (filter.dateRange) {
|
|
const [start, end] = filter.dateRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
date: {
|
|
...where.date,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
date: {
|
|
...where.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.discountRange) {
|
|
const [start, end] = filter.discountRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
discount: {
|
|
...where.discount,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
discount: {
|
|
...where.discount,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.taxRange) {
|
|
const [start, end] = filter.taxRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
tax: {
|
|
...where.tax,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
tax: {
|
|
...where.tax,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.security_depositRange) {
|
|
const [start, end] = filter.security_depositRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
security_deposit: {
|
|
...where.security_deposit,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
security_deposit: {
|
|
...where.security_deposit,
|
|
[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.paidRange) {
|
|
const [start, end] = filter.paidRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
paid: {
|
|
...where.paid,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
paid: {
|
|
...where.paid,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.balanceRange) {
|
|
const [start, end] = filter.balanceRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
balance: {
|
|
...where.balance,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
balance: {
|
|
...where.balance,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true',
|
|
};
|
|
}
|
|
|
|
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,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
}
|
|
|
|
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) {
|
|
let where = {};
|
|
|
|
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,
|
|
}));
|
|
}
|
|
};
|