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 Cycle_countsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const cycle_counts = await db.cycle_counts.create( { id: data.id || undefined, count_number: data.count_number || null , status: data.status || null , scheduled_at: data.scheduled_at || null , completed_at: data.completed_at || null , notes: data.notes || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await cycle_counts.setPlant( data.plant || null, { transaction, }); await cycle_counts.setWarehouse( data.warehouse || null, { transaction, }); await cycle_counts.setAssigned_to( data.assigned_to || null, { transaction, }); await cycle_counts.setOrganizations( data.organizations || null, { transaction, }); return cycle_counts; } 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 cycle_countsData = data.map((item, index) => ({ id: item.id || undefined, count_number: item.count_number || null , status: item.status || null , scheduled_at: item.scheduled_at || null , completed_at: item.completed_at || null , notes: item.notes || null , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const cycle_counts = await db.cycle_counts.bulkCreate(cycle_countsData, { transaction }); // For each item created, replace relation files return cycle_counts; } 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 cycle_counts = await db.cycle_counts.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.count_number !== undefined) updatePayload.count_number = data.count_number; if (data.status !== undefined) updatePayload.status = data.status; if (data.scheduled_at !== undefined) updatePayload.scheduled_at = data.scheduled_at; if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at; if (data.notes !== undefined) updatePayload.notes = data.notes; updatePayload.updatedById = currentUser.id; await cycle_counts.update(updatePayload, {transaction}); if (data.plant !== undefined) { await cycle_counts.setPlant( data.plant, { transaction } ); } if (data.warehouse !== undefined) { await cycle_counts.setWarehouse( data.warehouse, { transaction } ); } if (data.assigned_to !== undefined) { await cycle_counts.setAssigned_to( data.assigned_to, { transaction } ); } if (data.organizations !== undefined) { await cycle_counts.setOrganizations( data.organizations, { transaction } ); } return cycle_counts; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const cycle_counts = await db.cycle_counts.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of cycle_counts) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of cycle_counts) { await record.destroy({transaction}); } }); return cycle_counts; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const cycle_counts = await db.cycle_counts.findByPk(id, options); await cycle_counts.update({ deletedBy: currentUser.id }, { transaction, }); await cycle_counts.destroy({ transaction }); return cycle_counts; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const cycle_counts = await db.cycle_counts.findOne( { where }, { transaction }, ); if (!cycle_counts) { return cycle_counts; } const output = cycle_counts.get({plain: true}); output.cycle_count_lines_cycle_count = await cycle_counts.getCycle_count_lines_cycle_count({ transaction }); output.plant = await cycle_counts.getPlant({ transaction }); output.warehouse = await cycle_counts.getWarehouse({ transaction }); output.assigned_to = await cycle_counts.getAssigned_to({ transaction }); output.organizations = await cycle_counts.getOrganizations({ 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 userOrganizations = (user && user.organizations?.id) || null; if (userOrganizations) { if (options?.currentUser?.organizationsId) { where.organizationsId = options.currentUser.organizationsId; } } offset = currentPage * limit; const orderBy = null; const transaction = (options && options.transaction) || undefined; let include = [ { model: db.plants, as: 'plant', where: filter.plant ? { [Op.or]: [ { id: { [Op.in]: filter.plant.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.plant.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.warehouses, as: 'warehouse', where: filter.warehouse ? { [Op.or]: [ { id: { [Op.in]: filter.warehouse.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.warehouse.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.users, as: 'assigned_to', where: filter.assigned_to ? { [Op.or]: [ { id: { [Op.in]: filter.assigned_to.split('|').map(term => Utils.uuid(term)) } }, { firstName: { [Op.or]: filter.assigned_to.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.organizations, as: 'organizations', }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.count_number) { where = { ...where, [Op.and]: Utils.ilike( 'cycle_counts', 'count_number', filter.count_number, ), }; } if (filter.notes) { where = { ...where, [Op.and]: Utils.ilike( 'cycle_counts', 'notes', filter.notes, ), }; } if (filter.calendarStart && filter.calendarEnd) { where = { ...where, [Op.or]: [ { scheduled_at: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, { completed_at: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, ], }; } if (filter.scheduled_atRange) { const [start, end] = filter.scheduled_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, scheduled_at: { ...where.scheduled_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, scheduled_at: { ...where.scheduled_at, [Op.lte]: end, }, }; } } if (filter.completed_atRange) { const [start, end] = filter.completed_atRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, completed_at: { ...where.completed_at, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, completed_at: { ...where.completed_at, [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.organizations) { const listItems = filter.organizations.split('|').map(item => { return Utils.uuid(item) }); where = { ...where, organizationsId: {[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.organizationsId; } 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.cycle_counts.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( 'cycle_counts', 'count_number', query, ), ], }; } const records = await db.cycle_counts.findAll({ attributes: [ 'id', 'count_number' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['count_number', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.count_number, })); } };