• Модуль: sale
  • Путь к файлу: ~/bitrix/modules/sale/lib/cashbox/check.php
  • Класс: BitrixSaleCashboxCheck
  • Вызов: Check::isShipmentExists
private function isShipmentExists(): bool
{
	foreach ($this->getEntities() as $entity)
	{
		if ($entity instanceof Shipment)
		{
			return true;
		}
	}

	foreach ($this->getRelatedEntities() as $relatedEntities)
	{
		foreach ($relatedEntities as $entity)
		{
			if ($entity instanceof Shipment)
			{
				return true;
			}
		}
	}

	return false;
}