• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/delivery/services/base.php
  • Класс: BitrixSaleDeliveryServicesBase
  • Вызов: Base::getServiceCode
public function getServiceCode(): string
{
	if (
		static::isProfile()
		&& ($parentService = $this->getParentService())
		&& ($parentServiceHandlerCode = $parentService->getHandlerCode())
		&& ($profileType = $this->getProfileType())
	)
	{
		return $parentServiceHandlerCode . '_' . $profileType;
	}

	return $this->getHandlerCode();
}