salix/db/changes/10032-webZone/00-myBasket_calcCatalogFull...

20 lines
513 B
MySQL
Raw Normal View History

2019-05-30 06:41:08 +00:00
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
2019-06-04 07:14:42 +00:00
* @return tmp.ticketComponent
2019-05-30 06:41:08 +00:00
* @return tmp.ticketLot
2019-06-04 07:14:42 +00:00
* @return tmp.zoneGetShipped
2019-05-30 06:41:08 +00:00
*/
CALL order_calcCatalogFull(myBasket_getId());
END$$
DELIMITER ;