• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/basketbase.php
  • Класс: BitrixSaleBasketBase
  • Вызов: BasketBase::refreshData
public function refreshData($select = array(), BasketItemBase $refreshItem = null)
{
	if ($refreshItem !== null)
	{
		$strategy = RefreshFactory::createSingle($refreshItem->getBasketCode());
	}
	else
	{
		$strategy = RefreshFactory::create(RefreshFactory::TYPE_FULL);
	}

	return $this->refresh($strategy);
}