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 AllocationsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const allocations = await db.allocations.create( { id: data.id || undefined, amount: data.amount || null , currency: data.currency || null , allocated_at: data.allocated_at || null , status: data.status || null , notes: data.notes || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await allocations.setBudget_line( data.budget_line || null, { transaction, }); await allocations.setProvince( data.province || null, { transaction, }); await allocations.setDepartment( data.department || null, { transaction, }); await allocations.setOrganizations( data.organizations || null, { transaction, }); return allocations; } 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 allocationsData = data.map((item, index) => ({ id: item.id || undefined, amount: item.amount || null , currency: item.currency || null , allocated_at: item.allocated_at || null , status: item.status || 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 allocations = await db.allocations.bulkCreate(allocationsData, { transaction }); // For each item created, replace relation files return allocations; } 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 allocations = await db.allocations.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.amount !== undefined) updatePayload.amount = data.amount; if (data.currency !== undefined) updatePayload.currency = data.currency; if (data.allocated_at !== undefined) updatePayload.allocated_at = data.allocated_at; if (data.status !== undefined) updatePayload.status = data.status; if (data.notes !== undefined) updatePayload.notes = data.notes; updatePayload.updatedById = currentUser.id; await allocations.update(updatePayload, {transaction}); if (data.budget_line !== undefined) { await allocations.setBudget_line( data.budget_line, { transaction } ); } if (data.province !== undefined) { await allocations.setProvince( data.province, { transaction } ); } if (data.department !== undefined) { await allocations.setDepartment( data.department, { transaction } ); } if (data.organizations !== undefined) { await allocations.setOrganizations( data.organizations, { transaction } ); } return allocations; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const allocations = await db.allocations.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of allocations) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of allocations) { await record.destroy({transaction}); } }); return allocations; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const allocations = await db.allocations.findByPk(id, options); await allocations.update({ deletedBy: currentUser.id }, { transaction, }); await allocations.destroy({ transaction }); return allocations; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const allocations = await db.allocations.findOne( { where }, { transaction }, ); if (!allocations) { return allocations; } const output = allocations.get({plain: true}); output.budget_line = await allocations.getBudget_line({ transaction }); output.province = await allocations.getProvince({ transaction }); output.department = await allocations.getDepartment({ transaction }); output.organizations = await allocations.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.budget_lines, as: 'budget_line', where: filter.budget_line ? { [Op.or]: [ { id: { [Op.in]: filter.budget_line.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.budget_line.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.provinces, as: 'province', where: filter.province ? { [Op.or]: [ { id: { [Op.in]: filter.province.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.province.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.departments, as: 'department', where: filter.department ? { [Op.or]: [ { id: { [Op.in]: filter.department.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.department.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.organizations, as: 'organizations', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.notes) { where = { ...where, [Op.and]: Utils.ilike( 'allocations', 'notes', filter.notes, ), }; } if (filter.amountRange) { const [start, end] = filter.amountRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, amount: { ...where.amount, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, amount: { ...where.amount, [Op.lte]: end, }, }; } } if (filter.allocated_atRange) { const [start, end] = filter.allocated_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, allocated_at: { ...where.allocated_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, allocated_at: { ...where.allocated_at, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.currency) { where = { ...where, currency: filter.currency, }; } if (filter.status) { where = { ...where, status: filter.status, }; } 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.allocations.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( 'allocations', 'notes', query, ), ], }; } const records = await db.allocations.findAll({ attributes: [ 'id', 'notes' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['notes', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.notes, })); } };