859 lines
21 KiB
JavaScript
859 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 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,
|
|
|
|
number: data.number
|
|
||
|
|
null
|
|
,
|
|
|
|
issued_at: data.issued_at
|
|
||
|
|
null
|
|
,
|
|
|
|
due_at: data.due_at
|
|
||
|
|
null
|
|
,
|
|
|
|
status: data.status
|
|
||
|
|
null
|
|
,
|
|
|
|
subtotal_amount: data.subtotal_amount
|
|
||
|
|
null
|
|
,
|
|
|
|
tax_amount: data.tax_amount
|
|
||
|
|
null
|
|
,
|
|
|
|
discount_amount: data.discount_amount
|
|
||
|
|
null
|
|
,
|
|
|
|
total_amount: data.total_amount
|
|
||
|
|
null
|
|
,
|
|
|
|
notes: data.notes
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await invoices.setOrganization(currentUser.organization.id || null, {
|
|
transaction,
|
|
});
|
|
|
|
await invoices.setVenue( data.venue || null, {
|
|
transaction,
|
|
});
|
|
|
|
await invoices.setCustomer( data.customer || null, {
|
|
transaction,
|
|
});
|
|
|
|
await invoices.setBooking( data.booking || null, {
|
|
transaction,
|
|
});
|
|
|
|
await invoices.setPos_tab( data.pos_tab || 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,
|
|
|
|
number: item.number
|
|
||
|
|
null
|
|
,
|
|
|
|
issued_at: item.issued_at
|
|
||
|
|
null
|
|
,
|
|
|
|
due_at: item.due_at
|
|
||
|
|
null
|
|
,
|
|
|
|
status: item.status
|
|
||
|
|
null
|
|
,
|
|
|
|
subtotal_amount: item.subtotal_amount
|
|
||
|
|
null
|
|
,
|
|
|
|
tax_amount: item.tax_amount
|
|
||
|
|
null
|
|
,
|
|
|
|
discount_amount: item.discount_amount
|
|
||
|
|
null
|
|
,
|
|
|
|
total_amount: item.total_amount
|
|
||
|
|
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 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.number !== undefined) updatePayload.number = data.number;
|
|
|
|
|
|
if (data.issued_at !== undefined) updatePayload.issued_at = data.issued_at;
|
|
|
|
|
|
if (data.due_at !== undefined) updatePayload.due_at = data.due_at;
|
|
|
|
|
|
if (data.status !== undefined) updatePayload.status = data.status;
|
|
|
|
|
|
if (data.subtotal_amount !== undefined) updatePayload.subtotal_amount = data.subtotal_amount;
|
|
|
|
|
|
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_amount !== undefined) updatePayload.total_amount = data.total_amount;
|
|
|
|
|
|
if (data.notes !== undefined) updatePayload.notes = data.notes;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await invoices.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.organization !== undefined) {
|
|
await invoices.setOrganization(
|
|
|
|
(globalAccess ? data.organization : currentUser.organization.id),
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.venue !== undefined) {
|
|
await invoices.setVenue(
|
|
|
|
data.venue,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.customer !== undefined) {
|
|
await invoices.setCustomer(
|
|
|
|
data.customer,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.booking !== undefined) {
|
|
await invoices.setBooking(
|
|
|
|
data.booking,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.pos_tab !== undefined) {
|
|
await invoices.setPos_tab(
|
|
|
|
data.pos_tab,
|
|
|
|
{ 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.organization = await invoices.getOrganization({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.venue = await invoices.getVenue({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.customer = await invoices.getCustomer({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.booking = await invoices.getBooking({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.pos_tab = await invoices.getPos_tab({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.pdf_file = await invoices.getPdf_file({
|
|
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.venues,
|
|
as: 'venue',
|
|
|
|
where: filter.venue ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.venue.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.venue.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)) } },
|
|
{
|
|
full_name: {
|
|
[Op.or]: filter.customer.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.bookings,
|
|
as: 'booking',
|
|
|
|
where: filter.booking ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.booking.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
internal_notes: {
|
|
[Op.or]: filter.booking.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.pos_tabs,
|
|
as: 'pos_tab',
|
|
|
|
where: filter.pos_tab ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.pos_tab.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
notes: {
|
|
[Op.or]: filter.pos_tab.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
model: db.file,
|
|
as: 'pdf_file',
|
|
},
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.number) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'invoices',
|
|
'number',
|
|
filter.number,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.notes) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'invoices',
|
|
'notes',
|
|
filter.notes,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.issued_atRange) {
|
|
const [start, end] = filter.issued_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
issued_at: {
|
|
...where.issued_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
issued_at: {
|
|
...where.issued_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.subtotal_amountRange) {
|
|
const [start, end] = filter.subtotal_amountRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
subtotal_amount: {
|
|
...where.subtotal_amount,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
subtotal_amount: {
|
|
...where.subtotal_amount,
|
|
[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.total_amountRange) {
|
|
const [start, end] = filter.total_amountRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
total_amount: {
|
|
...where.total_amount,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
total_amount: {
|
|
...where.total_amount,
|
|
[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.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.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',
|
|
'number',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.invoices.findAll({
|
|
attributes: [ 'id', 'number' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['number', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.number,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|