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 Inventory_movementsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const inventory_movements = await db.inventory_movements.create( { id: data.id || undefined, note: data.note || null , change: data.change || null , reason: data.reason || null , date: data.date || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await inventory_movements.setProduct( data.product || null, { transaction, }); return inventory_movements; } 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 inventory_movementsData = data.map((item, index) => ({ id: item.id || undefined, note: item.note || null , change: item.change || null , reason: item.reason || null , date: item.date || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const inventory_movements = await db.inventory_movements.bulkCreate(inventory_movementsData, { transaction }); // For each item created, replace relation files return inventory_movements; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const inventory_movements = await db.inventory_movements.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.note !== undefined) updatePayload.note = data.note; if (data.change !== undefined) updatePayload.change = data.change; if (data.reason !== undefined) updatePayload.reason = data.reason; if (data.date !== undefined) updatePayload.date = data.date; updatePayload.updatedById = currentUser.id; await inventory_movements.update(updatePayload, {transaction}); if (data.product !== undefined) { await inventory_movements.setProduct( data.product, { transaction } ); } return inventory_movements; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const inventory_movements = await db.inventory_movements.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of inventory_movements) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of inventory_movements) { await record.destroy({transaction}); } }); return inventory_movements; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const inventory_movements = await db.inventory_movements.findByPk(id, options); await inventory_movements.update({ deletedBy: currentUser.id }, { transaction, }); await inventory_movements.destroy({ transaction }); return inventory_movements; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const inventory_movements = await db.inventory_movements.findOne( { where }, { transaction }, ); if (!inventory_movements) { return inventory_movements; } const output = inventory_movements.get({plain: true}); output.product = await inventory_movements.getProduct({ 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.products, as: 'product', where: filter.product ? { [Op.or]: [ { id: { [Op.in]: filter.product.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.product.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.note) { where = { ...where, [Op.and]: Utils.ilike( 'inventory_movements', 'note', filter.note, ), }; } if (filter.changeRange) { const [start, end] = filter.changeRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, change: { ...where.change, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, change: { ...where.change, [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.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.reason) { where = { ...where, reason: filter.reason, }; } 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.inventory_movements.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( 'inventory_movements', 'note', query, ), ], }; } const records = await db.inventory_movements.findAll({ attributes: [ 'id', 'note' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['note', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.note, })); } };