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 RoutingsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const routings = await db.routings.create( { id: data.id || undefined, routing_code: data.routing_code || null , status: data.status || null , revision: data.revision || null , notes: data.notes || null , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await routings.setMaterial( data.material || null, { transaction, }); return routings; } 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 routingsData = data.map((item, index) => ({ id: item.id || undefined, routing_code: item.routing_code || null , status: item.status || null , revision: item.revision || 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 routings = await db.routings.bulkCreate(routingsData, { transaction }); // For each item created, replace relation files return routings; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const routings = await db.routings.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.routing_code !== undefined) updatePayload.routing_code = data.routing_code; if (data.status !== undefined) updatePayload.status = data.status; if (data.revision !== undefined) updatePayload.revision = data.revision; if (data.notes !== undefined) updatePayload.notes = data.notes; updatePayload.updatedById = currentUser.id; await routings.update(updatePayload, {transaction}); if (data.material !== undefined) { await routings.setMaterial( data.material, { transaction } ); } return routings; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const routings = await db.routings.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of routings) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of routings) { await record.destroy({transaction}); } }); return routings; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const routings = await db.routings.findByPk(id, options); await routings.update({ deletedBy: currentUser.id }, { transaction, }); await routings.destroy({ transaction }); return routings; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const routings = await db.routings.findOne( { where }, { transaction }, ); if (!routings) { return routings; } const output = routings.get({plain: true}); output.routing_steps_routing = await routings.getRouting_steps_routing({ transaction }); output.production_orders_routing = await routings.getProduction_orders_routing({ transaction }); output.material = await routings.getMaterial({ 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.materials, as: 'material', where: filter.material ? { [Op.or]: [ { id: { [Op.in]: filter.material.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.material.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.routing_code) { where = { ...where, [Op.and]: Utils.ilike( 'routings', 'routing_code', filter.routing_code, ), }; } if (filter.revision) { where = { ...where, [Op.and]: Utils.ilike( 'routings', 'revision', filter.revision, ), }; } if (filter.notes) { where = { ...where, [Op.and]: Utils.ilike( 'routings', 'notes', filter.notes, ), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.status) { where = { ...where, status: filter.status, }; } 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.routings.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( 'routings', 'routing_code', query, ), ], }; } const records = await db.routings.findAll({ attributes: [ 'id', 'routing_code' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['routing_code', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.routing_code, })); } };