2024-01-15 11:31:03 +00:00
|
|
|
DELIMITER $$
|
2025-02-20 07:48:49 +00:00
|
|
|
CREATE OR REPLACE DEFINER=`vn`@`localhost` PROCEDURE `hedera`.`order_confirm`(vSelf INT)
|
2024-01-15 11:31:03 +00:00
|
|
|
BEGIN
|
|
|
|
/**
|
|
|
|
* Confirms an order, creating each of its tickets on
|
|
|
|
* the corresponding date and store.
|
|
|
|
*
|
|
|
|
* @param vSelf The order identifier
|
|
|
|
*/
|
|
|
|
DECLARE vUser INT DEFAULT account.myUser_getId();
|
|
|
|
CALL order_confirmWithUser(vSelf, vUser);
|
|
|
|
END$$
|
|
|
|
DELIMITER ;
|