• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/extra_services/enum.php
  • Класс: BitrixSaleDeliveryExtraServicesEnum
  • Вызов: Enum::setOperatingCurrency
public function setOperatingCurrency($currency)
{
	if(!empty($this->params["PRICES"]) && is_array($this->params["PRICES"]))
	{
		$prices = array();

		foreach($this->params["PRICES"] as $id => $price)
			$prices[$id] = $this->convertToOperatingCurrency($price);

		$this->params["ONCHANGE"] = $this->createJSOnchange($this->id, $prices);
	}

	$this->createOptions();
	parent::setOperatingCurrency($currency);
}