38393-vm/backend/src/db/api/inventory_movements.js
2026-02-13 06:04:29 +00:00

640 lines
16 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 Inventory_movementsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const inventory_movements = await db.inventory_movements.create(
{
id: data.id || undefined,
movement_type: data.movement_type
||
null
,
quantity: data.quantity
||
null
,
unit_cost: data.unit_cost
||
null
,
movement_at: data.movement_at
||
null
,
reference: data.reference
||
null
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await inventory_movements.setOrganization(currentUser.organization.id || null, {
transaction,
});
await inventory_movements.setWarehouse( data.warehouse || null, {
transaction,
});
await inventory_movements.setProduct( data.product || null, {
transaction,
});
return inventory_movements;
}
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 inventory_movementsData = data.map((item, index) => ({
id: item.id || undefined,
movement_type: item.movement_type
||
null
,
quantity: item.quantity
||
null
,
unit_cost: item.unit_cost
||
null
,
movement_at: item.movement_at
||
null
,
reference: item.reference
||
null
,
notes: item.notes
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const inventory_movements = await db.inventory_movements.bulkCreate(inventory_movementsData, { transaction });
// For each item created, replace relation files
return inventory_movements;
}
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 inventory_movements = await db.inventory_movements.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.movement_type !== undefined) updatePayload.movement_type = data.movement_type;
if (data.quantity !== undefined) updatePayload.quantity = data.quantity;
if (data.unit_cost !== undefined) updatePayload.unit_cost = data.unit_cost;
if (data.movement_at !== undefined) updatePayload.movement_at = data.movement_at;
if (data.reference !== undefined) updatePayload.reference = data.reference;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await inventory_movements.update(updatePayload, {transaction});
if (data.organization !== undefined) {
await inventory_movements.setOrganization(
(globalAccess ? data.organization : currentUser.organization.id),
{ transaction }
);
}
if (data.warehouse !== undefined) {
await inventory_movements.setWarehouse(
data.warehouse,
{ transaction }
);
}
if (data.product !== undefined) {
await inventory_movements.setProduct(
data.product,
{ transaction }
);
}
return inventory_movements;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const inventory_movements = await db.inventory_movements.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of inventory_movements) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of inventory_movements) {
await record.destroy({transaction});
}
});
return inventory_movements;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const inventory_movements = await db.inventory_movements.findByPk(id, options);
await inventory_movements.update({
deletedBy: currentUser.id
}, {
transaction,
});
await inventory_movements.destroy({
transaction
});
return inventory_movements;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const inventory_movements = await db.inventory_movements.findOne(
{ where },
{ transaction },
);
if (!inventory_movements) {
return inventory_movements;
}
const output = inventory_movements.get({plain: true});
output.organization = await inventory_movements.getOrganization({
transaction
});
output.warehouse = await inventory_movements.getWarehouse({
transaction
});
output.product = await inventory_movements.getProduct({
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 userOrganizations = (user && user.organizations?.id) || null;
if (userOrganizations) {
if (options?.currentUser?.organizationsId) {
where.organizationsId = options.currentUser.organizationsId;
}
}
offset = currentPage * limit;
const orderBy = null;
const transaction = (options && options.transaction) || undefined;
let include = [
{
model: db.organizations,
as: 'organization',
},
{
model: db.warehouses,
as: 'warehouse',
where: filter.warehouse ? {
[Op.or]: [
{ id: { [Op.in]: filter.warehouse.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.warehouse.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.products,
as: 'product',
where: filter.product ? {
[Op.or]: [
{ id: { [Op.in]: filter.product.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.product.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.reference) {
where = {
...where,
[Op.and]: Utils.ilike(
'inventory_movements',
'reference',
filter.reference,
),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'inventory_movements',
'notes',
filter.notes,
),
};
}
if (filter.quantityRange) {
const [start, end] = filter.quantityRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
quantity: {
...where.quantity,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
quantity: {
...where.quantity,
[Op.lte]: end,
},
};
}
}
if (filter.unit_costRange) {
const [start, end] = filter.unit_costRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
unit_cost: {
...where.unit_cost,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
unit_cost: {
...where.unit_cost,
[Op.lte]: end,
},
};
}
}
if (filter.movement_atRange) {
const [start, end] = filter.movement_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
movement_at: {
...where.movement_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
movement_at: {
...where.movement_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.movement_type) {
where = {
...where,
movement_type: filter.movement_type,
};
}
if (filter.organization) {
const listItems = filter.organization.split('|').map(item => {
return Utils.uuid(item)
});
where = {
...where,
organizationId: {[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.organizationsId;
}
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.inventory_movements.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(
'inventory_movements',
'reference',
query,
),
],
};
}
const records = await db.inventory_movements.findAll({
attributes: [ 'id', 'reference' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['reference', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.reference,
}));
}
};