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 OrdersDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const orders = await db.orders.create( { id: data.id || undefined, order_date: data.order_date || null, status: data.status || null, pickUpDate: data.pickUpDate || null, accessCode: data.accessCode || null, deliveryDate: data.deliveryDate || null, notes: data.notes || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await orders.setCustomer(data.customer || null, { transaction, }); await orders.setShipper(data.shipper || null, { transaction, }); await orders.setProjectName(data.projectName || null, { transaction, }); await orders.setMaterialName(data.materialName || null, { transaction, }); return orders; } 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 ordersData = data.map((item, index) => ({ id: item.id || undefined, order_date: item.order_date || null, status: item.status || null, pickUpDate: item.pickUpDate || null, accessCode: item.accessCode || null, deliveryDate: item.deliveryDate || 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 orders = await db.orders.bulkCreate(ordersData, { transaction }); // For each item created, replace relation files return orders; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const orders = await db.orders.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.order_date !== undefined) updatePayload.order_date = data.order_date; if (data.status !== undefined) updatePayload.status = data.status; if (data.pickUpDate !== undefined) updatePayload.pickUpDate = data.pickUpDate; if (data.accessCode !== undefined) updatePayload.accessCode = data.accessCode; if (data.deliveryDate !== undefined) updatePayload.deliveryDate = data.deliveryDate; if (data.notes !== undefined) updatePayload.notes = data.notes; updatePayload.updatedById = currentUser.id; await orders.update(updatePayload, { transaction }); if (data.customer !== undefined) { await orders.setCustomer( data.customer, { transaction }, ); } if (data.shipper !== undefined) { await orders.setShipper( data.shipper, { transaction }, ); } if (data.projectName !== undefined) { await orders.setProjectName( data.projectName, { transaction }, ); } if (data.materialName !== undefined) { await orders.setMaterialName( data.materialName, { transaction }, ); } return orders; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const orders = await db.orders.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of orders) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of orders) { await record.destroy({ transaction }); } }); return orders; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const orders = await db.orders.findByPk(id, options); await orders.update( { deletedBy: currentUser.id, }, { transaction, }, ); await orders.destroy({ transaction, }); return orders; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const orders = await db.orders.findOne({ where }, { transaction }); if (!orders) { return orders; } const output = orders.get({ plain: true }); output.notifications_order = await orders.getNotifications_order({ transaction, }); output.customer = await orders.getCustomer({ transaction, }); output.shipper = await orders.getShipper({ transaction, }); output.projectName = await orders.getProjectName({ transaction, }); output.materialName = await orders.getMaterialName({ 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.customer, as: 'customer', where: filter.customer ? { [Op.or]: [ { id: { [Op.in]: filter.customer .split('|') .map((term) => Utils.uuid(term)), }, }, { id: { [Op.or]: filter.customer .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.shippers, as: 'shipper', where: filter.shipper ? { [Op.or]: [ { id: { [Op.in]: filter.shipper .split('|') .map((term) => Utils.uuid(term)), }, }, { id: { [Op.or]: filter.shipper .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.projects, as: 'projectName', where: filter.projectName ? { [Op.or]: [ { id: { [Op.in]: filter.projectName .split('|') .map((term) => Utils.uuid(term)), }, }, { id: { [Op.or]: filter.projectName .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, { model: db.materials, as: 'materialName', where: filter.materialName ? { [Op.or]: [ { id: { [Op.in]: filter.materialName .split('|') .map((term) => Utils.uuid(term)), }, }, { id: { [Op.or]: filter.materialName .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.accessCode) { where = { ...where, [Op.and]: Utils.ilike('orders', 'accessCode', filter.accessCode), }; } if (filter.notes) { where = { ...where, [Op.and]: Utils.ilike('orders', 'notes', filter.notes), }; } if (filter.calendarStart && filter.calendarEnd) { where = { ...where, [Op.or]: [ { order_date: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, { load_time: { [Op.between]: [filter.calendarStart, filter.calendarEnd], }, }, ], }; } if (filter.order_dateRange) { const [start, end] = filter.order_dateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, order_date: { ...where.order_date, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, order_date: { ...where.order_date, [Op.lte]: end, }, }; } } if (filter.pickUpDateRange) { const [start, end] = filter.pickUpDateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, pickUpDate: { ...where.pickUpDate, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, pickUpDate: { ...where.pickUpDate, [Op.lte]: end, }, }; } } if (filter.deliveryDateRange) { const [start, end] = filter.deliveryDateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, deliveryDate: { ...where.deliveryDate, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, deliveryDate: { ...where.deliveryDate, [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.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.orders.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('orders', 'status', query), ], }; } const records = await db.orders.findAll({ attributes: ['id', 'status'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['status', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.status, })); } };