salix/db/routines/hedera/procedures/myOrder_calcCatalogFull.sql

19 lines
497 B
SQL

DELIMITER $$
CREATE OR REPLACE DEFINER=`root`@`localhost` PROCEDURE `hedera`.`myOrder_calcCatalogFull`(vSelf INT)
BEGIN
/**
* Gets the availability and prices for the given items
* using current user order parameters.
*
* @table tmp.item(itemFk)
* @return tmp.ticketCalculateItem
* @return tmp.ticketComponentPrice
* @return tmp.ticketComponent
* @return tmp.ticketLot
* @return tmp.zoneGetShipped
*/
CALL myOrder_checkMine(vSelf);
CALL order_calcCatalogFull(vSelf);
END$$
DELIMITER ;