38776-vm/backend/src/db/api/cash_boxes.js
2026-02-25 23:27:03 +00:00

567 lines
13 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 Cash_boxesDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const cash_boxes = await db.cash_boxes.create(
{
id: data.id || undefined,
code: data.code
||
null
,
name: data.name
||
null
,
opening_balance: data.opening_balance
||
null
,
is_active: data.is_active
||
false
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await cash_boxes.setBusiness( data.business || null, {
transaction,
});
await cash_boxes.setBranch( data.branch || null, {
transaction,
});
await cash_boxes.setCurrency( data.currency || null, {
transaction,
});
return cash_boxes;
}
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 cash_boxesData = data.map((item, index) => ({
id: item.id || undefined,
code: item.code
||
null
,
name: item.name
||
null
,
opening_balance: item.opening_balance
||
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 cash_boxes = await db.cash_boxes.bulkCreate(cash_boxesData, { transaction });
// For each item created, replace relation files
return cash_boxes;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const cash_boxes = await db.cash_boxes.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.code !== undefined) updatePayload.code = data.code;
if (data.name !== undefined) updatePayload.name = data.name;
if (data.opening_balance !== undefined) updatePayload.opening_balance = data.opening_balance;
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
updatePayload.updatedById = currentUser.id;
await cash_boxes.update(updatePayload, {transaction});
if (data.business !== undefined) {
await cash_boxes.setBusiness(
data.business,
{ transaction }
);
}
if (data.branch !== undefined) {
await cash_boxes.setBranch(
data.branch,
{ transaction }
);
}
if (data.currency !== undefined) {
await cash_boxes.setCurrency(
data.currency,
{ transaction }
);
}
return cash_boxes;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const cash_boxes = await db.cash_boxes.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of cash_boxes) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of cash_boxes) {
await record.destroy({transaction});
}
});
return cash_boxes;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const cash_boxes = await db.cash_boxes.findByPk(id, options);
await cash_boxes.update({
deletedBy: currentUser.id
}, {
transaction,
});
await cash_boxes.destroy({
transaction
});
return cash_boxes;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const cash_boxes = await db.cash_boxes.findOne(
{ where },
{ transaction },
);
if (!cash_boxes) {
return cash_boxes;
}
const output = cash_boxes.get({plain: true});
output.business = await cash_boxes.getBusiness({
transaction
});
output.branch = await cash_boxes.getBranch({
transaction
});
output.currency = await cash_boxes.getCurrency({
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.businesses,
as: 'business',
where: filter.business ? {
[Op.or]: [
{ id: { [Op.in]: filter.business.split('|').map(term => Utils.uuid(term)) } },
{
trade_name: {
[Op.or]: filter.business.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.branches,
as: 'branch',
where: filter.branch ? {
[Op.or]: [
{ id: { [Op.in]: filter.branch.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.branch.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.currencies,
as: 'currency',
where: filter.currency ? {
[Op.or]: [
{ id: { [Op.in]: filter.currency.split('|').map(term => Utils.uuid(term)) } },
{
code: {
[Op.or]: filter.currency.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.code) {
where = {
...where,
[Op.and]: Utils.ilike(
'cash_boxes',
'code',
filter.code,
),
};
}
if (filter.name) {
where = {
...where,
[Op.and]: Utils.ilike(
'cash_boxes',
'name',
filter.name,
),
};
}
if (filter.opening_balanceRange) {
const [start, end] = filter.opening_balanceRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
opening_balance: {
...where.opening_balance,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
opening_balance: {
...where.opening_balance,
[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.cash_boxes.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(
'cash_boxes',
'name',
query,
),
],
};
}
const records = await db.cash_boxes.findAll({
attributes: [ 'id', 'name' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['name', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.name,
}));
}
};