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 ProductsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const products = await db.products.create( { id: data.id || undefined, nome: data.nome || null , quantidade: data.quantidade || null , preco_unitario: data.preco_unitario || null , minimo_stock: data.minimo_stock || null , status: data.status || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await products.setSchool( data.school || null, { transaction, }); return products; } 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 productsData = data.map((item, index) => ({ id: item.id || undefined, nome: item.nome || null , quantidade: item.quantidade || null , preco_unitario: item.preco_unitario || null , minimo_stock: item.minimo_stock || null , status: item.status || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const products = await db.products.bulkCreate(productsData, { transaction }); // For each item created, replace relation files return products; } 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 products = await db.products.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.nome !== undefined) updatePayload.nome = data.nome; if (data.quantidade !== undefined) updatePayload.quantidade = data.quantidade; if (data.preco_unitario !== undefined) updatePayload.preco_unitario = data.preco_unitario; if (data.minimo_stock !== undefined) updatePayload.minimo_stock = data.minimo_stock; if (data.status !== undefined) updatePayload.status = data.status; updatePayload.updatedById = currentUser.id; await products.update(updatePayload, {transaction}); if (data.school !== undefined) { await products.setSchool( data.school, { transaction } ); } return products; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const products = await db.products.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of products) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of products) { await record.destroy({transaction}); } }); return products; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const products = await db.products.findByPk(id, options); await products.update({ deletedBy: currentUser.id }, { transaction, }); await products.destroy({ transaction }); return products; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const products = await db.products.findOne( { where }, { transaction }, ); if (!products) { return products; } const output = products.get({plain: true}); output.school = await products.getSchool({ 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 userSchools = (user && user.schools?.id) || null; if (userSchools) { if (options?.currentUser?.schoolsId) { where.schoolsId = options.currentUser.schoolsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.schools, as: 'school', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.nome) { where = { ...where, [Op.and]: Utils.ilike( 'products', 'nome', filter.nome, ), }; } if (filter.quantidadeRange) { const [start, end] = filter.quantidadeRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, quantidade: { ...where.quantidade, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, quantidade: { ...where.quantidade, [Op.lte]: end, }, }; } } if (filter.preco_unitarioRange) { const [start, end] = filter.preco_unitarioRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, preco_unitario: { ...where.preco_unitario, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, preco_unitario: { ...where.preco_unitario, [Op.lte]: end, }, }; } } if (filter.minimo_stockRange) { const [start, end] = filter.minimo_stockRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, minimo_stock: { ...where.minimo_stock, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, minimo_stock: { ...where.minimo_stock, [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.school) { const listItems = filter.school.split('|').map(item => { return Utils.uuid(item) }); where = { ...where, schoolId: {[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.schoolsId; } 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.products.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( 'products', 'nome', query, ), ], }; } const records = await db.products.findAll({ attributes: [ 'id', 'nome' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['nome', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.nome, })); } };