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 Tariff_changesDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const tariff_changes = await db.tariff_changes.create( { id: data.id || undefined, old_rate: data.old_rate || null, new_rate: data.new_rate || null, change_date: data.change_date || null, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await tariff_changes.setTariff(data.tariff || null, { transaction, }); return tariff_changes; } 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 tariff_changesData = data.map((item, index) => ({ id: item.id || undefined, old_rate: item.old_rate || null, new_rate: item.new_rate || null, change_date: item.change_date || null, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const tariff_changes = await db.tariff_changes.bulkCreate( tariff_changesData, { transaction }, ); // For each item created, replace relation files return tariff_changes; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const tariff_changes = await db.tariff_changes.findByPk( id, {}, { transaction }, ); const updatePayload = {}; if (data.old_rate !== undefined) updatePayload.old_rate = data.old_rate; if (data.new_rate !== undefined) updatePayload.new_rate = data.new_rate; if (data.change_date !== undefined) updatePayload.change_date = data.change_date; updatePayload.updatedById = currentUser.id; await tariff_changes.update(updatePayload, { transaction }); if (data.tariff !== undefined) { await tariff_changes.setTariff( data.tariff, { transaction }, ); } return tariff_changes; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const tariff_changes = await db.tariff_changes.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of tariff_changes) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of tariff_changes) { await record.destroy({ transaction }); } }); return tariff_changes; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const tariff_changes = await db.tariff_changes.findByPk(id, options); await tariff_changes.update( { deletedBy: currentUser.id, }, { transaction, }, ); await tariff_changes.destroy({ transaction, }); return tariff_changes; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const tariff_changes = await db.tariff_changes.findOne( { where }, { transaction }, ); if (!tariff_changes) { return tariff_changes; } const output = tariff_changes.get({ plain: true }); output.tariff = await tariff_changes.getTariff({ 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.tariffs, as: 'tariff', where: filter.tariff ? { [Op.or]: [ { id: { [Op.in]: filter.tariff .split('|') .map((term) => Utils.uuid(term)), }, }, { currency: { [Op.or]: filter.tariff .split('|') .map((term) => ({ [Op.iLike]: `%${term}%` })), }, }, ], } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.old_rateRange) { const [start, end] = filter.old_rateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, old_rate: { ...where.old_rate, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, old_rate: { ...where.old_rate, [Op.lte]: end, }, }; } } if (filter.new_rateRange) { const [start, end] = filter.new_rateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, new_rate: { ...where.new_rate, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, new_rate: { ...where.new_rate, [Op.lte]: end, }, }; } } if (filter.change_dateRange) { const [start, end] = filter.change_dateRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, change_date: { ...where.change_date, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, change_date: { ...where.change_date, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } 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.tariff_changes.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('tariff_changes', 'change_date', query), ], }; } const records = await db.tariff_changes.findAll({ attributes: ['id', 'change_date'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['change_date', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.change_date, })); } };