b374k
m1n1 1.01
Apache/2.4.41 (Ubuntu)
Linux vmi616275.contaboserver.net 5.4.0-84-generic #94-Ubuntu SMP Thu Aug 26 20:27:37 UTC 2021 x86_64
uid=33(www-data) gid=33(www-data) groups=33(www-data)
server ip : 62.171.164.128 | your ip : 127.0.0.1
safemode OFF
 >  / home / dev2.destoffenstraat.com / app / code / TIG / PostNL / Block / Adminhtml / Grid / Order /
Filename/home/dev2.destoffenstraat.com/app/code/TIG/PostNL/Block/Adminhtml/Grid/Order/ShippingDate.php
Size6.39 kb
Permissionrwxrwxrwx
Ownerroot : root
Create time17-Aug-2025 10:26
Last modified20-Dec-2022 13:13
Last accessed22-Aug-2025 17:20
Actionsedit | rename | delete | download (gzip)
Viewtext | code | image
<?php
/**
*
* ..::..
* ..::::::::::::..
* ::'''''':''::'''''::
* ::.. ..: : ....::
* :::: ::: : : ::
* :::: ::: : ''' ::
* ::::..:::..::.....::
* ''::::::::::::''
* ''::''
*
*
* NOTICE OF LICENSE
*
* This source file is subject to the Creative Commons License.
* It is available through the world-wide-web at this URL:
* http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
* If you are unable to obtain it through the world-wide-web, please send an email
* to servicedesk@tig.nl so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade this module to newer
* versions in the future. If you wish to customize this module for your
* needs please contact servicedesk@tig.nl for more information.
*
* @copyright Copyright (c) Total Internet Group B.V. https://tig.nl/copyright
* @license http://creativecommons.org/licenses/by-nc-nd/3.0/nl/deed.en_US
*/
namespace TIG\PostNL\Block\Adminhtml\Grid\Order;

use Magento\Framework\Stdlib\DateTime\TimezoneInterface;
use TIG\PostNL\Api\OrderRepositoryInterface;
use TIG\PostNL\Api\ShipmentRepositoryInterface;
use Magento\Framework\Api\SearchCriteriaBuilder;
use TIG\PostNL\Block\Adminhtml\Grid\AbstractGrid;
use Magento\Framework\View\Element\UiComponent\ContextInterface;
use Magento\Framework\View\Element\UiComponentFactory;
use TIG\PostNL\Block\Adminhtml\Renderer\ShippingDate as ShippingDateRenderer;

class ShippingDate extends AbstractGrid
{
/**
* @var SearchCriteriaBuilder
*/
private $searchCriteriaBuilder;

/**
* @var ShipmentRepositoryInterface
*/
private $shipmentRepository;

/**
* @var array
*/
private $shipments = [];

/**
* @var OrderRepositoryInterface
*/
private $orderRepository;

/**
* @var $orders
*/
private $orders;

/**
* @var ShippingDateRenderer
*/
private $shippingDateRenderer;

/**
* @var TimezoneInterface
*/
private $timezone;

/**
* @param ContextInterface $context
* @param UiComponentFactory $uiComponentFactory
* @param ShipmentRepositoryInterface $shipmentRepository
* @param OrderRepositoryInterface $orderRepository
* @param SearchCriteriaBuilder $searchCriteriaBuilder
* @param ShippingDateRenderer $shippingDateRenderer
* @param TimezoneInterface $timezone
* @param array $components
* @param array $data
*/
public function __construct(
ContextInterface $context,
UiComponentFactory $uiComponentFactory,
ShipmentRepositoryInterface $shipmentRepository,
OrderRepositoryInterface $orderRepository,
SearchCriteriaBuilder $searchCriteriaBuilder,
ShippingDateRenderer $shippingDateRenderer,
TimezoneInterface $timezone,
array $components = [],
array $data = []
) {
parent::__construct($context, $uiComponentFactory, $components, $data);

$this->searchCriteriaBuilder = $searchCriteriaBuilder;
$this->shipmentRepository = $shipmentRepository;
$this->orderRepository = $orderRepository;
$this->shippingDateRenderer = $shippingDateRenderer;
$this->timezone = $timezone;
}

public function prepare()
{
parent::prepare();

$config = $this->getData('config');
$config['filter'] = [
'filterType' => 'dateRange',
'templates' => [
'date' => [
'options' => [
'dateFormat' => $config['dateFormat'] ?? $this->timezone->getDateFormatWithLongYear()
]
]
]
];
$this->setData('config', $config);
}

/**
* Preload all the needed models in 1 query.
*/
// @codingStandardsIgnoreLine
protected function prepareData()
{
$orderIds = $this->collectIds();
if (!$orderIds) {
return null;
}

$searchCriteria = $this->createIdInSearchCriteria($orderIds);
$models = $this->loadShipments($searchCriteria);
foreach ($models as $model) {
$this->shipments[$model->getOrderId()][] = $model;
}

$models = $this->loadOrders($searchCriteria);
foreach ($models as $model) {
$this->orders[$model->getOrderId()] = $model;
}
}

/**
* @param object $item
*
* @return null|string
*/
// @codingStandardsIgnoreLine
protected function getCellContents($item)
{
$entityId = $item['entity_id'];
$output = '';

if (array_key_exists($entityId, $this->shipments)) {
/** @var \TIG\PostNL\Model\Shipment $model */
foreach ($this->shipments[$entityId] as $model) {
$output .= $this->shippingDateRenderer->render($model) . '<br>';
}
return $output;
}

if (isset($this->orders[$entityId])) {
$postnlOrder = $this->orders[$entityId];
return $this->shippingDateRenderer->render($postnlOrder->getShipAt());
}

return $output;
}

/**
* @return array
*/
private function collectIds()
{
$orderIds = [];

foreach ($this->items as $item) {
$orderIds[] = $item['entity_id'];
}

return $orderIds;
}

/**
* @param \Magento\Framework\Api\SearchCriteria
*
* @return \TIG\PostNL\Model\Shipment[]
*/
private function loadShipments($searchCriteria)
{
/** @var \Magento\Framework\Api\SearchResults $list */
$list = $this->shipmentRepository->getList($searchCriteria);

return $list->getItems();
}

/**
* @param \Magento\Framework\Api\SearchCriteria
*
* @return \TIG\PostNL\Model\Order[]
*/
private function loadOrders($searchCriteria)
{
/** @var \Magento\Framework\Api\SearchResults $list */
$list = $this->orderRepository->getList($searchCriteria);

return $list->getItems();
}

/**
* @param $orderIds
* @return \Magento\Framework\Api\SearchCriteria
*/
private function createIdInSearchCriteria($orderIds = [])
{
$searchCriteria = $this->searchCriteriaBuilder->addFilter('order_id', $orderIds, 'IN');
return $searchCriteria->create();
}
}