Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into 4002-item.itemType
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
commit
9bbdeb2840
|
@ -2,49 +2,64 @@ DROP PROCEDURE IF EXISTS vn.ticket_doRefund;
|
||||||
|
|
||||||
DELIMITER $$
|
DELIMITER $$
|
||||||
$$
|
$$
|
||||||
CREATE DEFINER=`root`@`localhost` PROCEDURE `vn`.`ticket_doRefund`(IN vOriginTicket INT, OUT vNewTicket INT)
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `vn`.`ticket_doRefund`(OUT vNewTicket INT)
|
||||||
BEGIN
|
BEGIN
|
||||||
|
/**
|
||||||
|
* Crea un ticket de abono a partir de tmp.sale y/o tmp.ticketService
|
||||||
|
*
|
||||||
|
* @return vNewTicket
|
||||||
|
*/
|
||||||
DECLARE vDone BIT DEFAULT 0;
|
DECLARE vDone BIT DEFAULT 0;
|
||||||
DECLARE vCustomer MEDIUMINT;
|
DECLARE vClientFk MEDIUMINT;
|
||||||
DECLARE vWarehouse TINYINT;
|
DECLARE vWarehouse TINYINT;
|
||||||
DECLARE vCompany MEDIUMINT;
|
DECLARE vCompany MEDIUMINT;
|
||||||
DECLARE vAddress MEDIUMINT;
|
DECLARE vAddress MEDIUMINT;
|
||||||
DECLARE vRefundAgencyMode INT;
|
DECLARE vRefundAgencyMode INT;
|
||||||
DECLARE vItemFk INT;
|
DECLARE vItemFk INT;
|
||||||
DECLARE vQuantity DECIMAL (10,2);
|
DECLARE vQuantity DECIMAL (10,2);
|
||||||
DECLARE vConcept VARCHAR(50);
|
DECLARE vConcept VARCHAR(50);
|
||||||
DECLARE vPrice DECIMAL (10,2);
|
DECLARE vPrice DECIMAL (10,2);
|
||||||
DECLARE vDiscount TINYINT;
|
DECLARE vDiscount TINYINT;
|
||||||
DECLARE vSaleNew INT;
|
DECLARE vSaleNew INT;
|
||||||
DECLARE vSaleMain INT;
|
DECLARE vSaleMain INT;
|
||||||
DECLARE vZoneFk INT;
|
DECLARE vZoneFk INT;
|
||||||
DECLARE vDescription VARCHAR(50);
|
DECLARE vDescription VARCHAR(50);
|
||||||
DECLARE vTaxClassFk INT;
|
DECLARE vTaxClassFk INT;
|
||||||
DECLARE vTicketServiceTypeFk INT;
|
DECLARE vTicketServiceTypeFk INT;
|
||||||
|
DECLARE vOriginTicket INT;
|
||||||
DECLARE cSales CURSOR FOR
|
|
||||||
SELECT *
|
DECLARE cSales CURSOR FOR
|
||||||
FROM tmp.sale;
|
SELECT s.id, s.itemFk, - s.quantity, s.concept, s.price, s.discount
|
||||||
|
FROM tmp.sale s;
|
||||||
|
|
||||||
DECLARE cTicketServices CURSOR FOR
|
DECLARE cTicketServices CURSOR FOR
|
||||||
SELECT *
|
SELECT ts.description, - ts.quantity, ts.price, ts.taxClassFk, ts.ticketServiceTypeFk
|
||||||
FROM tmp.ticketService;
|
FROM tmp.ticketService ts;
|
||||||
|
|
||||||
DECLARE CONTINUE HANDLER FOR NOT FOUND SET vDone = 1;
|
DECLARE CONTINUE HANDLER FOR NOT FOUND SET vDone = TRUE;
|
||||||
|
|
||||||
SELECT id INTO vRefundAgencyMode
|
SELECT sub.ticketFk INTO vOriginTicket
|
||||||
|
FROM (
|
||||||
|
SELECT s.ticketFk
|
||||||
|
FROM tmp.sale s
|
||||||
|
UNION ALL
|
||||||
|
SELECT ts.ticketFk
|
||||||
|
FROM tmp.ticketService ts
|
||||||
|
) sub
|
||||||
|
LIMIT 1;
|
||||||
|
|
||||||
|
SELECT id INTO vRefundAgencyMode
|
||||||
FROM agencyMode WHERE `name` = 'ABONO';
|
FROM agencyMode WHERE `name` = 'ABONO';
|
||||||
|
|
||||||
SELECT clientFk, warehouseFk, companyFk, addressFk
|
SELECT clientFk, warehouseFk, companyFk, addressFk
|
||||||
INTO vCustomer, vWarehouse, vCompany, vAddress
|
INTO vClientFk, vWarehouse, vCompany, vAddress
|
||||||
FROM ticket
|
FROM ticket
|
||||||
WHERE id = vOriginTicket;
|
WHERE id = vOriginTicket;
|
||||||
|
|
||||||
SELECT id INTO vZoneFk
|
SELECT id INTO vZoneFk
|
||||||
FROM zone WHERE agencyModeFk = vRefundAgencyMode
|
FROM zone WHERE agencyModeFk = vRefundAgencyMode
|
||||||
LIMIT 1;
|
LIMIT 1;
|
||||||
|
|
||||||
INSERT INTO vn.ticket (
|
INSERT INTO vn.ticket (
|
||||||
clientFk,
|
clientFk,
|
||||||
shipped,
|
shipped,
|
||||||
|
@ -54,10 +69,10 @@ BEGIN
|
||||||
warehouseFk,
|
warehouseFk,
|
||||||
companyFk,
|
companyFk,
|
||||||
landed,
|
landed,
|
||||||
zoneFk
|
zoneFk
|
||||||
)
|
)
|
||||||
SELECT
|
SELECT
|
||||||
vCustomer,
|
vClientFk,
|
||||||
CURDATE(),
|
CURDATE(),
|
||||||
vAddress,
|
vAddress,
|
||||||
vRefundAgencyMode,
|
vRefundAgencyMode,
|
||||||
|
@ -65,49 +80,48 @@ BEGIN
|
||||||
vWarehouse,
|
vWarehouse,
|
||||||
vCompany,
|
vCompany,
|
||||||
CURDATE(),
|
CURDATE(),
|
||||||
vZoneFk
|
vZoneFk
|
||||||
FROM address a
|
FROM address a
|
||||||
WHERE a.id = vAddress;
|
WHERE a.id = vAddress;
|
||||||
|
|
||||||
SET vNewTicket = LAST_INSERT_ID();
|
SET vNewTicket = LAST_INSERT_ID();
|
||||||
|
|
||||||
SET vDone := 0;
|
SET vDone := FALSE;
|
||||||
OPEN cSales;
|
OPEN cSales;
|
||||||
FETCH cSales INTO vSaleMain, vItemFk, vQuantity, vConcept, vPrice, vDiscount;
|
FETCH cSales INTO vSaleMain, vItemFk, vQuantity, vConcept, vPrice, vDiscount;
|
||||||
|
|
||||||
WHILE NOT vDone DO
|
WHILE NOT vDone DO
|
||||||
|
|
||||||
INSERT INTO vn.sale(ticketFk, itemFk, quantity, concept, price, discount)
|
INSERT INTO vn.sale(ticketFk, itemFk, quantity, concept, price, discount)
|
||||||
VALUES( vNewTicket, vItemFk, vQuantity, vConcept, vPrice, vDiscount );
|
VALUES( vNewTicket, vItemFk, vQuantity, vConcept, vPrice, vDiscount );
|
||||||
|
|
||||||
SET vSaleNew = LAST_INSERT_ID();
|
SET vSaleNew = LAST_INSERT_ID();
|
||||||
|
|
||||||
INSERT INTO vn.saleComponent(saleFk,componentFk,`value`)
|
INSERT INTO vn.saleComponent(saleFk,componentFk,`value`)
|
||||||
SELECT vSaleNew,componentFk,`value`
|
SELECT vSaleNew,componentFk,`value`
|
||||||
FROM vn.saleComponent
|
FROM vn.saleComponent
|
||||||
WHERE saleFk = vSaleMain;
|
WHERE saleFk = vSaleMain;
|
||||||
|
|
||||||
FETCH cSales INTO vSaleMain, vItemFk, vQuantity, vConcept, vPrice, vDiscount;
|
FETCH cSales INTO vSaleMain, vItemFk, vQuantity, vConcept, vPrice, vDiscount;
|
||||||
|
|
||||||
END WHILE;
|
END WHILE;
|
||||||
CLOSE cSales;
|
CLOSE cSales;
|
||||||
|
|
||||||
SET vDone := 0;
|
SET vDone := FALSE;
|
||||||
OPEN cTicketServices;
|
OPEN cTicketServices;
|
||||||
FETCH cTicketServices INTO vDescription, vQuantity, vPrice, vTaxClassFk, vTicketServiceTypeFk;
|
FETCH cTicketServices INTO vDescription, vQuantity, vPrice, vTaxClassFk, vTicketServiceTypeFk;
|
||||||
|
|
||||||
WHILE NOT vDone DO
|
WHILE NOT vDone DO
|
||||||
|
|
||||||
INSERT INTO vn.ticketService(description, quantity, price, taxClassFk, ticketFk, ticketServiceTypeFk)
|
INSERT INTO vn.ticketService(description, quantity, price, taxClassFk, ticketFk, ticketServiceTypeFk)
|
||||||
VALUES(vDescription, vQuantity, vPrice, vTaxClassFk, vNewTicket, vTicketServiceTypeFk);
|
VALUES(vDescription, vQuantity, vPrice, vTaxClassFk, vNewTicket, vTicketServiceTypeFk);
|
||||||
|
|
||||||
FETCH cTicketServices INTO vDescription, vQuantity, vPrice, vTaxClassFk, vTicketServiceTypeFk;
|
FETCH cTicketServices INTO vDescription, vQuantity, vPrice, vTaxClassFk, vTicketServiceTypeFk;
|
||||||
|
|
||||||
END WHILE;
|
END WHILE;
|
||||||
CLOSE cTicketServices;
|
CLOSE cTicketServices;
|
||||||
|
|
||||||
INSERT INTO vn.ticketRefund(refundTicketFk, originalTicketFk)
|
INSERT INTO vn.ticketRefund(refundTicketFk, originalTicketFk)
|
||||||
VALUES(vNewTicket, vOriginTicket);
|
VALUES(vNewTicket, vOriginTicket);
|
||||||
|
|
||||||
END$$
|
END$$
|
||||||
DELIMITER ;
|
DELIMITER ;
|
||||||
|
|
|
@ -76,6 +76,13 @@
|
||||||
translate>
|
translate>
|
||||||
Show CITES letter
|
Show CITES letter
|
||||||
</vn-item>
|
</vn-item>
|
||||||
|
<vn-item
|
||||||
|
ng-click="refundConfirmation.show()"
|
||||||
|
name="refundInvoice"
|
||||||
|
vn-tooltip="Create a single ticket with all the content of the current invoice"
|
||||||
|
translate>
|
||||||
|
Refund
|
||||||
|
</vn-item>
|
||||||
</vn-list>
|
</vn-list>
|
||||||
</vn-menu>
|
</vn-menu>
|
||||||
<vn-confirm
|
<vn-confirm
|
||||||
|
@ -88,6 +95,11 @@
|
||||||
on-accept="$ctrl.bookInvoiceOut()"
|
on-accept="$ctrl.bookInvoiceOut()"
|
||||||
question="Are you sure you want to book this invoice?">
|
question="Are you sure you want to book this invoice?">
|
||||||
</vn-confirm>
|
</vn-confirm>
|
||||||
|
<vn-confirm
|
||||||
|
vn-id="refundConfirmation"
|
||||||
|
on-accept="$ctrl.refundInvoiceOut()"
|
||||||
|
question="Are you sure you want to refund this invoice?">
|
||||||
|
</vn-confirm>
|
||||||
<vn-client-descriptor-popover
|
<vn-client-descriptor-popover
|
||||||
vn-id="clientDescriptor">
|
vn-id="clientDescriptor">
|
||||||
</vn-client-descriptor-popover>
|
</vn-client-descriptor-popover>
|
||||||
|
|
|
@ -116,6 +116,35 @@ class Controller extends Section {
|
||||||
invoiceId: this.id
|
invoiceId: this.id
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
async refundInvoiceOut() {
|
||||||
|
let filter = {
|
||||||
|
where: {refFk: this.invoiceOut.ref}
|
||||||
|
};
|
||||||
|
const tickets = await this.$http.get('Tickets', {filter});
|
||||||
|
this.tickets = tickets.data;
|
||||||
|
this.ticketsIds = [];
|
||||||
|
for (let ticket of this.tickets)
|
||||||
|
this.ticketsIds.push(ticket.id);
|
||||||
|
|
||||||
|
filter = {
|
||||||
|
where: {ticketFk: {inq: this.ticketsIds}}
|
||||||
|
};
|
||||||
|
const sales = await this.$http.get('Sales', {filter});
|
||||||
|
this.sales = sales.data;
|
||||||
|
|
||||||
|
const ticketServices = await this.$http.get('TicketServices', {filter});
|
||||||
|
this.services = ticketServices.data;
|
||||||
|
|
||||||
|
const params = {
|
||||||
|
sales: this.sales,
|
||||||
|
services: this.services
|
||||||
|
};
|
||||||
|
const query = `Sales/refund`;
|
||||||
|
return this.$http.post(query, params).then(res => {
|
||||||
|
this.$state.go('ticket.card.sale', {id: res.data});
|
||||||
|
});
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Controller.$inject = ['$element', '$scope', 'vnReport', 'vnEmail'];
|
Controller.$inject = ['$element', '$scope', 'vnReport', 'vnEmail'];
|
||||||
|
|
|
@ -122,4 +122,34 @@ describe('vnInvoiceOutDescriptorMenu', () => {
|
||||||
expect(controller.vnApp.showMessage).toHaveBeenCalled();
|
expect(controller.vnApp.showMessage).toHaveBeenCalled();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
// #4084 review with Juan
|
||||||
|
xdescribe('refundInvoiceOut()', () => {
|
||||||
|
it('should make a query and go to ticket.card.sale', () => {
|
||||||
|
controller.$state.go = jest.fn();
|
||||||
|
|
||||||
|
const invoiceOut = {
|
||||||
|
id: 1,
|
||||||
|
ref: 'T1111111'
|
||||||
|
};
|
||||||
|
controller.invoiceOut = invoiceOut;
|
||||||
|
const tickets = [{id: 1}];
|
||||||
|
const sales = [{id: 1}];
|
||||||
|
const services = [{id: 2}];
|
||||||
|
|
||||||
|
$httpBackend.expectGET(`Tickets`).respond(tickets);
|
||||||
|
$httpBackend.expectGET(`Sales`).respond(sales);
|
||||||
|
$httpBackend.expectGET(`TicketServices`).respond(services);
|
||||||
|
|
||||||
|
const expectedParams = {
|
||||||
|
sales: sales,
|
||||||
|
services: services
|
||||||
|
};
|
||||||
|
$httpBackend.expectPOST(`Sales/refund`, expectedParams).respond();
|
||||||
|
controller.refundInvoiceOut();
|
||||||
|
$httpBackend.flush();
|
||||||
|
|
||||||
|
expect(controller.$state.go).toHaveBeenCalledWith('ticket.card.sale', {id: undefined});
|
||||||
|
});
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -12,6 +12,8 @@ Are you sure you want to delete this invoice?: Estas seguro de eliminar esta fac
|
||||||
Are you sure you want to clone this invoice?: Estas seguro de clonar esta factura?
|
Are you sure you want to clone this invoice?: Estas seguro de clonar esta factura?
|
||||||
InvoiceOut booked: Factura asentada
|
InvoiceOut booked: Factura asentada
|
||||||
Are you sure you want to book this invoice?: Estas seguro de querer asentar esta factura?
|
Are you sure you want to book this invoice?: Estas seguro de querer asentar esta factura?
|
||||||
|
Are you sure you want to refund this invoice?: Estas seguro de querer abonar esta factura?
|
||||||
|
Create a single ticket with all the content of the current invoice: Crear un ticket unico con todo el contenido de la factura actual
|
||||||
Regenerate PDF invoice: Regenerar PDF factura
|
Regenerate PDF invoice: Regenerar PDF factura
|
||||||
The invoice PDF document has been regenerated: El documento PDF de la factura ha sido regenerado
|
The invoice PDF document has been regenerated: El documento PDF de la factura ha sido regenerado
|
||||||
The email can't be empty: El correo no puede estar vacío
|
The email can't be empty: El correo no puede estar vacío
|
||||||
|
|
|
@ -2,19 +2,19 @@ const UserError = require('vn-loopback/util/user-error');
|
||||||
|
|
||||||
module.exports = Self => {
|
module.exports = Self => {
|
||||||
Self.remoteMethodCtx('refund', {
|
Self.remoteMethodCtx('refund', {
|
||||||
description: 'Create ticket with the selected lines changing the sign to the quantites',
|
description: 'Create ticket refund with lines and services changing the sign to the quantites',
|
||||||
accessType: 'WRITE',
|
accessType: 'WRITE',
|
||||||
accepts: [{
|
accepts: [{
|
||||||
arg: 'sales',
|
arg: 'sales',
|
||||||
description: 'The sales',
|
description: 'The sales',
|
||||||
type: ['object'],
|
type: ['object'],
|
||||||
required: true
|
required: false
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
arg: 'ticketId',
|
arg: 'services',
|
||||||
type: 'number',
|
type: ['object'],
|
||||||
required: true,
|
required: false,
|
||||||
description: 'The ticket id'
|
description: 'The services'
|
||||||
}],
|
}],
|
||||||
returns: {
|
returns: {
|
||||||
type: 'number',
|
type: 'number',
|
||||||
|
@ -26,7 +26,7 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
Self.refund = async(ctx, sales, ticketId, options) => {
|
Self.refund = async(ctx, sales, services, options) => {
|
||||||
const myOptions = {};
|
const myOptions = {};
|
||||||
let tx;
|
let tx;
|
||||||
|
|
||||||
|
@ -39,7 +39,6 @@ module.exports = Self => {
|
||||||
}
|
}
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const salesIds = [];
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
const userId = ctx.req.accessToken.userId;
|
||||||
|
|
||||||
const isClaimManager = await Self.app.models.Account.hasRole(userId, 'claimManager');
|
const isClaimManager = await Self.app.models.Account.hasRole(userId, 'claimManager');
|
||||||
|
@ -49,39 +48,47 @@ module.exports = Self => {
|
||||||
if (!hasValidRole)
|
if (!hasValidRole)
|
||||||
throw new UserError(`You don't have privileges to create refund`);
|
throw new UserError(`You don't have privileges to create refund`);
|
||||||
|
|
||||||
for (let sale of sales)
|
const salesIds = [];
|
||||||
salesIds.push(sale.id);
|
if (sales) {
|
||||||
|
for (let sale of sales)
|
||||||
|
salesIds.push(sale.id);
|
||||||
|
} else
|
||||||
|
salesIds.push(null);
|
||||||
|
|
||||||
|
const servicesIds = [];
|
||||||
|
if (services) {
|
||||||
|
for (let service of services)
|
||||||
|
servicesIds.push(service.id);
|
||||||
|
} else
|
||||||
|
servicesIds.push(null);
|
||||||
|
|
||||||
const query = `
|
const query = `
|
||||||
DROP TEMPORARY TABLE IF EXISTS tmp.sale;
|
DROP TEMPORARY TABLE IF EXISTS tmp.sale;
|
||||||
DROP TEMPORARY TABLE IF EXISTS tmp.ticketService;
|
DROP TEMPORARY TABLE IF EXISTS tmp.ticketService;
|
||||||
|
|
||||||
CREATE TEMPORARY TABLE tmp.sale
|
CREATE TEMPORARY TABLE tmp.sale
|
||||||
SELECT s.id, s.itemFk, - s.quantity, s.concept, s.price, s.discount
|
SELECT s.id, s.itemFk, s.quantity, s.concept, s.price, s.discount, s.ticketFk
|
||||||
FROM sale s
|
FROM sale s
|
||||||
WHERE s.id IN (?);
|
WHERE s.id IN (?);
|
||||||
|
|
||||||
CREATE TEMPORARY TABLE tmp.ticketService(
|
CREATE TEMPORARY TABLE tmp.ticketService
|
||||||
description VARCHAR(50),
|
SELECT ts.description, ts.quantity, ts.price, ts.taxClassFk, ts.ticketServiceTypeFk, ts.ticketFk
|
||||||
quantity DECIMAL (10,2),
|
FROM ticketService ts
|
||||||
price DECIMAL (10,2),
|
WHERE ts.id IN (?);
|
||||||
taxClassFk INT,
|
|
||||||
ticketServiceTypeFk INT
|
CALL vn.ticket_doRefund(@newTicket);
|
||||||
);
|
|
||||||
|
|
||||||
CALL vn.ticket_doRefund(?, @newTicket);
|
|
||||||
|
|
||||||
DROP TEMPORARY TABLE tmp.sale;
|
DROP TEMPORARY TABLE tmp.sale;
|
||||||
DROP TEMPORARY TABLE tmp.ticketService;`;
|
DROP TEMPORARY TABLE tmp.ticketService;`;
|
||||||
|
|
||||||
await Self.rawSql(query, [salesIds, ticketId], myOptions);
|
await Self.rawSql(query, [salesIds, servicesIds], myOptions);
|
||||||
|
|
||||||
const [newTicket] = await Self.rawSql('SELECT @newTicket id', null, myOptions);
|
const [newTicket] = await Self.rawSql('SELECT @newTicket id', null, myOptions);
|
||||||
ticketId = newTicket.id;
|
const newTicketId = newTicket.id;
|
||||||
|
|
||||||
if (tx) await tx.commit();
|
if (tx) await tx.commit();
|
||||||
|
|
||||||
return ticketId;
|
return newTicketId;
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
if (tx) await tx.rollback();
|
if (tx) await tx.rollback();
|
||||||
throw e;
|
throw e;
|
||||||
|
|
|
@ -1,78 +0,0 @@
|
||||||
const UserError = require('vn-loopback/util/user-error');
|
|
||||||
|
|
||||||
module.exports = Self => {
|
|
||||||
Self.remoteMethodCtx('refundAll', {
|
|
||||||
description: 'Create ticket with all lines and services changing the sign to the quantites',
|
|
||||||
accessType: 'WRITE',
|
|
||||||
accepts: [{
|
|
||||||
arg: 'ticketId',
|
|
||||||
type: 'number',
|
|
||||||
required: true,
|
|
||||||
description: 'The ticket id'
|
|
||||||
}],
|
|
||||||
returns: {
|
|
||||||
type: 'number',
|
|
||||||
root: true
|
|
||||||
},
|
|
||||||
http: {
|
|
||||||
path: `/refundAll`,
|
|
||||||
verb: 'post'
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
Self.refundAll = async(ctx, ticketId, options) => {
|
|
||||||
const myOptions = {};
|
|
||||||
let tx;
|
|
||||||
|
|
||||||
if (typeof options == 'object')
|
|
||||||
Object.assign(myOptions, options);
|
|
||||||
|
|
||||||
if (!myOptions.transaction) {
|
|
||||||
tx = await Self.beginTransaction({});
|
|
||||||
myOptions.transaction = tx;
|
|
||||||
}
|
|
||||||
|
|
||||||
try {
|
|
||||||
const userId = ctx.req.accessToken.userId;
|
|
||||||
|
|
||||||
const isClaimManager = await Self.app.models.Account.hasRole(userId, 'claimManager');
|
|
||||||
const isSalesAssistant = await Self.app.models.Account.hasRole(userId, 'salesAssistant');
|
|
||||||
const hasValidRole = isClaimManager || isSalesAssistant;
|
|
||||||
|
|
||||||
if (!hasValidRole)
|
|
||||||
throw new UserError(`You don't have privileges to create refund`);
|
|
||||||
|
|
||||||
const query = `
|
|
||||||
DROP TEMPORARY TABLE IF EXISTS tmp.sale;
|
|
||||||
DROP TEMPORARY TABLE IF EXISTS tmp.ticketService;
|
|
||||||
|
|
||||||
CREATE TEMPORARY TABLE tmp.sale
|
|
||||||
SELECT s.id, s.itemFk, - s.quantity, s.concept, s.price, s.discount
|
|
||||||
FROM sale s
|
|
||||||
JOIN ticket t ON t.id = s.ticketFk
|
|
||||||
WHERE t.id IN (?);
|
|
||||||
|
|
||||||
CREATE TEMPORARY TABLE tmp.ticketService
|
|
||||||
SELECT ts.description, - ts.quantity, ts.price, ts.taxClassFk, ts.ticketServiceTypeFk
|
|
||||||
FROM ticketService ts
|
|
||||||
WHERE ts.ticketFk IN (?);
|
|
||||||
|
|
||||||
CALL vn.ticket_doRefund(?, @newTicket);
|
|
||||||
|
|
||||||
DROP TEMPORARY TABLE tmp.sale;
|
|
||||||
DROP TEMPORARY TABLE tmp.ticketService;`;
|
|
||||||
|
|
||||||
await Self.rawSql(query, [ticketId, ticketId, ticketId], myOptions);
|
|
||||||
|
|
||||||
const [newTicket] = await Self.rawSql('SELECT @newTicket id', null, myOptions);
|
|
||||||
ticketId = newTicket.id;
|
|
||||||
|
|
||||||
if (tx) await tx.commit();
|
|
||||||
|
|
||||||
return ticketId;
|
|
||||||
} catch (e) {
|
|
||||||
if (tx) await tx.rollback();
|
|
||||||
throw e;
|
|
||||||
}
|
|
||||||
};
|
|
||||||
};
|
|
|
@ -1,20 +1,20 @@
|
||||||
const models = require('vn-loopback/server/server').models;
|
const models = require('vn-loopback/server/server').models;
|
||||||
|
|
||||||
describe('sale refund()', () => {
|
describe('sale refund()', () => {
|
||||||
|
const sales = [
|
||||||
|
{id: 7, ticketFk: 11},
|
||||||
|
{id: 8, ticketFk: 11}
|
||||||
|
];
|
||||||
|
const services = [{id: 1}];
|
||||||
|
|
||||||
it('should create ticket with the selected lines changing the sign to the quantites', async() => {
|
it('should create ticket with the selected lines changing the sign to the quantites', async() => {
|
||||||
const tx = await models.Sale.beginTransaction({});
|
const tx = await models.Sale.beginTransaction({});
|
||||||
const ctx = {req: {accessToken: {userId: 9}}};
|
const ctx = {req: {accessToken: {userId: 9}}};
|
||||||
|
|
||||||
const ticketId = 11;
|
|
||||||
const sales = [
|
|
||||||
{id: 7, ticketFk: 11},
|
|
||||||
{id: 8, ticketFk: 11}
|
|
||||||
];
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const options = {transaction: tx};
|
const options = {transaction: tx};
|
||||||
|
|
||||||
const response = await models.Sale.refund(ctx, sales, ticketId, options);
|
const response = await models.Sale.refund(ctx, sales, services, options);
|
||||||
const [newTicketId] = await models.Sale.rawSql('SELECT MAX(t.id) id FROM vn.ticket t;', null, options);
|
const [newTicketId] = await models.Sale.rawSql('SELECT MAX(t.id) id FROM vn.ticket t;', null, options);
|
||||||
|
|
||||||
expect(response).toEqual(newTicketId.id);
|
expect(response).toEqual(newTicketId.id);
|
||||||
|
@ -30,17 +30,12 @@ describe('sale refund()', () => {
|
||||||
const tx = await models.Sale.beginTransaction({});
|
const tx = await models.Sale.beginTransaction({});
|
||||||
const ctx = {req: {accessToken: {userId: 1}}};
|
const ctx = {req: {accessToken: {userId: 1}}};
|
||||||
|
|
||||||
const ticketId = 11;
|
|
||||||
const sales = [
|
|
||||||
{id: 7, ticketFk: 11}
|
|
||||||
];
|
|
||||||
|
|
||||||
let error;
|
let error;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const options = {transaction: tx};
|
const options = {transaction: tx};
|
||||||
|
|
||||||
await models.Sale.refund(ctx, sales, ticketId, options);
|
await models.Sale.refund(ctx, sales, services, options);
|
||||||
|
|
||||||
await tx.rollback();
|
await tx.rollback();
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
|
|
|
@ -7,7 +7,6 @@ module.exports = Self => {
|
||||||
require('../methods/sale/updateConcept')(Self);
|
require('../methods/sale/updateConcept')(Self);
|
||||||
require('../methods/sale/recalculatePrice')(Self);
|
require('../methods/sale/recalculatePrice')(Self);
|
||||||
require('../methods/sale/refund')(Self);
|
require('../methods/sale/refund')(Self);
|
||||||
require('../methods/sale/refundAll')(Self);
|
|
||||||
require('../methods/sale/canEdit')(Self);
|
require('../methods/sale/canEdit')(Self);
|
||||||
|
|
||||||
Self.validatesPresenceOf('concept', {
|
Self.validatesPresenceOf('concept', {
|
||||||
|
|
|
@ -302,7 +302,7 @@
|
||||||
<!-- Refund all confirmation dialog -->
|
<!-- Refund all confirmation dialog -->
|
||||||
<vn-confirm
|
<vn-confirm
|
||||||
vn-id="refundAllConfirmation"
|
vn-id="refundAllConfirmation"
|
||||||
on-accept="$ctrl.refundAll()"
|
on-accept="$ctrl.refund()"
|
||||||
question="Are you sure you want to refund all?"
|
question="Are you sure you want to refund all?"
|
||||||
message="Refund all">
|
message="Refund all">
|
||||||
</vn-confirm>
|
</vn-confirm>
|
|
@ -273,9 +273,21 @@ class Controller extends Section {
|
||||||
.then(() => this.vnApp.showSuccess(this.$t('Data saved!')));
|
.then(() => this.vnApp.showSuccess(this.$t('Data saved!')));
|
||||||
}
|
}
|
||||||
|
|
||||||
refundAll() {
|
async refund() {
|
||||||
const params = {ticketId: this.id};
|
const filter = {
|
||||||
const query = `Sales/refundAll`;
|
where: {ticketFk: this.id}
|
||||||
|
};
|
||||||
|
const sales = await this.$http.get('Sales', {filter});
|
||||||
|
this.sales = sales.data;
|
||||||
|
|
||||||
|
const ticketServices = await this.$http.get('TicketServices', {filter});
|
||||||
|
this.services = ticketServices.data;
|
||||||
|
|
||||||
|
const params = {
|
||||||
|
sales: this.sales,
|
||||||
|
services: this.services
|
||||||
|
};
|
||||||
|
const query = `Sales/refund`;
|
||||||
return this.$http.post(query, params).then(res => {
|
return this.$http.post(query, params).then(res => {
|
||||||
this.$state.go('ticket.card.sale', {id: res.data});
|
this.$state.go('ticket.card.sale', {id: res.data});
|
||||||
});
|
});
|
||||||
|
|
|
@ -262,16 +262,27 @@ describe('Ticket Component vnTicketDescriptorMenu', () => {
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
describe('refundAll()', () => {
|
// #4084 review with Juan
|
||||||
|
xdescribe('refund()', () => {
|
||||||
it('should make a query and go to ticket.card.sale', () => {
|
it('should make a query and go to ticket.card.sale', () => {
|
||||||
jest.spyOn(controller.$state, 'go').mockReturnValue();
|
controller.$state.go = jest.fn();
|
||||||
const expectedParams = {ticketId: ticket.id};
|
|
||||||
|
|
||||||
$httpBackend.expect('POST', `Sales/refundAll`, expectedParams).respond({ticketId: 16});
|
controller._id = ticket.id;
|
||||||
controller.refundAll();
|
const sales = [{id: 1}];
|
||||||
|
const services = [{id: 2}];
|
||||||
|
|
||||||
|
$httpBackend.expectGET(`Sales`).respond(sales);
|
||||||
|
$httpBackend.expectGET(`TicketServices`).respond(services);
|
||||||
|
|
||||||
|
const expectedParams = {
|
||||||
|
sales: sales,
|
||||||
|
services: services
|
||||||
|
};
|
||||||
|
$httpBackend.expectPOST(`Sales/refund`, expectedParams).respond();
|
||||||
|
controller.refund();
|
||||||
$httpBackend.flush();
|
$httpBackend.flush();
|
||||||
|
|
||||||
expect(controller.$state.go).toHaveBeenCalledWith('ticket.card.sale', {id: {ticketId: ticket.id}});
|
expect(controller.$state.go).toHaveBeenCalledWith('ticket.card.sale', {id: undefined});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -483,7 +483,7 @@ class Controller extends Section {
|
||||||
const sales = this.selectedValidSales();
|
const sales = this.selectedValidSales();
|
||||||
if (!sales) return;
|
if (!sales) return;
|
||||||
|
|
||||||
const params = {sales: sales, ticketId: this.ticket.id};
|
const params = {sales: sales};
|
||||||
const query = `Sales/refund`;
|
const query = `Sales/refund`;
|
||||||
this.resetChanges();
|
this.resetChanges();
|
||||||
this.$http.post(query, params).then(res => {
|
this.$http.post(query, params).then(res => {
|
||||||
|
|
|
@ -42,7 +42,7 @@
|
||||||
</append>
|
</append>
|
||||||
</vn-autocomplete>
|
</vn-autocomplete>
|
||||||
<vn-input-number
|
<vn-input-number
|
||||||
vn-one min="0"
|
vn-one
|
||||||
step="1"
|
step="1"
|
||||||
label="Quantity"
|
label="Quantity"
|
||||||
ng-model="service.quantity"
|
ng-model="service.quantity"
|
||||||
|
|
|
@ -67,7 +67,6 @@
|
||||||
<vn-input-number
|
<vn-input-number
|
||||||
label="Bonus"
|
label="Bonus"
|
||||||
ng-model="$ctrl.zone.bonus"
|
ng-model="$ctrl.zone.bonus"
|
||||||
min="0"
|
|
||||||
step="0.01"
|
step="0.01"
|
||||||
vn-acl="deliveryBoss"
|
vn-acl="deliveryBoss"
|
||||||
rule>
|
rule>
|
||||||
|
|
Loading…
Reference in New Issue