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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<?php
/**
* Refer to LICENSE.txt distributed with the Temando Shipping module for notice of license
*/
namespace Temando\Shipping\Controller\Adminhtml\Pickup;
use Magento\Backend\App\Action;
use Magento\Backend\App\Action\Context;
use Magento\Framework\App\Filesystem\DirectoryList;
use Magento\Framework\App\Response\Http\FileFactory;
use Magento\Framework\App\ResponseInterface;
use Magento\Framework\Controller\Result\Redirect;
use Magento\Framework\Stdlib\DateTime\DateTime;
use Temando\Shipping\Model\Pickup\Pdf\PickupPdfFactory;
use Temando\Shipping\Model\Pickup\PickupLoader;
use Temando\Shipping\Model\PickupProviderInterface;
/**
* Temando Print Action
*
* @package Temando\Shipping\Controller
* @author Benjamin Heuer <benjamin.heuer@netresearch.de>
* @license https://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
* @link https://www.temando.com/
*/
class PrintAction extends Action
{
/**
* Authorization level
*/
const ADMIN_RESOURCE = 'Temando_Shipping::pickups';
/**
* @var FileFactory
*/
private $fileFactory;
/**
* @var DateTime
*/
private $dateTime;
/**
* @var PickupPdfFactory
*/
private $pickupPdfFactory;
/**
* @var PickupLoader
*/
private $pickupLoader;
/**
* @var PickupProviderInterface
*/
private $pickupProvider;
/**
* @param Context $context
* @param DateTime $dateTime
* @param FileFactory $fileFactory
* @param PickupPdfFactory $pickupPdfFactory
* @param PickupLoader $pickupLoader
* @param PickupProviderInterface $pickupProvider
*/
public function __construct(
Context $context,
DateTime $dateTime,
FileFactory $fileFactory,
PickupPdfFactory $pickupPdfFactory,
PickupLoader $pickupLoader,
PickupProviderInterface $pickupProvider
) {
$this->fileFactory = $fileFactory;
$this->dateTime = $dateTime;
$this->pickupPdfFactory = $pickupPdfFactory;
$this->pickupLoader = $pickupLoader;
$this->pickupProvider = $pickupProvider;
parent::__construct($context);
}
/**
* Execute action.
*
* @return ResponseInterface|Redirect
*/
public function execute()
{
$pickupId = $this->getRequest()->getParam('pickup_id');
$orderId = $this->getRequest()->getParam('sales_order_id');
try {
$downloadResponse = $this->createPackagingSlip($pickupId, $orderId);
return $downloadResponse;
} catch (\Exception $e) {
$this->messageManager->addErrorMessage(__('There was an error creating package slip pdf.'));
$redirect = $this->resultRedirectFactory->create();
$redirect->setPath($this->_redirect->getRefererUrl());
return $redirect;
}
}
/**
* Prepare download response.
*
* @param string $pickupId
* @param string $orderId
*
* @return ResponseInterface|Redirect
* @throws \Exception
*/
private function createPackagingSlip($pickupId, $orderId)
{
$pickups = $this->pickupLoader->load((int)$orderId, (string)$pickupId);
$this->pickupLoader->register($pickups, (int)$orderId, (string)$pickupId);
$pickup = $this->pickupProvider->getPickup();
$order = $this->pickupProvider->getOrder();
$pickupPdf = $this->pickupPdfFactory->create(
['data' => ['order' => $order, 'pickup' => $pickup, 'pickups' => $pickups]]
);
$filename = sprintf(
'packingslip-%s-%s.pdf',
$pickupId,
$this->dateTime->date('Y-m-d_H-i-s')
);
$content = $pickupPdf->getPdf()->render();
$response = $this->fileFactory->create(
$filename,
$content,
DirectoryList::VAR_DIR,
'application/pdf'
);
return $response;
}
}