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 Sales_reportsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const sales_reports = await db.sales_reports.create( { id: data.id || undefined, report_details: data.report_details || null, mismatch_alert: data.mismatch_alert || false, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await sales_reports.setAdmin(data.admin || null, { transaction, }); return sales_reports; } 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 sales_reportsData = data.map((item, index) => ({ id: item.id || undefined, report_details: item.report_details || null, mismatch_alert: item.mismatch_alert || false, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const sales_reports = await db.sales_reports.bulkCreate(sales_reportsData, { transaction, }); // For each item created, replace relation files return sales_reports; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const sales_reports = await db.sales_reports.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.report_details !== undefined) updatePayload.report_details = data.report_details; if (data.mismatch_alert !== undefined) updatePayload.mismatch_alert = data.mismatch_alert; updatePayload.updatedById = currentUser.id; await sales_reports.update(updatePayload, { transaction }); if (data.admin !== undefined) { await sales_reports.setAdmin( data.admin, { transaction }, ); } return sales_reports; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const sales_reports = await db.sales_reports.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of sales_reports) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of sales_reports) { await record.destroy({ transaction }); } }); return sales_reports; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const sales_reports = await db.sales_reports.findByPk(id, options); await sales_reports.update( { deletedBy: currentUser.id, }, { transaction, }, ); await sales_reports.destroy({ transaction, }); return sales_reports; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const sales_reports = await db.sales_reports.findOne( { where }, { transaction }, ); if (!sales_reports) { return sales_reports; } const output = sales_reports.get({ plain: true }); output.admin = await sales_reports.getAdmin({ 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.users, as: 'admin', where: filter.admin ? { [Op.or]: [ { id: { [Op.in]: filter.admin .split('|') .map((term) => Utils.uuid(term)), }, }, { firstName: { [Op.or]: filter.admin .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.report_details) { where = { ...where, [Op.and]: Utils.ilike( 'sales_reports', 'report_details', filter.report_details, ), }; } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.mismatch_alert) { where = { ...where, mismatch_alert: filter.mismatch_alert, }; } 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.sales_reports.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('sales_reports', 'report_details', query), ], }; } const records = await db.sales_reports.findAll({ attributes: ['id', 'report_details'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['report_details', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.report_details, })); } };