30518/backend/src/db/api/prescriptions.js
2025-04-06 05:08:40 +00:00

489 lines
12 KiB
JavaScript

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 PrescriptionsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const prescriptions = await db.prescriptions.create(
{
id: data.id || undefined,
patient_name: data.patient_name || null,
issue_date: data.issue_date || null,
expiry_date: data.expiry_date || null,
medication_details: data.medication_details || null,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await prescriptions.setPharmacist(data.pharmacist || null, {
transaction,
});
await prescriptions.setCompany(data.company || null, {
transaction,
});
await prescriptions.setCompanies(data.companies || null, {
transaction,
});
return prescriptions;
}
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 prescriptionsData = data.map((item, index) => ({
id: item.id || undefined,
patient_name: item.patient_name || null,
issue_date: item.issue_date || null,
expiry_date: item.expiry_date || null,
medication_details: item.medication_details || null,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const prescriptions = await db.prescriptions.bulkCreate(prescriptionsData, {
transaction,
});
// For each item created, replace relation files
return prescriptions;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const globalAccess = currentUser.app_role?.globalAccess;
const prescriptions = await db.prescriptions.findByPk(
id,
{},
{ transaction },
);
const updatePayload = {};
if (data.patient_name !== undefined)
updatePayload.patient_name = data.patient_name;
if (data.issue_date !== undefined)
updatePayload.issue_date = data.issue_date;
if (data.expiry_date !== undefined)
updatePayload.expiry_date = data.expiry_date;
if (data.medication_details !== undefined)
updatePayload.medication_details = data.medication_details;
updatePayload.updatedById = currentUser.id;
await prescriptions.update(updatePayload, { transaction });
if (data.pharmacist !== undefined) {
await prescriptions.setPharmacist(
data.pharmacist,
{ transaction },
);
}
if (data.company !== undefined) {
await prescriptions.setCompany(
data.company,
{ transaction },
);
}
if (data.companies !== undefined) {
await prescriptions.setCompanies(
data.companies,
{ transaction },
);
}
return prescriptions;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const prescriptions = await db.prescriptions.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of prescriptions) {
await record.update({ deletedBy: currentUser.id }, { transaction });
}
for (const record of prescriptions) {
await record.destroy({ transaction });
}
});
return prescriptions;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const prescriptions = await db.prescriptions.findByPk(id, options);
await prescriptions.update(
{
deletedBy: currentUser.id,
},
{
transaction,
},
);
await prescriptions.destroy({
transaction,
});
return prescriptions;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const prescriptions = await db.prescriptions.findOne(
{ where },
{ transaction },
);
if (!prescriptions) {
return prescriptions;
}
const output = prescriptions.get({ plain: true });
output.orders_prescription = await prescriptions.getOrders_prescription({
transaction,
});
output.pharmacist = await prescriptions.getPharmacist({
transaction,
});
output.company = await prescriptions.getCompany({
transaction,
});
output.companies = await prescriptions.getCompanies({
transaction,
});
return output;
}
static async findAll(filter, globalAccess, options) {
const limit = filter.limit || 0;
let offset = 0;
let where = {};
const currentPage = +filter.page;
const user = (options && options.currentUser) || null;
const userCompanies = (user && user.companies?.id) || null;
if (userCompanies) {
if (options?.currentUser?.companiesId) {
where.companiesId = options.currentUser.companiesId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.users,
as: 'pharmacist',
where: filter.pharmacist
? {
[Op.or]: [
{
id: {
[Op.in]: filter.pharmacist
.split('|')
.map((term) => Utils.uuid(term)),
},
},
{
firstName: {
[Op.or]: filter.pharmacist
.split('|')
.map((term) => ({ [Op.iLike]: `%${term}%` })),
},
},
],
}
: {},
},
{
model: db.companies,
as: 'company',
},
{
model: db.companies,
as: 'companies',
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.patient_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'prescriptions',
'patient_name',
filter.patient_name,
),
};
}
if (filter.medication_details) {
where = {
...where,
[Op.and]: Utils.ilike(
'prescriptions',
'medication_details',
filter.medication_details,
),
};
}
if (filter.calendarStart && filter.calendarEnd) {
where = {
...where,
[Op.or]: [
{
issue_date: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
{
expiry_date: {
[Op.between]: [filter.calendarStart, filter.calendarEnd],
},
},
],
};
}
if (filter.issue_dateRange) {
const [start, end] = filter.issue_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
issue_date: {
...where.issue_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
issue_date: {
...where.issue_date,
[Op.lte]: end,
},
};
}
}
if (filter.expiry_dateRange) {
const [start, end] = filter.expiry_dateRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
expiry_date: {
...where.expiry_date,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
expiry_date: {
...where.expiry_date,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true',
};
}
if (filter.company) {
const listItems = filter.company.split('|').map((item) => {
return Utils.uuid(item);
});
where = {
...where,
companyId: { [Op.or]: listItems },
};
}
if (filter.companies) {
const listItems = filter.companies.split('|').map((item) => {
return Utils.uuid(item);
});
where = {
...where,
companiesId: { [Op.or]: listItems },
};
}
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,
},
};
}
}
}
if (globalAccess) {
delete where.companiesId;
}
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.prescriptions.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,
globalAccess,
organizationId,
) {
let where = {};
if (!globalAccess && organizationId) {
where.organizationId = organizationId;
}
if (query) {
where = {
[Op.or]: [
{ ['id']: Utils.uuid(query) },
Utils.ilike('prescriptions', 'patient_name', query),
],
};
}
const records = await db.prescriptions.findAll({
attributes: ['id', 'patient_name'],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['patient_name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.patient_name,
}));
}
};