562 lines
13 KiB
JavaScript
562 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 DebtsDBApi {
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const debts = await db.debts.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
debt_number: data.debt_number || null,
|
|
date: data.date || null,
|
|
total_amount: data.total_amount || null,
|
|
reimbursed_amount: data.reimbursed_amount || null,
|
|
difference: data.difference || null,
|
|
debt: data.debt || null,
|
|
payment: data.payment || null,
|
|
balance: data.balance || null,
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
await debts.setMember(data.member || null, {
|
|
transaction,
|
|
});
|
|
|
|
await debts.setMiembros(data.miembros || null, {
|
|
transaction,
|
|
});
|
|
|
|
return debts;
|
|
}
|
|
|
|
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 debtsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
debt_number: item.debt_number || null,
|
|
date: item.date || null,
|
|
total_amount: item.total_amount || null,
|
|
reimbursed_amount: item.reimbursed_amount || null,
|
|
difference: item.difference || null,
|
|
debt: item.debt || null,
|
|
payment: item.payment || null,
|
|
balance: item.balance || null,
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const debts = await db.debts.bulkCreate(debtsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
return debts;
|
|
}
|
|
|
|
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 debts = await db.debts.findByPk(id, {}, { transaction });
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.debt_number !== undefined)
|
|
updatePayload.debt_number = data.debt_number;
|
|
|
|
if (data.date !== undefined) updatePayload.date = data.date;
|
|
|
|
if (data.total_amount !== undefined)
|
|
updatePayload.total_amount = data.total_amount;
|
|
|
|
if (data.reimbursed_amount !== undefined)
|
|
updatePayload.reimbursed_amount = data.reimbursed_amount;
|
|
|
|
if (data.difference !== undefined)
|
|
updatePayload.difference = data.difference;
|
|
|
|
if (data.debt !== undefined) updatePayload.debt = data.debt;
|
|
|
|
if (data.payment !== undefined) updatePayload.payment = data.payment;
|
|
|
|
if (data.balance !== undefined) updatePayload.balance = data.balance;
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await debts.update(updatePayload, { transaction });
|
|
|
|
if (data.member !== undefined) {
|
|
await debts.setMember(
|
|
data.member,
|
|
|
|
{ transaction },
|
|
);
|
|
}
|
|
|
|
if (data.miembros !== undefined) {
|
|
await debts.setMiembros(
|
|
data.miembros,
|
|
|
|
{ transaction },
|
|
);
|
|
}
|
|
|
|
return debts;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const debts = await db.debts.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of debts) {
|
|
await record.update({ deletedBy: currentUser.id }, { transaction });
|
|
}
|
|
for (const record of debts) {
|
|
await record.destroy({ transaction });
|
|
}
|
|
});
|
|
|
|
return debts;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const debts = await db.debts.findByPk(id, options);
|
|
|
|
await debts.update(
|
|
{
|
|
deletedBy: currentUser.id,
|
|
},
|
|
{
|
|
transaction,
|
|
},
|
|
);
|
|
|
|
await debts.destroy({
|
|
transaction,
|
|
});
|
|
|
|
return debts;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const debts = await db.debts.findOne({ where }, { transaction });
|
|
|
|
if (!debts) {
|
|
return debts;
|
|
}
|
|
|
|
const output = debts.get({ plain: true });
|
|
|
|
output.member = await debts.getMember({
|
|
transaction,
|
|
});
|
|
|
|
output.miembros = await debts.getMiembros({
|
|
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 userMiembros = (user && user.miembros?.id) || null;
|
|
|
|
if (userMiembros) {
|
|
if (options?.currentUser?.miembrosId) {
|
|
where.miembrosId = options.currentUser.miembrosId;
|
|
}
|
|
}
|
|
|
|
offset = currentPage * limit;
|
|
|
|
const orderBy = null;
|
|
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
let include = [
|
|
{
|
|
model: db.users,
|
|
as: 'member',
|
|
|
|
where: filter.member
|
|
? {
|
|
[Op.or]: [
|
|
{
|
|
id: {
|
|
[Op.in]: filter.member
|
|
.split('|')
|
|
.map((term) => Utils.uuid(term)),
|
|
},
|
|
},
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.member
|
|
.split('|')
|
|
.map((term) => ({ [Op.iLike]: `%${term}%` })),
|
|
},
|
|
},
|
|
],
|
|
}
|
|
: {},
|
|
},
|
|
|
|
{
|
|
model: db.miembros,
|
|
as: 'miembros',
|
|
},
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
if (filter.debt_numberRange) {
|
|
const [start, end] = filter.debt_numberRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
debt_number: {
|
|
...where.debt_number,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
debt_number: {
|
|
...where.debt_number,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
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.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.reimbursed_amountRange) {
|
|
const [start, end] = filter.reimbursed_amountRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
reimbursed_amount: {
|
|
...where.reimbursed_amount,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
reimbursed_amount: {
|
|
...where.reimbursed_amount,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.differenceRange) {
|
|
const [start, end] = filter.differenceRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
difference: {
|
|
...where.difference,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
difference: {
|
|
...where.difference,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.debtRange) {
|
|
const [start, end] = filter.debtRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
debt: {
|
|
...where.debt,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
debt: {
|
|
...where.debt,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.paymentRange) {
|
|
const [start, end] = filter.paymentRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
payment: {
|
|
...where.payment,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
payment: {
|
|
...where.payment,
|
|
[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.miembros) {
|
|
const listItems = filter.miembros.split('|').map((item) => {
|
|
return Utils.uuid(item);
|
|
});
|
|
|
|
where = {
|
|
...where,
|
|
miembrosId: { [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.miembrosId;
|
|
}
|
|
|
|
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.debts.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('debts', 'debt_number', query),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.debts.findAll({
|
|
attributes: ['id', 'debt_number'],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['debt_number', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.debt_number,
|
|
}));
|
|
}
|
|
};
|