refactor: refs #7018 Mirated procs to vn #2157

Merged
guillermo merged 4 commits from 7018-procMigration into dev 2024-03-14 06:03:33 +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;