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, item_name: data.item_name || null, quantity: data.quantity || null, reorder_threshold: data.reorder_threshold || null, expiration_date: data.expiration_date || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await inventory_items.setPractice(data.practice || null, { transaction, }); await inventory_items.setPractices(data.practices || null, { 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, item_name: item.item_name || null, quantity: item.quantity || null, reorder_threshold: item.reorder_threshold || null, expiration_date: item.expiration_date || 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 globalAccess = currentUser.app_role?.globalAccess; const inventory_items = await db.inventory_items.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.item_name !== undefined) updatePayload.item_name = data.item_name; if (data.quantity !== undefined) updatePayload.quantity = data.quantity; if (data.reorder_threshold !== undefined) updatePayload.reorder_threshold = data.reorder_threshold; if (data.expiration_date !== undefined) updatePayload.expiration_date = data.expiration_date; updatePayload.updatedById = currentUser.id; await inventory_items.update(updatePayload, { transaction }); if (data.practice !== undefined) { await inventory_items.setPractice( data.practice, { transaction }, ); } if (data.practices !== undefined) { await inventory_items.setPractices( data.practices, { 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.practice = await inventory_items.getPractice({ transaction, }); output.practices = await inventory_items.getPractices({ 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 userPractices = (user && user.practices?.id) || null; if (userPractices) { if (options?.currentUser?.practicesId) { where.practicesId = options.currentUser.practicesId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.practices, as: 'practice', }, { model: db.practices, as: 'practices', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.item_name) { where = { ...where, [Op.and]: Utils.ilike( 'inventory_items', 'item_name', filter.item_name, ), }; } 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.reorder_thresholdRange) { const [start, end] = filter.reorder_thresholdRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, reorder_threshold: { ...where.reorder_threshold, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, reorder_threshold: { ...where.reorder_threshold, [Op.lte]: end, }, }; } } if (filter.expiration_dateRange) { const [start, end] = filter.expiration_dateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, expiration_date: { ...where.expiration_date, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, expiration_date: { ...where.expiration_date, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.practice) { const listItems = filter.practice.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, practiceId: { [Op.or]: listItems }, }; } if (filter.practices) { const listItems = filter.practices.split('|').map((item) => { return Utils.uuid(item); }); where = { ...where, practicesId: { [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.practicesId; } 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, globalAccess, organizationId, ) { let where = {}; if (!globalAccess && organizationId) { where.organizationId = organizationId; } if (query) { where = { [Op.or]: [ { ['id']: Utils.uuid(query) }, Utils.ilike('inventory_items', 'item_name', query), ], }; } const records = await db.inventory_items.findAll({ attributes: ['id', 'item_name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['item_name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.item_name, })); } };