722 lines
17 KiB
JavaScript
722 lines
17 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 PlantsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const plants = await db.plants.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
name: data.name
|
|
||
|
|
null
|
|
,
|
|
|
|
code: data.code
|
|
||
|
|
null
|
|
,
|
|
|
|
timezone: data.timezone
|
|
||
|
|
null
|
|
,
|
|
|
|
phone: data.phone
|
|
||
|
|
null
|
|
,
|
|
|
|
address_line1: data.address_line1
|
|
||
|
|
null
|
|
,
|
|
|
|
address_line2: data.address_line2
|
|
||
|
|
null
|
|
,
|
|
|
|
city: data.city
|
|
||
|
|
null
|
|
,
|
|
|
|
state_region: data.state_region
|
|
||
|
|
null
|
|
,
|
|
|
|
postal_code: data.postal_code
|
|
||
|
|
null
|
|
,
|
|
|
|
country: data.country
|
|
||
|
|
null
|
|
,
|
|
|
|
is_active: data.is_active
|
|
||
|
|
false
|
|
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await plants.setCompany( data.company || null, {
|
|
transaction,
|
|
});
|
|
|
|
await plants.setOrganizations( data.organizations || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return plants;
|
|
}
|
|
|
|
|
|
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 plantsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
name: item.name
|
|
||
|
|
null
|
|
,
|
|
|
|
code: item.code
|
|
||
|
|
null
|
|
,
|
|
|
|
timezone: item.timezone
|
|
||
|
|
null
|
|
,
|
|
|
|
phone: item.phone
|
|
||
|
|
null
|
|
,
|
|
|
|
address_line1: item.address_line1
|
|
||
|
|
null
|
|
,
|
|
|
|
address_line2: item.address_line2
|
|
||
|
|
null
|
|
,
|
|
|
|
city: item.city
|
|
||
|
|
null
|
|
,
|
|
|
|
state_region: item.state_region
|
|
||
|
|
null
|
|
,
|
|
|
|
postal_code: item.postal_code
|
|
||
|
|
null
|
|
,
|
|
|
|
country: item.country
|
|
||
|
|
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 plants = await db.plants.bulkCreate(plantsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return plants;
|
|
}
|
|
|
|
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 plants = await db.plants.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.name !== undefined) updatePayload.name = data.name;
|
|
|
|
|
|
if (data.code !== undefined) updatePayload.code = data.code;
|
|
|
|
|
|
if (data.timezone !== undefined) updatePayload.timezone = data.timezone;
|
|
|
|
|
|
if (data.phone !== undefined) updatePayload.phone = data.phone;
|
|
|
|
|
|
if (data.address_line1 !== undefined) updatePayload.address_line1 = data.address_line1;
|
|
|
|
|
|
if (data.address_line2 !== undefined) updatePayload.address_line2 = data.address_line2;
|
|
|
|
|
|
if (data.city !== undefined) updatePayload.city = data.city;
|
|
|
|
|
|
if (data.state_region !== undefined) updatePayload.state_region = data.state_region;
|
|
|
|
|
|
if (data.postal_code !== undefined) updatePayload.postal_code = data.postal_code;
|
|
|
|
|
|
if (data.country !== undefined) updatePayload.country = data.country;
|
|
|
|
|
|
if (data.is_active !== undefined) updatePayload.is_active = data.is_active;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await plants.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.company !== undefined) {
|
|
await plants.setCompany(
|
|
|
|
data.company,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.organizations !== undefined) {
|
|
await plants.setOrganizations(
|
|
|
|
data.organizations,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return plants;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const plants = await db.plants.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of plants) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of plants) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return plants;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const plants = await db.plants.findByPk(id, options);
|
|
|
|
await plants.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await plants.destroy({
|
|
transaction
|
|
});
|
|
|
|
return plants;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const plants = await db.plants.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!plants) {
|
|
return plants;
|
|
}
|
|
|
|
const output = plants.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.warehouses_plant = await plants.getWarehouses_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
output.inventory_balances_plant = await plants.getInventory_balances_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.inventory_transactions_plant = await plants.getInventory_transactions_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.machines_plant = await plants.getMachines_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.work_orders_plant = await plants.getWork_orders_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.qa_inspections_plant = await plants.getQa_inspections_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.nonconformances_plant = await plants.getNonconformances_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.capas_plant = await plants.getCapas_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.audit_events_plant = await plants.getAudit_events_plant({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
output.company = await plants.getCompany({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.organizations = await plants.getOrganizations({
|
|
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.companies,
|
|
as: 'company',
|
|
|
|
where: filter.company ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.company.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.company.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.organizations,
|
|
as: 'organizations',
|
|
|
|
},
|
|
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.name) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'name',
|
|
filter.name,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.code) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'code',
|
|
filter.code,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.timezone) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'timezone',
|
|
filter.timezone,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.phone) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'phone',
|
|
filter.phone,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.address_line1) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'address_line1',
|
|
filter.address_line1,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.address_line2) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'address_line2',
|
|
filter.address_line2,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.city) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'city',
|
|
filter.city,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.state_region) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'state_region',
|
|
filter.state_region,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.postal_code) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'postal_code',
|
|
filter.postal_code,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.country) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'plants',
|
|
'country',
|
|
filter.country,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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.organizations) {
|
|
const listItems = filter.organizations.split('|').map(item => {
|
|
return Utils.uuid(item)
|
|
});
|
|
|
|
where = {
|
|
...where,
|
|
organizationsId: {[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.plants.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(
|
|
'plants',
|
|
'name',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.plants.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,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|