19 lines
527 B
MySQL
19 lines
527 B
MySQL
|
DELIMITER $$
|
||
|
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `vn`.`expeditionState_addByExpedition`(vExpeditionFk INT, vStateCode VARCHAR(100))
|
||
|
BEGIN
|
||
|
|
||
|
/**
|
||
|
* Inserta nuevos registros en la tabla vn.expeditionState
|
||
|
*
|
||
|
* @param vExpeditionFk Identificador de vn.expedition
|
||
|
* @param vStateCode Corresponde a vn.expeditionStateType.code
|
||
|
*/
|
||
|
|
||
|
INSERT INTO vn.expeditionState(expeditionFk, typeFk)
|
||
|
SELECT vExpeditionFk, est.id
|
||
|
FROM vn.expeditionStateType est
|
||
|
WHERE est.code = vStateCode;
|
||
|
|
||
|
END$$
|
||
|
DELIMITER ;
|