39332-vm/backend/src/db/api/orders.js
2026-03-26 16:49:47 +00:00

878 lines
22 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,
order_number: data.order_number
||
null
,
status: data.status
||
null
,
fulfillment_method: data.fulfillment_method
||
null
,
subtotal_amount: data.subtotal_amount
||
null
,
discount_amount: data.discount_amount
||
null
,
tax_amount: data.tax_amount
||
null
,
delivery_fee: data.delivery_fee
||
null
,
total_amount: data.total_amount
||
null
,
payment_status: data.payment_status
||
null
,
customer_note: data.customer_note
||
null
,
placed_at: data.placed_at
||
null
,
fulfilled_at: data.fulfilled_at
||
null
,
importHash: data.importHash || null,
createdById: currentUser.id,
updatedById: currentUser.id,
},
{ transaction },
);
await orders.setUser( data.user || null, {
transaction,
});
await orders.setDelivery_slot( data.delivery_slot || null, {
transaction,
});
await orders.setDelivery_address( data.delivery_address || null, {
transaction,
});
await orders.setBilling_address( data.billing_address || null, {
transaction,
});
await orders.setDiscount_code( data.discount_code || 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,
order_number: item.order_number
||
null
,
status: item.status
||
null
,
fulfillment_method: item.fulfillment_method
||
null
,
subtotal_amount: item.subtotal_amount
||
null
,
discount_amount: item.discount_amount
||
null
,
tax_amount: item.tax_amount
||
null
,
delivery_fee: item.delivery_fee
||
null
,
total_amount: item.total_amount
||
null
,
payment_status: item.payment_status
||
null
,
customer_note: item.customer_note
||
null
,
placed_at: item.placed_at
||
null
,
fulfilled_at: item.fulfilled_at
||
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.order_number !== undefined) updatePayload.order_number = data.order_number;
if (data.status !== undefined) updatePayload.status = data.status;
if (data.fulfillment_method !== undefined) updatePayload.fulfillment_method = data.fulfillment_method;
if (data.subtotal_amount !== undefined) updatePayload.subtotal_amount = data.subtotal_amount;
if (data.discount_amount !== undefined) updatePayload.discount_amount = data.discount_amount;
if (data.tax_amount !== undefined) updatePayload.tax_amount = data.tax_amount;
if (data.delivery_fee !== undefined) updatePayload.delivery_fee = data.delivery_fee;
if (data.total_amount !== undefined) updatePayload.total_amount = data.total_amount;
if (data.payment_status !== undefined) updatePayload.payment_status = data.payment_status;
if (data.customer_note !== undefined) updatePayload.customer_note = data.customer_note;
if (data.placed_at !== undefined) updatePayload.placed_at = data.placed_at;
if (data.fulfilled_at !== undefined) updatePayload.fulfilled_at = data.fulfilled_at;
updatePayload.updatedById = currentUser.id;
await orders.update(updatePayload, {transaction});
if (data.user !== undefined) {
await orders.setUser(
data.user,
{ transaction }
);
}
if (data.delivery_slot !== undefined) {
await orders.setDelivery_slot(
data.delivery_slot,
{ transaction }
);
}
if (data.delivery_address !== undefined) {
await orders.setDelivery_address(
data.delivery_address,
{ transaction }
);
}
if (data.billing_address !== undefined) {
await orders.setBilling_address(
data.billing_address,
{ transaction }
);
}
if (data.discount_code !== undefined) {
await orders.setDiscount_code(
data.discount_code,
{ 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.user = await orders.getUser({
transaction
});
output.delivery_slot = await orders.getDelivery_slot({
transaction
});
output.delivery_address = await orders.getDelivery_address({
transaction
});
output.billing_address = await orders.getBilling_address({
transaction
});
output.discount_code = await orders.getDiscount_code({
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: 'user',
where: filter.user ? {
[Op.or]: [
{ id: { [Op.in]: filter.user.split('|').map(term => Utils.uuid(term)) } },
{
firstName: {
[Op.or]: filter.user.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.delivery_slots,
as: 'delivery_slot',
where: filter.delivery_slot ? {
[Op.or]: [
{ id: { [Op.in]: filter.delivery_slot.split('|').map(term => Utils.uuid(term)) } },
{
name: {
[Op.or]: filter.delivery_slot.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.addresses,
as: 'delivery_address',
where: filter.delivery_address ? {
[Op.or]: [
{ id: { [Op.in]: filter.delivery_address.split('|').map(term => Utils.uuid(term)) } },
{
label: {
[Op.or]: filter.delivery_address.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.addresses,
as: 'billing_address',
where: filter.billing_address ? {
[Op.or]: [
{ id: { [Op.in]: filter.billing_address.split('|').map(term => Utils.uuid(term)) } },
{
label: {
[Op.or]: filter.billing_address.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
{
model: db.discount_codes,
as: 'discount_code',
where: filter.discount_code ? {
[Op.or]: [
{ id: { [Op.in]: filter.discount_code.split('|').map(term => Utils.uuid(term)) } },
{
code: {
[Op.or]: filter.discount_code.split('|').map(term => ({ [Op.iLike]: `%${term}%` }))
}
},
]
} : {},
},
];
if (filter) {
if (filter.id) {
where = {
...where,
['id']: Utils.uuid(filter.id),
};
}
if (filter.order_number) {
where = {
...where,
[Op.and]: Utils.ilike(
'orders',
'order_number',
filter.order_number,
),
};
}
if (filter.customer_note) {
where = {
...where,
[Op.and]: Utils.ilike(
'orders',
'customer_note',
filter.customer_note,
),
};
}
if (filter.subtotal_amountRange) {
const [start, end] = filter.subtotal_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
subtotal_amount: {
...where.subtotal_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
subtotal_amount: {
...where.subtotal_amount,
[Op.lte]: end,
},
};
}
}
if (filter.discount_amountRange) {
const [start, end] = filter.discount_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
discount_amount: {
...where.discount_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
discount_amount: {
...where.discount_amount,
[Op.lte]: end,
},
};
}
}
if (filter.tax_amountRange) {
const [start, end] = filter.tax_amountRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
tax_amount: {
...where.tax_amount,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
tax_amount: {
...where.tax_amount,
[Op.lte]: end,
},
};
}
}
if (filter.delivery_feeRange) {
const [start, end] = filter.delivery_feeRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
delivery_fee: {
...where.delivery_fee,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
delivery_fee: {
...where.delivery_fee,
[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.placed_atRange) {
const [start, end] = filter.placed_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
placed_at: {
...where.placed_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
placed_at: {
...where.placed_at,
[Op.lte]: end,
},
};
}
}
if (filter.fulfilled_atRange) {
const [start, end] = filter.fulfilled_atRange;
if (start !== undefined && start !== null && start !== '') {
where = {
...where,
fulfilled_at: {
...where.fulfilled_at,
[Op.gte]: start,
},
};
}
if (end !== undefined && end !== null && end !== '') {
where = {
...where,
fulfilled_at: {
...where.fulfilled_at,
[Op.lte]: end,
},
};
}
}
if (filter.active !== undefined) {
where = {
...where,
active: filter.active === true || filter.active === 'true'
};
}
if (filter.status) {
where = {
...where,
status: filter.status,
};
}
if (filter.fulfillment_method) {
where = {
...where,
fulfillment_method: filter.fulfillment_method,
};
}
if (filter.payment_status) {
where = {
...where,
payment_status: filter.payment_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.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',
'order_number',
query,
),
],
};
}
const records = await db.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,
}));
}
};