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 Staff_service_assignmentsDBApi { static async create(data, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const staff_service_assignments = await db.staff_service_assignments.create( { id: data.id || undefined, duration_override_minutes: data.duration_override_minutes || null , price_override: data.price_override || null , is_active: data.is_active || false , importHash: data.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, }, { transaction }, ); await staff_service_assignments.setStaff_member( data.staff_member || null, { transaction, }); await staff_service_assignments.setService( data.service || null, { transaction, }); return staff_service_assignments; } 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 staff_service_assignmentsData = data.map((item, index) => ({ id: item.id || undefined, duration_override_minutes: item.duration_override_minutes || null , price_override: item.price_override || null , is_active: item.is_active || false , importHash: item.importHash || null, createdById: currentUser.id, updatedById: currentUser.id, createdAt: new Date(Date.now() + index * 1000), })); // Bulk create items const staff_service_assignments = await db.staff_service_assignments.bulkCreate(staff_service_assignmentsData, { transaction }); // For each item created, replace relation files return staff_service_assignments; } static async update(id, data, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const staff_service_assignments = await db.staff_service_assignments.findByPk(id, {}, {transaction}); const updatePayload = {}; if (data.duration_override_minutes !== undefined) updatePayload.duration_override_minutes = data.duration_override_minutes; if (data.price_override !== undefined) updatePayload.price_override = data.price_override; if (data.is_active !== undefined) updatePayload.is_active = data.is_active; updatePayload.updatedById = currentUser.id; await staff_service_assignments.update(updatePayload, {transaction}); if (data.staff_member !== undefined) { await staff_service_assignments.setStaff_member( data.staff_member, { transaction } ); } if (data.service !== undefined) { await staff_service_assignments.setService( data.service, { transaction } ); } return staff_service_assignments; } static async deleteByIds(ids, options) { const currentUser = (options && options.currentUser) || { id: null }; const transaction = (options && options.transaction) || undefined; const staff_service_assignments = await db.staff_service_assignments.findAll({ where: { id: { [Op.in]: ids, }, }, transaction, }); await db.sequelize.transaction(async (transaction) => { for (const record of staff_service_assignments) { await record.update( {deletedBy: currentUser.id}, {transaction} ); } for (const record of staff_service_assignments) { await record.destroy({transaction}); } }); return staff_service_assignments; } static async remove(id, options) { const currentUser = (options && options.currentUser) || {id: null}; const transaction = (options && options.transaction) || undefined; const staff_service_assignments = await db.staff_service_assignments.findByPk(id, options); await staff_service_assignments.update({ deletedBy: currentUser.id }, { transaction, }); await staff_service_assignments.destroy({ transaction }); return staff_service_assignments; } static async findBy(where, options) { const transaction = (options && options.transaction) || undefined; const staff_service_assignments = await db.staff_service_assignments.findOne( { where }, { transaction }, ); if (!staff_service_assignments) { return staff_service_assignments; } const output = staff_service_assignments.get({plain: true}); output.staff_member = await staff_service_assignments.getStaff_member({ transaction }); output.service = await staff_service_assignments.getService({ 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.staff_members, as: 'staff_member', where: filter.staff_member ? { [Op.or]: [ { id: { [Op.in]: filter.staff_member.split('|').map(term => Utils.uuid(term)) } }, { display_name: { [Op.or]: filter.staff_member.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, { model: db.services, as: 'service', where: filter.service ? { [Op.or]: [ { id: { [Op.in]: filter.service.split('|').map(term => Utils.uuid(term)) } }, { name: { [Op.or]: filter.service.split('|').map(term => ({ [Op.iLike]: `%${term}%` })) } }, ] } : {}, }, ]; if (filter) { if (filter.id) { where = { ...where, ['id']: Utils.uuid(filter.id), }; } if (filter.duration_override_minutesRange) { const [start, end] = filter.duration_override_minutesRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, duration_override_minutes: { ...where.duration_override_minutes, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, duration_override_minutes: { ...where.duration_override_minutes, [Op.lte]: end, }, }; } } if (filter.price_overrideRange) { const [start, end] = filter.price_overrideRange; if (start !== undefined && start !== null && start !== '') { where = { ...where, price_override: { ...where.price_override, [Op.gte]: start, }, }; } if (end !== undefined && end !== null && end !== '') { where = { ...where, price_override: { ...where.price_override, [Op.lte]: end, }, }; } } if (filter.active !== undefined) { where = { ...where, active: filter.active === true || filter.active === 'true' }; } if (filter.is_active) { where = { ...where, is_active: filter.is_active, }; } 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.staff_service_assignments.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( 'staff_service_assignments', 'is_active', query, ), ], }; } const records = await db.staff_service_assignments.findAll({ attributes: [ 'id', 'is_active' ], where, limit: limit ? Number(limit) : undefined, offset: offset ? Number(offset) : undefined, orderBy: [['is_active', 'ASC']], }); return records.map((record) => ({ id: record.id, label: record.is_active, })); } };