1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
<?php
/**
* Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
*/
namespace Temando\Shipping\ViewModel\DataProvider;
use Magento\Framework\UrlInterface;
use Temando\Shipping\Model\BatchInterface;
/**
* Batch URL provider
*
* @package Temando\Shipping\ViewModel
* @author Rhodri Davies <rhodri.davies@temando.com>
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link http://www.temando.com/
*/
class BatchUrl implements EntityUrlInterface
{
/**
* Url Builder
*
* @var UrlInterface
*/
private $urlBuilder;
/**
* BatchUrl constructor.
* @param UrlInterface $urlBuilder
*/
public function __construct(UrlInterface $urlBuilder)
{
$this->urlBuilder = $urlBuilder;
}
/**
* @return string
*/
public function getNewActionUrl(): string
{
return $this->urlBuilder->getUrl('temando/batch/create');
}
/**
* @return string
*/
public function getListActionUrl(): string
{
return $this->urlBuilder->getUrl('temando/batch/index');
}
/**
* @param mixed[] $data Item data to pick entity identifier.
* @return string
*/
public function getViewActionUrl(array $data): string
{
return $this->urlBuilder->getUrl('temando/batch/view', [
BatchInterface::BATCH_ID => $data[BatchInterface::BATCH_ID],
]);
}
/**
* @param mixed[] $data Item data to pick entity identifier.
* @return string
*/
public function getEditActionUrl(array $data): string
{
return '';
}
/**
* @param mixed[] $data Item data for the implementer to pick entity identifier.
* @return string
*/
public function getDeleteActionUrl(array $data): string
{
return '';
}
/**
* @param mixed[] $data Item data to pick entity identifier.
* @return string
*/
public function getSolveActionUrl(array $data): string
{
return $this->urlBuilder->getUrl('temando/batch/solve', [
BatchInterface::BATCH_ID => $data[BatchInterface::BATCH_ID],
]);
}
/**
* @param mixed[] $data
* @param string $batchId
* @return string
*/
public function getPrintAllPackingSlips(array $data, string $batchId): string
{
$ids = implode(",", $data);
return $this->urlBuilder->getUrl(
'temando/batch/printpackageslips',
['order_ids' => $ids, 'batch_id' => $batchId]
);
}
}