salix/modules/ticket/back/methods/sale/clone.js

126 lines
4.3 KiB
JavaScript
Raw Normal View History

2023-07-31 08:33:51 +00:00
module.exports = Self => {
Self.clone = async(ctx, salesIds, servicesIds, withWarehouse, group, negative, options) => {
2023-07-31 08:33:51 +00:00
const models = Self.app.models;
2023-08-01 14:13:24 +00:00
const myOptions = {};
let tx;
2023-10-26 07:20:25 +00:00
const newTickets = [];
2023-07-28 13:21:43 +00:00
2023-08-01 14:13:24 +00:00
if (typeof options == 'object')
Object.assign(myOptions, options);
if (!myOptions.transaction) {
tx = await Self.beginTransaction({});
myOptions.transaction = tx;
2023-07-28 13:21:43 +00:00
}
try {
2023-08-24 08:51:34 +00:00
const salesFilter = {
where: {id: {inq: salesIds}},
include: {
relation: 'components',
scope: {
fields: ['saleFk', 'componentFk', 'value']
}
2023-08-24 08:51:34 +00:00
}
};
const sales = await models.Sale.find(salesFilter, myOptions);
let ticketsIds = [...new Set(sales.map(sale => sale.ticketFk))];
2023-07-28 13:21:43 +00:00
2023-08-24 08:51:34 +00:00
const mappedTickets = new Map();
if (group) ticketsIds = [ticketsIds[0]];
2023-09-26 10:42:45 +00:00
for (let ticketId of ticketsIds) {
2023-10-26 07:20:25 +00:00
const newTicket = await createTicket(
ctx,
2023-09-26 10:42:45 +00:00
ticketId,
2023-08-24 08:51:34 +00:00
withWarehouse,
2023-10-26 07:20:25 +00:00
negative,
2023-08-24 08:51:34 +00:00
myOptions
);
2023-10-26 07:20:25 +00:00
newTickets.push(newTicket);
mappedTickets.set(ticketId, newTicket.id);
}
2023-08-24 08:51:34 +00:00
for (const sale of sales) {
2024-01-03 14:36:39 +00:00
const newTicketId = group ? ticketsIds : mappedTickets.get(sale.ticketFk);
2023-08-24 08:51:34 +00:00
const createdSale = await models.Sale.create({
2023-10-26 07:20:25 +00:00
ticketFk: newTicketId,
2023-08-24 08:51:34 +00:00
itemFk: sale.itemFk,
quantity: negative ? - sale.quantity : sale.quantity,
concept: sale.concept,
price: sale.price,
discount: sale.discount,
}, myOptions);
const components = sale.components();
for (const component of components)
component.saleFk = createdSale.id;
await models.SaleComponent.create(components, myOptions);
}
2023-09-25 13:23:51 +00:00
if (servicesIds && servicesIds.length) {
const servicesFilter = {
where: {id: {inq: servicesIds}}
};
const services = await models.TicketService.find(servicesFilter, myOptions);
2023-08-24 08:51:34 +00:00
for (const service of services) {
2023-10-26 07:20:25 +00:00
const newTicketId = mappedTickets.get(service.ticketFk);
2023-08-24 08:51:34 +00:00
await models.TicketService.create({
description: service.description,
2023-08-24 08:51:34 +00:00
quantity: negative ? - service.quantity : service.quantity,
price: service.price,
taxClassFk: service.taxClassFk,
2023-10-26 07:20:25 +00:00
ticketFk: newTicketId,
ticketServiceTypeFk: service.ticketServiceTypeFk,
}, myOptions);
}
}
2023-07-28 13:21:43 +00:00
2023-08-24 08:51:34 +00:00
if (tx) await tx.commit();
2023-07-28 13:21:43 +00:00
2023-10-26 07:20:25 +00:00
return newTickets;
} catch (e) {
if (tx) await tx.rollback();
throw e;
2023-07-28 13:21:43 +00:00
}
2023-08-24 08:51:34 +00:00
2023-10-26 07:20:25 +00:00
async function createTicket(
2023-09-26 10:42:45 +00:00
ctx,
ticketId,
withWarehouse,
2023-10-26 07:20:25 +00:00
negative,
2023-09-26 10:42:45 +00:00
myOptions
) {
const models = Self.app.models;
const now = Date.vnNew();
2023-08-24 08:51:34 +00:00
2023-09-26 10:42:45 +00:00
const ticket = await models.Ticket.findById(ticketId, null, myOptions);
ctx.args.clientId = ticket.clientFk;
ctx.args.shipped = now;
ctx.args.landed = now;
ctx.args.warehouseId = withWarehouse ? ticket.warehouseFk : null;
ctx.args.companyId = ticket.companyFk;
ctx.args.addressId = ticket.addressFk;
2023-08-24 08:51:34 +00:00
const newTicket = await models.Ticket.new(ctx, myOptions);
2023-10-26 07:20:25 +00:00
const ticketRefund = await models.TicketRefund.findOne({
where: {refundTicketFk: ticketId}
}, myOptions);
if (negative && (withWarehouse || !ticketRefund?.id)) {
2023-10-26 07:20:25 +00:00
await models.TicketRefund.create({
originalTicketFk: ticketId,
refundTicketFk: newTicket.id
}, myOptions);
}
return newTicket;
2023-09-26 10:42:45 +00:00
}
};
2023-07-28 13:21:43 +00:00
};