const db = require('../models'); const FileDBApi = require('./file'); const crypto = require('crypto'); const Utils = require('../utils'); const { resolveCurrencyId } = require('./defaultCurrency'); const Sequelize = db.Sequelize; const Op = Sequelize.Op; module.exports = class BillsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const bills = await db.bills.create( { id: data.id || undefined, bill_number: data.bill_number || null , status: data.status || null , issue_date: data.issue_date || null , due_date: data.due_date || null , subtotal: data.subtotal || null , tax_total: data.tax_total || null , total: data.total || null , amount_due: data.amount_due || null , reference: data.reference || null , notes: data.notes || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await bills.setOrganization(currentUser.organization.id || null, { transaction, }); await bills.setSupplier( data.supplier || null, { transaction, }); const currencyId = await resolveCurrencyId(db, data.currency, transaction); await bills.setCurrency(currencyId, { transaction, }); await FileDBApi.replaceRelationFiles( { belongsTo: db.bills.getTableName(), belongsToColumn: 'attachments', belongsToId: bills.id, }, data.attachments, options, ); return bills; } 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 billsData = data.map((item, index) => ({ id: item.id || undefined, bill_number: item.bill_number || null , status: item.status || null , issue_date: item.issue_date || null , due_date: item.due_date || null , subtotal: item.subtotal || null , tax_total: item.tax_total || null , total: item.total || null , amount_due: item.amount_due || null , reference: item.reference || 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 bills = await db.bills.bulkCreate(billsData, { transaction }); // For each item created, replace relation files for (let i = 0; i < bills.length; i++) { await FileDBApi.replaceRelationFiles( { belongsTo: db.bills.getTableName(), belongsToColumn: 'attachments', belongsToId: bills[i].id, }, data[i].attachments, options, ); } return bills; } 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 bills = await db.bills.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.bill_number !== undefined) updatePayload.bill_number = data.bill_number; if (data.status !== undefined) updatePayload.status = data.status; if (data.issue_date !== undefined) updatePayload.issue_date = data.issue_date; if (data.due_date !== undefined) updatePayload.due_date = data.due_date; if (data.subtotal !== undefined) updatePayload.subtotal = data.subtotal; if (data.tax_total !== undefined) updatePayload.tax_total = data.tax_total; if (data.total !== undefined) updatePayload.total = data.total; if (data.amount_due !== undefined) updatePayload.amount_due = data.amount_due; if (data.reference !== undefined) updatePayload.reference = data.reference; if (data.notes !== undefined) updatePayload.notes = data.notes; updatePayload.updatedById = currentUser.id; await bills.update(updatePayload, {transaction}); if (data.organization !== undefined) { await bills.setOrganization( (globalAccess ? data.organization : currentUser.organization.id), { transaction } ); } if (data.supplier !== undefined) { await bills.setSupplier( data.supplier, { transaction } ); } if (data.currency !== undefined) { await bills.setCurrency( data.currency, { transaction } ); } await FileDBApi.replaceRelationFiles( { belongsTo: db.bills.getTableName(), belongsToColumn: 'attachments', belongsToId: bills.id, }, data.attachments, options, ); return bills; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const bills = await db.bills.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of bills) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of bills) { await record.destroy({transaction}); } }); return bills; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const bills = await db.bills.findByPk(id, options); await bills.update({ deletedBy: currentUser.id }, { transaction, }); await bills.destroy({ transaction }); return bills; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const bills = await db.bills.findOne( { where }, { transaction }, ); if (!bills) { return bills; } const output = bills.get({plain: true}); output.bill_lines_bill = await bills.getBill_lines_bill({ transaction }); output.payments_bill = await bills.getPayments_bill({ transaction }); output.organization = await bills.getOrganization({ transaction }); output.supplier = await bills.getSupplier({ transaction }); output.currency = await bills.getCurrency({ transaction }); output.attachments = await bills.getAttachments({ 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.contacts, as: 'supplier', where: filter.supplier ? { [Op.or]: [ { id: { [Op.in]: filter.supplier.split('|').map(term => Utils.uuid(term)) } }, { display_name: { [Op.or]: filter.supplier.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.currencies, as: 'currency', where: filter.currency ? { [Op.or]: [ { id: { [Op.in]: filter.currency.split('|').map(term => Utils.uuid(term)) } }, { code: { [Op.or]: filter.currency.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.file, as: 'attachments', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.bill_number) { where = { ...where, [Op.and]: Utils.ilike( 'bills', 'bill_number', filter.bill_number, ), }; } if (filter.reference) { where = { ...where, [Op.and]: Utils.ilike( 'bills', 'reference', filter.reference, ), }; } if (filter.notes) { where = { ...where, [Op.and]: Utils.ilike( 'bills', 'notes', filter.notes, ), }; } if (filter.issue_dateRange) { const [start, end] = filter.issue_dateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, issue_date: { ...where.issue_date, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, issue_date: { ...where.issue_date, [Op.lte]: end, }, }; } } if (filter.due_dateRange) { const [start, end] = filter.due_dateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, due_date: { ...where.due_date, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, due_date: { ...where.due_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.tax_totalRange) { const [start, end] = filter.tax_totalRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, tax_total: { ...where.tax_total, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, tax_total: { ...where.tax_total, [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_dueRange) { const [start, end] = filter.amount_dueRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, amount_due: { ...where.amount_due, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, amount_due: { ...where.amount_due, [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.bills.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( 'bills', 'bill_number', query, ), ], }; } const records = await db.bills.findAll({ attributes: [ 'id', 'bill_number' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['bill_number', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.bill_number, })); } };