refs #5000 invoiceOutGlobal
This commit is contained in:
parent
6d3fa34624
commit
2a6848c09a
|
@ -2,13 +2,13 @@ DROP FUNCTION IF EXISTS `vn`.`invoiceOut_getWeight`;
|
||||||
|
|
||||||
DELIMITER $$
|
DELIMITER $$
|
||||||
$$
|
$$
|
||||||
CREATE DEFINER=`root`@`localhost` FUNCTION `vn`.`invoiceOut_getWeight`(vInvoice VARCHAR(15)) RETURNS decimal(10,2)
|
CREATE DEFINER=`root`@`localhost` FUNCTION `vn`.`invoiceOut_getWeight`(vInvoiceRef VARCHAR(15)) RETURNS decimal(10,2)
|
||||||
READS SQL DATA
|
READS SQL DATA
|
||||||
BEGIN
|
BEGIN
|
||||||
/**
|
/**
|
||||||
* Calcula el peso de una factura emitida
|
* Calcula el peso de una factura emitida
|
||||||
*
|
*
|
||||||
* @param vInvoice Id de la factura
|
* @param vInvoiceRef referencia de la factura
|
||||||
* @return vTotalWeight peso de la factura
|
* @return vTotalWeight peso de la factura
|
||||||
*/
|
*/
|
||||||
DECLARE vTotalWeight DECIMAL(10,2);
|
DECLARE vTotalWeight DECIMAL(10,2);
|
||||||
|
@ -22,7 +22,7 @@ BEGIN
|
||||||
JOIN item i ON i.id = s.itemFk
|
JOIN item i ON i.id = s.itemFk
|
||||||
JOIN itemCost ic ON ic.itemFk = i.id
|
JOIN itemCost ic ON ic.itemFk = i.id
|
||||||
AND ic.warehouseFk = t.warehouseFk
|
AND ic.warehouseFk = t.warehouseFk
|
||||||
WHERE t.refFk = vInvoice
|
WHERE t.refFk = vInvoiceRef
|
||||||
AND i.intrastatFk;
|
AND i.intrastatFk;
|
||||||
|
|
||||||
RETURN vTotalWeight;
|
RETURN vTotalWeight;
|
||||||
|
|
|
@ -267,7 +267,7 @@
|
||||||
"There is no assigned email for this client": "No hay correo asignado para este cliente",
|
"There is no assigned email for this client": "No hay correo asignado para este cliente",
|
||||||
"Exists an invoice with a previous date": "Existe una factura con fecha anterior",
|
"Exists an invoice with a previous date": "Existe una factura con fecha anterior",
|
||||||
"Invoice date can't be less than max date": "La fecha de factura no puede ser inferior a la fecha límite",
|
"Invoice date can't be less than max date": "La fecha de factura no puede ser inferior a la fecha límite",
|
||||||
"Warehouse inventory not seted": "Warehouse inventory not seted",
|
"Warehouse inventory not set": "El almacén inventario no está establecido",
|
||||||
"This locker has already been assigned": "Esta taquilla ya ha sido asignada",
|
"This locker has already been assigned": "Esta taquilla ya ha sido asignada",
|
||||||
"Tickets with associated refunds": "No se pueden borrar tickets con abonos asociados. Este ticket está asociado al abono Nº {{id}}",
|
"Tickets with associated refunds": "No se pueden borrar tickets con abonos asociados. Este ticket está asociado al abono Nº {{id}}",
|
||||||
"Not exist this branch": "La rama no existe"
|
"Not exist this branch": "La rama no existe"
|
||||||
|
|
Loading…
Reference in New Issue