%PDF- %PDF- 403WebShell
403Webshell
Server IP : 37.220.80.31  /  Your IP : 3.137.171.114
Web Server : Apache/2.4.52 (Ubuntu)
System : Linux 3051455-guretool.twc1.net 5.15.0-107-generic #117-Ubuntu SMP Fri Apr 26 12:26:49 UTC 2024 x86_64
User : www-root ( 1010)
PHP Version : 7.4.33
Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/sale/lib/internals/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/www-root/data/www/dev.artlot24.ru/bitrix/modules/sale/lib/internals/transferprovider.php
<?php

namespace Bitrix\Sale\Internals;

use Bitrix\Catalog;
use Bitrix\Sale;
use Bitrix\Main;


/**
 * Class TransferProvider
 */
class TransferProvider extends TransferProviderBase
{

	/**
	 * @param $methodName
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ArgumentOutOfRangeException
	 */
	private function callProviderMethod($methodName, array $products = array())
	{
		/** @var Sale\SaleProviderBase $providerClass */
		$providerClass = $this->getProviderClass();
		if (!method_exists($providerClass, $methodName))
		{
			throw new Main\ArgumentOutOfRangeException('methodName');
		}
		return $providerClass->$methodName($products);
	}

	/**
	 * @param array $products
	 *
	 * @return mixed
	 * @throws Main\SystemException
	 */
	public function tryShip(array $products)
	{
		return $this->callProviderMethod('tryShip', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return mixed
	 * @throws Main\SystemException
	 */
	public function isNeedShip(array $products)
	{
		return $this->callProviderMethod('isNeedShip', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function ship(array $products)
	{
		return $this->callProviderMethod('ship', $products);
	}

	/**
	 * @param array $items
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function checkBarcode(array $items)
	{
		return $this->callProviderMethod('checkBarcode', $items);
	}


	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function reserve(array $products)
	{
		return $this->callProviderMethod('reserve', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return mixed
	 * @throws Main\SystemException
	 */
	public function deliver(array $products)
	{
		return $this->callProviderMethod('deliver', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function viewProduct(array $products)
	{
		return $this->callProviderMethod('viewProduct', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function recurring(array $products)
	{
		return $this->callProviderMethod('recurring', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function getProductListStores(array $products)
	{
		return $this->callProviderMethod('getProductListStores', $products);
	}

	/**
	 * @param PoolQuantity $pool
	 * @param array $products
	 * @param array $productTryList
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function setItemsResultAfterTryShip(PoolQuantity $pool, array $products, array $productTryList)
	{
		return static::setItemsResultAfterTryShipByCoefficient($pool, $products, $productTryList, 1);
	}

	/**
	 * @param PoolQuantity $pool
	 * @param array $products
	 * @param array $productTryList
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function setItemsResultAfterTryUnship(PoolQuantity $pool, array $products, array $productTryList)
	{
		return static::setItemsResultAfterTryShipByCoefficient($pool, $products, $productTryList, -1);
	}

	/**
	 * @param PoolQuantity $pool
	 * @param array $products
	 * @param array $productTryList
	 * @param $coefficient
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	private function setItemsResultAfterTryShipByCoefficient(PoolQuantity $pool, array $products, array $productTryList, $coefficient)
	{
		foreach ($products as $productId => $productData)
		{
			if (!isset($productTryList[$productId]))
			{
				continue;
			}

			if (empty($productData['SHIPMENT_ITEM_DATA_LIST']))
				continue;

			/**
			 * @var int $shipmentItemIndex
			 * @var Sale\ShipmentItem $shipmentItem
			 */
			foreach ($productData['SHIPMENT_ITEM_DATA_LIST'] as $shipmentItemIndex => $shipmentItemQuantity)
			{
				$quantity = $coefficient * $shipmentItemQuantity;
				$pool->add(PoolQuantity::POOL_QUANTITY_TYPE, $productId, $quantity);
			}
		}

		return new Sale\Result();
	}

	/**
	 * @param array $products
	 * @param Sale\Result $reserveResult
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function setItemsResultAfterGetData(array $products, Sale\Result $reserveResult)
	{
		return new Sale\Result();
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function getAvailableQuantity(array $products)
	{
		return $this->callProviderMethod('getAvailableQuantity', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 * @throws Main\ObjectNotFoundException
	 */
	public function getAvailableQuantityAndPrice(array $products)
	{
		return $this->callProviderMethod('getAvailableQuantityAndPrice', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 */
	public function getProductData(array $products)
	{
		return $this->callProviderMethod('getProductData', $products);
	}

	/**
	 * @param array $products
	 *
	 * @return Sale\Result
	 */
	public function getBundleItems(array $products)
	{
		return $this->callProviderMethod('getBundleItems', $products);
	}

	/**
	 * @return Sale\Result
	 */
	public function getStoresCount()
	{
		return $this->callProviderMethod('getStoresCount');
	}

}

Youez - 2016 - github.com/yon3zu
LinuXploit