676 lines
16 KiB
JavaScript
676 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 Order_itemsDBApi {
|
|
|
|
|
|
|
|
static async create(data, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const order_items = await db.order_items.create(
|
|
{
|
|
id: data.id || undefined,
|
|
|
|
name_snapshot: data.name_snapshot
|
|
||
|
|
null
|
|
,
|
|
|
|
quantity: data.quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
unit_price: data.unit_price
|
|
||
|
|
null
|
|
,
|
|
|
|
line_total: data.line_total
|
|
||
|
|
null
|
|
,
|
|
|
|
special_instructions: data.special_instructions
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: data.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
},
|
|
{ transaction },
|
|
);
|
|
|
|
|
|
await order_items.setOrder( data.order || null, {
|
|
transaction,
|
|
});
|
|
|
|
await order_items.setMenu_item( data.menu_item || null, {
|
|
transaction,
|
|
});
|
|
|
|
await order_items.setRestaurants( data.restaurants || null, {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
await order_items.setSelected_modifiers(data.selected_modifiers || [], {
|
|
transaction,
|
|
});
|
|
|
|
|
|
|
|
|
|
return order_items;
|
|
}
|
|
|
|
|
|
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 order_itemsData = data.map((item, index) => ({
|
|
id: item.id || undefined,
|
|
|
|
name_snapshot: item.name_snapshot
|
|
||
|
|
null
|
|
,
|
|
|
|
quantity: item.quantity
|
|
||
|
|
null
|
|
,
|
|
|
|
unit_price: item.unit_price
|
|
||
|
|
null
|
|
,
|
|
|
|
line_total: item.line_total
|
|
||
|
|
null
|
|
,
|
|
|
|
special_instructions: item.special_instructions
|
|
||
|
|
null
|
|
,
|
|
|
|
importHash: item.importHash || null,
|
|
createdById: currentUser.id,
|
|
updatedById: currentUser.id,
|
|
createdAt: new Date(Date.now() + index * 1000),
|
|
}));
|
|
|
|
// Bulk create items
|
|
const order_items = await db.order_items.bulkCreate(order_itemsData, { transaction });
|
|
|
|
// For each item created, replace relation files
|
|
|
|
|
|
return order_items;
|
|
}
|
|
|
|
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 order_items = await db.order_items.findByPk(id, {}, {transaction});
|
|
|
|
|
|
|
|
|
|
const updatePayload = {};
|
|
|
|
if (data.name_snapshot !== undefined) updatePayload.name_snapshot = data.name_snapshot;
|
|
|
|
|
|
if (data.quantity !== undefined) updatePayload.quantity = data.quantity;
|
|
|
|
|
|
if (data.unit_price !== undefined) updatePayload.unit_price = data.unit_price;
|
|
|
|
|
|
if (data.line_total !== undefined) updatePayload.line_total = data.line_total;
|
|
|
|
|
|
if (data.special_instructions !== undefined) updatePayload.special_instructions = data.special_instructions;
|
|
|
|
|
|
updatePayload.updatedById = currentUser.id;
|
|
|
|
await order_items.update(updatePayload, {transaction});
|
|
|
|
|
|
|
|
if (data.order !== undefined) {
|
|
await order_items.setOrder(
|
|
|
|
data.order,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.menu_item !== undefined) {
|
|
await order_items.setMenu_item(
|
|
|
|
data.menu_item,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
if (data.restaurants !== undefined) {
|
|
await order_items.setRestaurants(
|
|
|
|
data.restaurants,
|
|
|
|
{ transaction }
|
|
);
|
|
}
|
|
|
|
|
|
|
|
|
|
if (data.selected_modifiers !== undefined) {
|
|
await order_items.setSelected_modifiers(data.selected_modifiers, { transaction });
|
|
}
|
|
|
|
|
|
|
|
|
|
return order_items;
|
|
}
|
|
|
|
static async deleteByIds(ids, options) {
|
|
const currentUser = (options && options.currentUser) || { id: null };
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const order_items = await db.order_items.findAll({
|
|
where: {
|
|
id: {
|
|
[Op.in]: ids,
|
|
},
|
|
},
|
|
transaction,
|
|
});
|
|
|
|
await db.sequelize.transaction(async (transaction) => {
|
|
for (const record of order_items) {
|
|
await record.update(
|
|
{deletedBy: currentUser.id},
|
|
{transaction}
|
|
);
|
|
}
|
|
for (const record of order_items) {
|
|
await record.destroy({transaction});
|
|
}
|
|
});
|
|
|
|
|
|
return order_items;
|
|
}
|
|
|
|
static async remove(id, options) {
|
|
const currentUser = (options && options.currentUser) || {id: null};
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const order_items = await db.order_items.findByPk(id, options);
|
|
|
|
await order_items.update({
|
|
deletedBy: currentUser.id
|
|
}, {
|
|
transaction,
|
|
});
|
|
|
|
await order_items.destroy({
|
|
transaction
|
|
});
|
|
|
|
return order_items;
|
|
}
|
|
|
|
static async findBy(where, options) {
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
const order_items = await db.order_items.findOne(
|
|
{ where },
|
|
{ transaction },
|
|
);
|
|
|
|
if (!order_items) {
|
|
return order_items;
|
|
}
|
|
|
|
const output = order_items.get({plain: true});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.order_item_modifiers_order_item = await order_items.getOrder_item_modifiers_order_item({
|
|
transaction
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
output.order = await order_items.getOrder({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.menu_item = await order_items.getMenu_item({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.selected_modifiers = await order_items.getSelected_modifiers({
|
|
transaction
|
|
});
|
|
|
|
|
|
output.restaurants = await order_items.getRestaurants({
|
|
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 userRestaurants = (user && user.restaurants?.id) || null;
|
|
|
|
|
|
|
|
if (userRestaurants) {
|
|
if (options?.currentUser?.restaurantsId) {
|
|
where.restaurantsId = options.currentUser.restaurantsId;
|
|
}
|
|
}
|
|
|
|
|
|
offset = currentPage * limit;
|
|
|
|
const orderBy = null;
|
|
|
|
const transaction = (options && options.transaction) || undefined;
|
|
|
|
let include = [
|
|
|
|
{
|
|
model: db.orders,
|
|
as: 'order',
|
|
|
|
where: filter.order ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.order.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
order_number: {
|
|
[Op.or]: filter.order.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.menu_items,
|
|
as: 'menu_item',
|
|
|
|
where: filter.menu_item ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: filter.menu_item.split('|').map(term => Utils.uuid(term)) } },
|
|
{
|
|
name: {
|
|
[Op.or]: filter.menu_item.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
},
|
|
]
|
|
} : {},
|
|
|
|
},
|
|
|
|
{
|
|
model: db.restaurants,
|
|
as: 'restaurants',
|
|
|
|
},
|
|
|
|
|
|
{
|
|
model: db.order_item_modifiers,
|
|
as: 'selected_modifiers',
|
|
required: false,
|
|
},
|
|
|
|
|
|
];
|
|
|
|
if (filter) {
|
|
if (filter.id) {
|
|
where = {
|
|
...where,
|
|
['id']: Utils.uuid(filter.id),
|
|
};
|
|
}
|
|
|
|
|
|
if (filter.name_snapshot) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'order_items',
|
|
'name_snapshot',
|
|
filter.name_snapshot,
|
|
),
|
|
};
|
|
}
|
|
|
|
if (filter.special_instructions) {
|
|
where = {
|
|
...where,
|
|
[Op.and]: Utils.ilike(
|
|
'order_items',
|
|
'special_instructions',
|
|
filter.special_instructions,
|
|
),
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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_priceRange) {
|
|
const [start, end] = filter.unit_priceRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
unit_price: {
|
|
...where.unit_price,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
unit_price: {
|
|
...where.unit_price,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
if (filter.line_totalRange) {
|
|
const [start, end] = filter.line_totalRange;
|
|
|
|
if (start !== undefined && start !== null && start !== '') {
|
|
where = {
|
|
...where,
|
|
line_total: {
|
|
...where.line_total,
|
|
[Op.gte]: start,
|
|
},
|
|
};
|
|
}
|
|
|
|
if (end !== undefined && end !== null && end !== '') {
|
|
where = {
|
|
...where,
|
|
line_total: {
|
|
...where.line_total,
|
|
[Op.lte]: end,
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
|
|
if (filter.active !== undefined) {
|
|
where = {
|
|
...where,
|
|
active: filter.active === true || filter.active === 'true'
|
|
};
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (filter.restaurants) {
|
|
const listItems = filter.restaurants.split('|').map(item => {
|
|
return Utils.uuid(item)
|
|
});
|
|
|
|
where = {
|
|
...where,
|
|
restaurantsId: {[Op.or]: listItems}
|
|
};
|
|
}
|
|
|
|
|
|
|
|
if (filter.selected_modifiers) {
|
|
const searchTerms = filter.selected_modifiers.split('|');
|
|
|
|
include = [
|
|
{
|
|
model: db.order_item_modifiers,
|
|
as: 'selected_modifiers_filter',
|
|
required: searchTerms.length > 0,
|
|
where: searchTerms.length > 0 ? {
|
|
[Op.or]: [
|
|
{ id: { [Op.in]: searchTerms.map(term => Utils.uuid(term)) } },
|
|
{
|
|
name_snapshot: {
|
|
[Op.or]: searchTerms.map(term => ({ [Op.iLike]: `%${term}%` }))
|
|
}
|
|
}
|
|
]
|
|
} : undefined
|
|
},
|
|
...include,
|
|
]
|
|
}
|
|
|
|
|
|
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.restaurantsId;
|
|
}
|
|
|
|
|
|
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.order_items.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(
|
|
'order_items',
|
|
'name_snapshot',
|
|
query,
|
|
),
|
|
],
|
|
};
|
|
}
|
|
|
|
const records = await db.order_items.findAll({
|
|
attributes: [ 'id', 'name_snapshot' ],
|
|
where,
|
|
limit: limit ? Number(limit) : undefined,
|
|
offset: offset ? Number(offset) : undefined,
|
|
orderBy: [['name_snapshot', 'ASC']],
|
|
});
|
|
|
|
return records.map((record) => ({
|
|
id: record.id,
|
|
label: record.name_snapshot,
|
|
}));
|
|
}
|
|
|
|
|
|
};
|
|
|