18 lines
452 B
MySQL
18 lines
452 B
MySQL
|
|
||
|
DROP procedure IF EXISTS `hedera`.`myBasket_calcCatalogFull`;
|
||
|
DELIMITER $$
|
||
|
CREATE DEFINER=`root`@`%` PROCEDURE `hedera`.`myBasket_calcCatalogFull`()
|
||
|
BEGIN
|
||
|
/**
|
||
|
* Gets the availability and prices for the given items
|
||
|
* using current user basket parameters.
|
||
|
*
|
||
|
* @table tmp.item(itemFk)
|
||
|
* @return tmp.ticketCalculateItem
|
||
|
* @return tmp.ticketComponentPrice
|
||
|
* @return tmp.ticketLot
|
||
|
*/
|
||
|
CALL order_calcCatalogFull(myBasket_getId());
|
||
|
END$$
|
||
|
DELIMITER ;
|