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_itemsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const inventory_items = await db.inventory_items.create( { id: data.id || undefined, name: data.name || null, stock_level: data.stock_level || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await inventory_items.setStock_movements(data.stock_movements || [], { transaction, }); return inventory_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 inventory_itemsData = data.map((item, index) => ({ id: item.id || undefined, name: item.name || null, stock_level: item.stock_level || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const inventory_items = await db.inventory_items.bulkCreate( inventory_itemsData, { transaction }, ); // For each item created, replace relation files return inventory_items; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const inventory_items = await db.inventory_items.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.name !== undefined) updatePayload.name = data.name; if (data.stock_level !== undefined) updatePayload.stock_level = data.stock_level; updatePayload.updatedById = currentUser.id; await inventory_items.update(updatePayload, { transaction }); if (data.stock_movements !== undefined) { await inventory_items.setStock_movements(data.stock_movements, { transaction, }); } return inventory_items; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const inventory_items = await db.inventory_items.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of inventory_items) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of inventory_items) { await record.destroy({ transaction }); } }); return inventory_items; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const inventory_items = await db.inventory_items.findByPk(id, options); await inventory_items.update( { deletedBy: currentUser.id, }, { transaction, }, ); await inventory_items.destroy({ transaction, }); return inventory_items; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const inventory_items = await db.inventory_items.findOne( { where }, { transaction }, ); if (!inventory_items) { return inventory_items; } const output = inventory_items.get({ plain: true }); output.stock_movements_inventory_item = await inventory_items.getStock_movements_inventory_item({ transaction, }); output.stock_movements = await inventory_items.getStock_movements({ 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.stock_movements, as: 'stock_movements', required: false, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.name) { where = { ...where, [Op.and]: Utils.ilike('inventory_items', 'name', filter.name), }; } if (filter.stock_levelRange) { const [start, end] = filter.stock_levelRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, stock_level: { ...where.stock_level, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, stock_level: { ...where.stock_level, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.stock_movements) { const searchTerms = filter.stock_movements.split('|'); include = [ { model: db.stock_movements, as: 'stock_movements_filter', required: searchTerms.length > 0, where: searchTerms.length > 0 ? { [Op.or]: [ { id: { [Op.in]: searchTerms.map((term) => Utils.uuid(term)), }, }, { movement_type: { [Op.or]: searchTerms.map((term) => ({ [Op.iLike]: `%${term}%`, })), }, }, ], } : undefined, }, ...include, ]; } 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_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('inventory_items', 'name', query), ], }; } const records = await db.inventory_items.findAll({ attributes: ['id', 'name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.name, })); } };