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 Invoice_line_itemsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const invoice_line_items = await db.invoice_line_items.create( { id: data.id || undefined, description: data.description || null , quantity: data.quantity || null , unit_price: data.unit_price || null , discount_amount: data.discount_amount || null , tax_amount: data.tax_amount || null , line_total: data.line_total || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await invoice_line_items.setInvoice( data.invoice || null, { transaction, }); await invoice_line_items.setItem( data.item || null, { transaction, }); return invoice_line_items; } 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 invoice_line_itemsData = data.map((item, index) => ({ id: item.id || undefined, description: item.description || null , quantity: item.quantity || null , unit_price: item.unit_price || null , discount_amount: item.discount_amount || null , tax_amount: item.tax_amount || null , line_total: item.line_total || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const invoice_line_items = await db.invoice_line_items.bulkCreate(invoice_line_itemsData, { transaction }); // For each item created, replace relation files return invoice_line_items; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const invoice_line_items = await db.invoice_line_items.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.description !== undefined) updatePayload.description = data.description; if (data.quantity !== undefined) updatePayload.quantity = data.quantity; if (data.unit_price !== undefined) updatePayload.unit_price = data.unit_price; if (data.discount_amount !== undefined) updatePayload.discount_amount = data.discount_amount; if (data.tax_amount !== undefined) updatePayload.tax_amount = data.tax_amount; if (data.line_total !== undefined) updatePayload.line_total = data.line_total; updatePayload.updatedById = currentUser.id; await invoice_line_items.update(updatePayload, {transaction}); if (data.invoice !== undefined) { await invoice_line_items.setInvoice( data.invoice, { transaction } ); } if (data.item !== undefined) { await invoice_line_items.setItem( data.item, { transaction } ); } return invoice_line_items; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const invoice_line_items = await db.invoice_line_items.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of invoice_line_items) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of invoice_line_items) { await record.destroy({transaction}); } }); return invoice_line_items; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const invoice_line_items = await db.invoice_line_items.findByPk(id, options); await invoice_line_items.update({ deletedBy: currentUser.id }, { transaction, }); await invoice_line_items.destroy({ transaction }); return invoice_line_items; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const invoice_line_items = await db.invoice_line_items.findOne( { where }, { transaction }, ); if (!invoice_line_items) { return invoice_line_items; } const output = invoice_line_items.get({plain: true}); output.invoice = await invoice_line_items.getInvoice({ transaction }); output.item = await invoice_line_items.getItem({ 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.invoices, as: 'invoice', where: filter.invoice ? { [Op.or]: [ { id: { [Op.in]: filter.invoice.split('|').map(term => Utils.uuid(term)) } }, { invoice_number: { [Op.or]: filter.invoice.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.items, as: 'item', where: filter.item ? { [Op.or]: [ { id: { [Op.in]: filter.item.split('|').map(term => Utils.uuid(term)) } }, { item_name: { [Op.or]: filter.item.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.description) { where = { ...where, [Op.and]: Utils.ilike( 'invoice_line_items', 'description', filter.description, ), }; } if (filter.quantityRange) { const [start, end] = filter.quantityRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, quantity: { ...where.quantity, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, quantity: { ...where.quantity, [Op.lte]: end, }, }; } } if (filter.unit_priceRange) { const [start, end] = filter.unit_priceRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, unit_price: { ...where.unit_price, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, unit_price: { ...where.unit_price, [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.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.line_totalRange) { const [start, end] = filter.line_totalRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, line_total: { ...where.line_total, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, line_total: { ...where.line_total, [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.invoice_line_items.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( 'invoice_line_items', 'description', query, ), ], }; } const records = await db.invoice_line_items.findAll({ attributes: [ 'id', 'description' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['description', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.description, })); } };