Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/sale/lib/rest/synchronization/loader/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/sale/lib/rest/synchronization/loader/deliverysystem.php

<?php


namespace Bitrix\Sale\Rest\Synchronization\Loader;


use Bitrix\Main\ArgumentException;

class DeliverySystem extends Entity
{
	public function getFieldsByExternalId($xmlId)
	{
		if($xmlId === "")
		{
			return null;
		}

		foreach(\Bitrix\Sale\Delivery\Services\Manager::getActiveList() as $row)
		{
			if($xmlId == $row['XML_ID'])
				return $row['ID'];
		}

		return null;
	}

}