• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/helpers/admin/businessvalue.php
  • Класс: BitrixSaleHelpersAdminBusinessValueControl
  • Вызов: BusinessValueControl::changeConsumerKey
public function changeConsumerKey($fromConsumerKey, $toConsumerKey)
{
	BusinessValue::changeConsumerKey($fromConsumerKey, $toConsumerKey);

	if (isset($this->consumerCodePersonMapping[$fromConsumerKey]))
	{
		$this->consumerCodePersonMapping[$toConsumerKey] = $this->consumerCodePersonMapping[$fromConsumerKey];
		unset($this->consumerCodePersonMapping[$fromConsumerKey]);
	}
}