775 lines
19 KiB
JavaScript
775 lines
19 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 Qa_inspectionsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const qa_inspections = await db.qa_inspections.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
inspection_number: data.inspection_number
|
|
||
|
|
null
|
|
,
|
|
|
|
inspection_type: data.inspection_type
|
|
||
|
|
null
|
|
,
|
|
|
|
status: data.status
|
|
||
|
|
null
|
|
,
|
|
|
|
scheduled_at: data.scheduled_at
|
|
||
|
|
null
|
|
,
|
|
|
|
started_at: data.started_at
|
|
||
|
|
null
|
|
,
|
|
|
|
completed_at: data.completed_at
|
|
||
|
|
null
|
|
,
|
|
|
|
summary: data.summary
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await qa_inspections.setQa_plan( data.qa_plan || null, {
|
|
transaction,
|
|
});
|
|
|
|
await qa_inspections.setItem( data.item || null, {
|
|
transaction,
|
|
});
|
|
|
|
await qa_inspections.setLot( data.lot || null, {
|
|
transaction,
|
|
});
|
|
|
|
await qa_inspections.setProduction_order( data.production_order || null, {
|
|
transaction,
|
|
});
|
|
|
|
await qa_inspections.setInspector( data.inspector || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.qa_inspections.getTableName(),
|
|
belongsToColumn: 'attachments',
|
|
belongsToId: qa_inspections.id,
|
|
},
|
|
data.attachments,
|
|
options,
|
|
);
|
|
|
|
|
|
return qa_inspections;
|
|
}
|
|
|
|
|
|
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 qa_inspectionsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
inspection_number: item.inspection_number
|
|
||
|
|
null
|
|
,
|
|
|
|
inspection_type: item.inspection_type
|
|
||
|
|
null
|
|
,
|
|
|
|
status: item.status
|
|
||
|
|
null
|
|
,
|
|
|
|
scheduled_at: item.scheduled_at
|
|
||
|
|
null
|
|
,
|
|
|
|
started_at: item.started_at
|
|
||
|
|
null
|
|
,
|
|
|
|
completed_at: item.completed_at
|
|
||
|
|
null
|
|
,
|
|
|
|
summary: item.summary
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const qa_inspections = await db.qa_inspections.bulkCreate(qa_inspectionsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
for (let i = 0; i < qa_inspections.length; i++) {
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.qa_inspections.getTableName(),
|
|
belongsToColumn: 'attachments',
|
|
belongsToId: qa_inspections[i].id,
|
|
},
|
|
data[i].attachments,
|
|
options,
|
|
);
|
|
}
|
|
|
|
|
|
return qa_inspections;
|
|
}
|
|
|
|
static async update(id, data, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
|
|
const qa_inspections = await db.qa_inspections.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.inspection_number !== undefined) updatePayload.inspection_number = data.inspection_number;
|
|
|
|
|
|
if (data.inspection_type !== undefined) updatePayload.inspection_type = data.inspection_type;
|
|
|
|
|
|
if (data.status !== undefined) updatePayload.status = data.status;
|
|
|
|
|
|
if (data.scheduled_at !== undefined) updatePayload.scheduled_at = data.scheduled_at;
|
|
|
|
|
|
if (data.started_at !== undefined) updatePayload.started_at = data.started_at;
|
|
|
|
|
|
if (data.completed_at !== undefined) updatePayload.completed_at = data.completed_at;
|
|
|
|
|
|
if (data.summary !== undefined) updatePayload.summary = data.summary;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await qa_inspections.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.qa_plan !== undefined) {
|
|
await qa_inspections.setQa_plan(
|
|
|
|
data.qa_plan,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.item !== undefined) {
|
|
await qa_inspections.setItem(
|
|
|
|
data.item,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.lot !== undefined) {
|
|
await qa_inspections.setLot(
|
|
|
|
data.lot,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.production_order !== undefined) {
|
|
await qa_inspections.setProduction_order(
|
|
|
|
data.production_order,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.inspector !== undefined) {
|
|
await qa_inspections.setInspector(
|
|
|
|
data.inspector,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await FileDBApi.replaceRelationFiles(
|
|
{
|
|
belongsTo: db.qa_inspections.getTableName(),
|
|
belongsToColumn: 'attachments',
|
|
belongsToId: qa_inspections.id,
|
|
},
|
|
data.attachments,
|
|
options,
|
|
);
|
|
|
|
|
|
return qa_inspections;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const qa_inspections = await db.qa_inspections.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of qa_inspections) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of qa_inspections) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return qa_inspections;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const qa_inspections = await db.qa_inspections.findByPk(id, options);
|
|
|
|
await qa_inspections.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await qa_inspections.destroy({
|
|
transaction
|
|
});
|
|
|
|
return qa_inspections;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const qa_inspections = await db.qa_inspections.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!qa_inspections) {
|
|
return qa_inspections;
|
|
}
|
|
|
|
const output = qa_inspections.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.qa_results_qa_inspection = await qa_inspections.getQa_results_qa_inspection({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.qa_plan = await qa_inspections.getQa_plan({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.item = await qa_inspections.getItem({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.lot = await qa_inspections.getLot({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.production_order = await qa_inspections.getProduction_order({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.inspector = await qa_inspections.getInspector({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.attachments = await qa_inspections.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.qa_plans,
|
|
as: 'qa_plan',
|
|
|
|
where: filter.qa_plan ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.qa_plan.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.qa_plan.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.items,
|
|
as: 'item',
|
|
|
|
where: filter.item ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.item.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.item.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.inventory_lots,
|
|
as: 'lot',
|
|
|
|
where: filter.lot ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.lot.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
lot_number: {
|
|
[Op.or]: filter.lot.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.production_orders,
|
|
as: 'production_order',
|
|
|
|
where: filter.production_order ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.production_order.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
order_number: {
|
|
[Op.or]: filter.production_order.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.users,
|
|
as: 'inspector',
|
|
|
|
where: filter.inspector ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.inspector.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
firstName: {
|
|
[Op.or]: filter.inspector.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.inspection_number) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'qa_inspections',
|
|
'inspection_number',
|
|
filter.inspection_number,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.summary) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'qa_inspections',
|
|
'summary',
|
|
filter.summary,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.scheduled_atRange) {
|
|
const [start, end] = filter.scheduled_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
scheduled_at: {
|
|
...where.scheduled_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
scheduled_at: {
|
|
...where.scheduled_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.started_atRange) {
|
|
const [start, end] = filter.started_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
started_at: {
|
|
...where.started_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
started_at: {
|
|
...where.started_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.completed_atRange) {
|
|
const [start, end] = filter.completed_atRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
completed_at: {
|
|
...where.completed_at,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
completed_at: {
|
|
...where.completed_at,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.inspection_type) {
|
|
where = {
|
|
...where,
|
|
inspection_type: filter.inspection_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.qa_inspections.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(
|
|
'qa_inspections',
|
|
'inspection_number',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.qa_inspections.findAll({
|
|
attributes: [ 'id', 'inspection_number' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['inspection_number', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.inspection_number,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|