20 lines
513 B
SQL
20 lines
513 B
SQL
|
|
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.ticketComponent
|
|
* @return tmp.ticketLot
|
|
* @return tmp.zoneGetShipped
|
|
*/
|
|
CALL order_calcCatalogFull(myBasket_getId());
|
|
END$$
|
|
DELIMITER ;
|