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 CustomersDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const customers = await db.customers.create( { id: data.id || undefined, customer_id: data.customer_id || null, customer_name: data.customer_name || null, phone_number: data.phone_number || null, visit_count: data.visit_count || null, is_vip: data.is_vip || false, importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); return customers; } 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 customersData = data.map((item, index) => ({ id: item.id || undefined, customer_id: item.customer_id || null, customer_name: item.customer_name || null, phone_number: item.phone_number || null, visit_count: item.visit_count || null, is_vip: item.is_vip || false, importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const customers = await db.customers.bulkCreate(customersData, { transaction, }); // For each item created, replace relation files return customers; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const customers = await db.customers.findByPk(id, {}, { transaction }); const updatePayload = {}; if (data.customer_id !== undefined) updatePayload.customer_id = data.customer_id; if (data.customer_name !== undefined) updatePayload.customer_name = data.customer_name; if (data.phone_number !== undefined) updatePayload.phone_number = data.phone_number; if (data.visit_count !== undefined) updatePayload.visit_count = data.visit_count; if (data.is_vip !== undefined) updatePayload.is_vip = data.is_vip; updatePayload.updatedById = currentUser.id; await customers.update(updatePayload, { transaction }); return customers; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const customers = await db.customers.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of customers) { await record.update({ deletedBy: currentUser.id }, { transaction }); } for (const record of customers) { await record.destroy({ transaction }); } }); return customers; } static async remove(id, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const customers = await db.customers.findByPk(id, options); await customers.update( { deletedBy: currentUser.id, }, { transaction, }, ); await customers.destroy({ transaction, }); return customers; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const customers = await db.customers.findOne({ where }, { transaction }); if (!customers) { return customers; } const output = customers.get({ plain: true }); output.emails_customer = await customers.getEmails_customer({ transaction, }); output.invoices_customer = await customers.getInvoices_customer({ transaction, }); output.payments_customer = await customers.getPayments_customer({ 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 = []; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.customer_id) { where = { ...where, [Op.and]: Utils.ilike('customers', 'customer_id', filter.customer_id), }; } if (filter.customer_name) { where = { ...where, [Op.and]: Utils.ilike( 'customers', 'customer_name', filter.customer_name, ), }; } if (filter.phone_number) { where = { ...where, [Op.and]: Utils.ilike( 'customers', 'phone_number', filter.phone_number, ), }; } if (filter.visit_countRange) { const [start, end] = filter.visit_countRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, visit_count: { ...where.visit_count, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, visit_count: { ...where.visit_count, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true', }; } if (filter.is_vip) { where = { ...where, is_vip: filter.is_vip, }; } 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.customers.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('customers', 'customer_name', query), ], }; } const records = await db.customers.findAll({ attributes: ['id', 'customer_name'], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['customer_name', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.customer_name, })); } };