37431-vm/backend/src/db/api/storage_locations.js
2026-01-13 11:35:23 +00:00

497 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 Storage_locationsDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const storage_locations = await db.storage_locations.create(
{
id: data.id || undefined,
location_code: data.location_code
||
null
,
location_name: data.location_name
||
null
,
location_type: data.location_type
||
null
,
status: data.status
||
null
,
notes: data.notes
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await storage_locations.setWarehouse( data.warehouse || null, {
transaction,
});
return storage_locations;
}
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 storage_locationsData = data.map((item, index) => ({
id: item.id || undefined,
location_code: item.location_code
||
null
,
location_name: item.location_name
||
null
,
location_type: item.location_type
||
null
,
status: item.status
||
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 storage_locations = await db.storage_locations.bulkCreate(storage_locationsData, { transaction });
// For each item created, replace relation files
return storage_locations;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const storage_locations = await db.storage_locations.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.location_code !== undefined) updatePayload.location_code = data.location_code;
if (data.location_name !== undefined) updatePayload.location_name = data.location_name;
if (data.location_type !== undefined) updatePayload.location_type = data.location_type;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.notes !== undefined) updatePayload.notes = data.notes;
updatePayload.updatedById = currentUser.id;
await storage_locations.update(updatePayload, {transaction});
if (data.warehouse !== undefined) {
await storage_locations.setWarehouse(
data.warehouse,
{ transaction }
);
}
return storage_locations;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const storage_locations = await db.storage_locations.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of storage_locations) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of storage_locations) {
await record.destroy({transaction});
}
});
return storage_locations;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const storage_locations = await db.storage_locations.findByPk(id, options);
await storage_locations.update({
deletedBy: currentUser.id
}, {
transaction,
});
await storage_locations.destroy({
transaction
});
return storage_locations;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const storage_locations = await db.storage_locations.findOne(
{ where },
{ transaction },
);
if (!storage_locations) {
return storage_locations;
}
const output = storage_locations.get({plain: true});
output.inventory_lots_location = await storage_locations.getInventory_lots_location({
transaction
});
output.inventory_transactions_from_location = await storage_locations.getInventory_transactions_from_location({
transaction
});
output.inventory_transactions_to_location = await storage_locations.getInventory_transactions_to_location({
transaction
});
output.warehouse = await storage_locations.getWarehouse({
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.warehouses,
as: 'warehouse',
where: filter.warehouse ? {
[Op.or]: [
{ id: { [Op.in]: filter.warehouse.split('|').map(term => Utils.uuid(term)) } },
{
warehouse_name: {
[Op.or]: filter.warehouse.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.location_code) {
where = {
...where,
[Op.and]: Utils.ilike(
'storage_locations',
'location_code',
filter.location_code,
),
};
}
if (filter.location_name) {
where = {
...where,
[Op.and]: Utils.ilike(
'storage_locations',
'location_name',
filter.location_name,
),
};
}
if (filter.notes) {
where = {
...where,
[Op.and]: Utils.ilike(
'storage_locations',
'notes',
filter.notes,
),
};
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.location_type) {
where = {
...where,
location_type: filter.location_type,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
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.storage_locations.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(
'storage_locations',
'location_code',
query,
),
],
};
}
const records = await db.storage_locations.findAll({
attributes: [ 'id', 'location_code' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['location_code', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.location_code,
}));
}
};