37797-vm/backend/src/db/api/orders.js
2026-01-25 09:14:55 +00:00

614 lines
15 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 OrdersDBApi {
static async create(data, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const orders = await db.orders.create(
{
id: data.id || undefined,
code: data.code
||
null
,
ordered_at: data.ordered_at
||
null
,
pickup_time: data.pickup_time
||
null
,
delivery_method: data.delivery_method
||
null
,
status: data.status
||
null
,
total_amount: data.total_amount
||
null
,
paid: data.paid
||
false
,
pickup_instructions: data.pickup_instructions
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await orders.setBuyer( data.buyer || null, {
transaction,
});
await orders.setRestaurant( data.restaurant || null, {
transaction,
});
return 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 ordersData = data.map((item, index) => ({
id: item.id || undefined,
code: item.code
||
null
,
ordered_at: item.ordered_at
||
null
,
pickup_time: item.pickup_time
||
null
,
delivery_method: item.delivery_method
||
null
,
status: item.status
||
null
,
total_amount: item.total_amount
||
null
,
paid: item.paid
||
false
,
pickup_instructions: item.pickup_instructions
||
null
,
importHash: item.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
createdAt: new Date(Date.now() + index * 1000),
}));
// Bulk create items
const orders = await db.orders.bulkCreate(ordersData, { transaction });
// For each item created, replace relation files
return orders;
}
static async update(id, data, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const orders = await db.orders.findByPk(id, {}, {transaction});
const updatePayload = {};
if (data.code !== undefined) updatePayload.code = data.code;
if (data.ordered_at !== undefined) updatePayload.ordered_at = data.ordered_at;
if (data.pickup_time !== undefined) updatePayload.pickup_time = data.pickup_time;
if (data.delivery_method !== undefined) updatePayload.delivery_method = data.delivery_method;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.total_amount !== undefined) updatePayload.total_amount = data.total_amount;
if (data.paid !== undefined) updatePayload.paid = data.paid;
if (data.pickup_instructions !== undefined) updatePayload.pickup_instructions = data.pickup_instructions;
updatePayload.updatedById = currentUser.id;
await orders.update(updatePayload, {transaction});
if (data.buyer !== undefined) {
await orders.setBuyer(
data.buyer,
{ transaction }
);
}
if (data.restaurant !== undefined) {
await orders.setRestaurant(
data.restaurant,
{ transaction }
);
}
return orders;
}
static async deleteByIds(ids, options) {
const currentUser = (options && options.currentUser) || { id: null };
const transaction = (options && options.transaction) || undefined;
const orders = await db.orders.findAll({
where: {
id: {
[Op.in]: ids,
},
},
transaction,
});
await db.sequelize.transaction(async (transaction) => {
for (const record of orders) {
await record.update(
{deletedBy: currentUser.id},
{transaction}
);
}
for (const record of orders) {
await record.destroy({transaction});
}
});
return orders;
}
static async remove(id, options) {
const currentUser = (options && options.currentUser) || {id: null};
const transaction = (options && options.transaction) || undefined;
const orders = await db.orders.findByPk(id, options);
await orders.update({
deletedBy: currentUser.id
}, {
transaction,
});
await orders.destroy({
transaction
});
return orders;
}
static async findBy(where, options) {
const transaction = (options && options.transaction) || undefined;
const orders = await db.orders.findOne(
{ where },
{ transaction },
);
if (!orders) {
return orders;
}
const output = orders.get({plain: true});
output.order_items_order = await orders.getOrder_items_order({
transaction
});
output.payments_order = await orders.getPayments_order({
transaction
});
output.buyer = await orders.getBuyer({
transaction
});
output.restaurant = await orders.getRestaurant({
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.users,
as: 'buyer',
where: filter.buyer ? {
[Op.or]: [
{ id: { [Op.in]: filter.buyer.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.buyer.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.restaurants,
as: 'restaurant',
where: filter.restaurant ? {
[Op.or]: [
{ id: { [Op.in]: filter.restaurant.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.restaurant.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.code) {
where = {
...where,
[Op.and]: Utils.ilike(
'orders',
'code',
filter.code,
),
};
}
if (filter.pickup_instructions) {
where = {
...where,
[Op.and]: Utils.ilike(
'orders',
'pickup_instructions',
filter.pickup_instructions,
),
};
}
if (filter.ordered_atRange) {
const [start, end] = filter.ordered_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
ordered_at: {
...where.ordered_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
ordered_at: {
...where.ordered_at,
[Op.lte]: end,
},
};
}
}
if (filter.pickup_timeRange) {
const [start, end] = filter.pickup_timeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
pickup_time: {
...where.pickup_time,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
pickup_time: {
...where.pickup_time,
[Op.lte]: end,
},
};
}
}
if (filter.total_amountRange) {
const [start, end] = filter.total_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
total_amount: {
...where.total_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
total_amount: {
...where.total_amount,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.delivery_method) {
where = {
...where,
delivery_method: filter.delivery_method,
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.paid) {
where = {
...where,
paid: filter.paid,
};
}
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.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(
'orders',
'code',
query,
),
],
};
}
const records = await db.orders.findAll({
attributes: [ 'id', 'code' ],
where,
limit: limit ? Number(limit) : undefined,
offset: offset ? Number(offset) : undefined,
orderBy: [['code', 'ASC']],
});
return records.map((record) => ({
id: record.id,
label: record.code,
}));
}
};