7152-devToTest_2414 #2228

Merged
alexm merged 636 commits from 7152-devToTest_2414 into test 2024-03-28 08:26:34 +00:00
1 changed files with 7 additions and 1 deletions
Showing only changes of commit e2eddbaef7 - Show all commits

View File

@ -1,8 +1,14 @@
DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `vn`.`invoiceInTax_insert`(
IN vSelf INT
vSelf INT
)
BEGIN
/**
* Inserta los impuestos de una factura, ajustando por
* tasa de cambio y detalles de compra.
*
* @param vSelf Id de invoiceInTax
*/
DECLARE vRate DOUBLE DEFAULT 1;
DECLARE vDated DATE;
DECLARE vExpenseFk INT;