930 lines
23 KiB
JavaScript
930 lines
23 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 Production_ordersDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const production_orders = await db.production_orders.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
order_number: data.order_number
|
|
||
|
|
null
|
|
,
|
|
|
|
order_type: data.order_type
|
|
||
|
|
null
|
|
,
|
|
|
|
status: data.status
|
|
||
|
|
null
|
|
,
|
|
|
|
planned_quantity: data.planned_quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
completed_quantity: data.completed_quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
planned_start_at: data.planned_start_at
|
|
||
|
|
null
|
|
,
|
|
|
|
planned_end_at: data.planned_end_at
|
|
||
|
|
null
|
|
,
|
|
|
|
released_at: data.released_at
|
|
||
|
|
null
|
|
,
|
|
|
|
due_at: data.due_at
|
|
||
|
|
null
|
|
,
|
|
|
|
notes: data.notes
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await production_orders.setPlant( data.plant || null, {
|
|
transaction,
|
|
});
|
|
|
|
await production_orders.setMaterial( data.material || null, {
|
|
transaction,
|
|
});
|
|
|
|
await production_orders.setRouting( data.routing || null, {
|
|
transaction,
|
|
});
|
|
|
|
await production_orders.setCustomer( data.customer || null, {
|
|
transaction,
|
|
});
|
|
|
|
await production_orders.setUom( data.uom || null, {
|
|
transaction,
|
|
});
|
|
|
|
await production_orders.setPlanner_user( data.planner_user || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.production_orders.getTableName(),
|
|
belongsToColumn: 'attachments',
|
|
belongsToId: production_orders.id,
|
|
},
|
|
data.attachments,
|
|
options,
|
|
);
|
|
|
|
|
|
return production_orders;
|
|
}
|
|
|
|
|
|
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 production_ordersData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
order_number: item.order_number
|
|
||
|
|
null
|
|
,
|
|
|
|
order_type: item.order_type
|
|
||
|
|
null
|
|
,
|
|
|
|
status: item.status
|
|
||
|
|
null
|
|
,
|
|
|
|
planned_quantity: item.planned_quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
completed_quantity: item.completed_quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
planned_start_at: item.planned_start_at
|
|
||
|
|
null
|
|
,
|
|
|
|
planned_end_at: item.planned_end_at
|
|
||
|
|
null
|
|
,
|
|
|
|
released_at: item.released_at
|
|
||
|
|
null
|
|
,
|
|
|
|
due_at: item.due_at
|
|
||
|
|
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 production_orders = await db.production_orders.bulkCreate(production_ordersData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
for (let i = 0; i < production_orders.length; i++) {
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.production_orders.getTableName(),
|
|
belongsToColumn: 'attachments',
|
|
belongsToId: production_orders[i].id,
|
|
},
|
|
data[i].attachments,
|
|
options,
|
|
);
|
|
}
|
|
|
|
|
|
return production_orders;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const production_orders = await db.production_orders.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.order_number !== undefined) updatePayload.order_number = data.order_number;
|
|
|
|
|
|
if (data.order_type !== undefined) updatePayload.order_type = data.order_type;
|
|
|
|
|
|
if (data.status !== undefined) updatePayload.status = data.status;
|
|
|
|
|
|
if (data.planned_quantity !== undefined) updatePayload.planned_quantity = data.planned_quantity;
|
|
|
|
|
|
if (data.completed_quantity !== undefined) updatePayload.completed_quantity = data.completed_quantity;
|
|
|
|
|
|
if (data.planned_start_at !== undefined) updatePayload.planned_start_at = data.planned_start_at;
|
|
|
|
|
|
if (data.planned_end_at !== undefined) updatePayload.planned_end_at = data.planned_end_at;
|
|
|
|
|
|
if (data.released_at !== undefined) updatePayload.released_at = data.released_at;
|
|
|
|
|
|
if (data.due_at !== undefined) updatePayload.due_at = data.due_at;
|
|
|
|
|
|
if (data.notes !== undefined) updatePayload.notes = data.notes;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await production_orders.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.plant !== undefined) {
|
|
await production_orders.setPlant(
|
|
|
|
data.plant,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.material !== undefined) {
|
|
await production_orders.setMaterial(
|
|
|
|
data.material,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.routing !== undefined) {
|
|
await production_orders.setRouting(
|
|
|
|
data.routing,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.customer !== undefined) {
|
|
await production_orders.setCustomer(
|
|
|
|
data.customer,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.uom !== undefined) {
|
|
await production_orders.setUom(
|
|
|
|
data.uom,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.planner_user !== undefined) {
|
|
await production_orders.setPlanner_user(
|
|
|
|
data.planner_user,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.production_orders.getTableName(),
|
|
belongsToColumn: 'attachments',
|
|
belongsToId: production_orders.id,
|
|
},
|
|
data.attachments,
|
|
options,
|
|
);
|
|
|
|
|
|
return production_orders;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const production_orders = await db.production_orders.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of production_orders) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of production_orders) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return production_orders;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const production_orders = await db.production_orders.findByPk(id, options);
|
|
|
|
await production_orders.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await production_orders.destroy({
|
|
transaction
|
|
});
|
|
|
|
return production_orders;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const production_orders = await db.production_orders.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!production_orders) {
|
|
return production_orders;
|
|
}
|
|
|
|
const output = production_orders.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.work_order_operations_production_order = await production_orders.getWork_order_operations_production_order({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.inventory_transactions_production_order = await production_orders.getInventory_transactions_production_order({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.inspections_production_order = await production_orders.getInspections_production_order({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.nonconformances_production_order = await production_orders.getNonconformances_production_order({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.alerts_related_order = await production_orders.getAlerts_related_order({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
output.plant = await production_orders.getPlant({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.material = await production_orders.getMaterial({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.routing = await production_orders.getRouting({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.customer = await production_orders.getCustomer({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.uom = await production_orders.getUom({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.planner_user = await production_orders.getPlanner_user({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.attachments = await production_orders.getAttachments({
|
|
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.plants,
|
|
as: 'plant',
|
|
|
|
where: filter.plant ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.plant.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
plant_name: {
|
|
[Op.or]: filter.plant.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.materials,
|
|
as: 'material',
|
|
|
|
where: filter.material ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.material.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
material_name: {
|
|
[Op.or]: filter.material.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.routings,
|
|
as: 'routing',
|
|
|
|
where: filter.routing ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.routing.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
routing_code: {
|
|
[Op.or]: filter.routing.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.customers,
|
|
as: 'customer',
|
|
|
|
where: filter.customer ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.customer.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
customer_name: {
|
|
[Op.or]: filter.customer.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.units_of_measure,
|
|
as: 'uom',
|
|
|
|
where: filter.uom ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.uom.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
uom_code: {
|
|
[Op.or]: filter.uom.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'planner_user',
|
|
|
|
where: filter.planner_user ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.planner_user.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.planner_user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
model: db.file,
|
|
as: 'attachments',
|
|
},
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.order_number) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'production_orders',
|
|
'order_number',
|
|
filter.order_number,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.notes) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'production_orders',
|
|
'notes',
|
|
filter.notes,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.planned_quantityRange) {
|
|
const [start, end] = filter.planned_quantityRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
planned_quantity: {
|
|
...where.planned_quantity,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
planned_quantity: {
|
|
...where.planned_quantity,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.completed_quantityRange) {
|
|
const [start, end] = filter.completed_quantityRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
completed_quantity: {
|
|
...where.completed_quantity,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
completed_quantity: {
|
|
...where.completed_quantity,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.planned_start_atRange) {
|
|
const [start, end] = filter.planned_start_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
planned_start_at: {
|
|
...where.planned_start_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
planned_start_at: {
|
|
...where.planned_start_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.planned_end_atRange) {
|
|
const [start, end] = filter.planned_end_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
planned_end_at: {
|
|
...where.planned_end_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
planned_end_at: {
|
|
...where.planned_end_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.released_atRange) {
|
|
const [start, end] = filter.released_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
released_at: {
|
|
...where.released_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
released_at: {
|
|
...where.released_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.due_atRange) {
|
|
const [start, end] = filter.due_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
due_at: {
|
|
...where.due_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
due_at: {
|
|
...where.due_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.order_type) {
|
|
where = {
|
|
...where,
|
|
order_type: filter.order_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.production_orders.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(
|
|
'production_orders',
|
|
'order_number',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.production_orders.findAll({
|
|
attributes: [ 'id', 'order_number' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['order_number', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.order_number,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|