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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
<?php
/**
* Copyright © Magento, Inc. All rights reserved.
* See COPYING.txt for license details.
*/
namespace Magento\Tax\Model\System\Message;
/**
* Notifications class
*/
class Notifications implements \Magento\Framework\Notification\MessageInterface
{
/**
* Store manager object
*
* @var \Magento\Store\Model\StoreManagerInterface
* @deprecated 100.1.0
*/
protected $storeManager;
/**
* @var \Magento\Framework\UrlInterface
*/
protected $urlBuilder;
/**
* Tax configuration object
*
* @var \Magento\Tax\Model\Config
*/
protected $taxConfig;
/**
* Stores with invalid display settings
*
* @var array
* @deprecated 100.1.0
* @see \Magento\Tax\Model\System\Message\Notification\RoundingErrors
*/
protected $storesWithInvalidDisplaySettings;
/**
* Websites with invalid discount settings
*
* @var array
* @deprecated 100.1.0
* @see \Magento\Tax\Model\System\Message\Notification\DiscountErrors
*/
protected $storesWithInvalidDiscountSettings;
/**
* @var NotificationInterface[]
*/
private $notifications = [];
/**
* @param \Magento\Store\Model\StoreManagerInterface $storeManager
* @param \Magento\Framework\UrlInterface $urlBuilder
* @param \Magento\Tax\Model\Config $taxConfig
* @param NotificationInterface[] $notifications
*/
public function __construct(
\Magento\Store\Model\StoreManagerInterface $storeManager,
\Magento\Framework\UrlInterface $urlBuilder,
\Magento\Tax\Model\Config $taxConfig,
$notifications = []
) {
$this->storeManager = $storeManager;
$this->urlBuilder = $urlBuilder;
$this->taxConfig = $taxConfig;
$this->notifications = $notifications;
}
/**
* Retrieve unique message identity
*
* @return string
* @codeCoverageIgnore
*/
public function getIdentity()
{
return md5('TAX_NOTIFICATION');
}
/**
* {@inheritdoc}
*/
public function isDisplayed()
{
foreach ($this->notifications as $notification) {
if ($notification->isDisplayed()) {
return true;
}
}
return false;
}
/**
* {@inheritdoc}
*/
public function getText()
{
$messageDetails = '';
foreach ($this->notifications as $notification) {
$messageDetails .= $notification->getText();
}
$messageDetails .= '<p>';
$messageDetails .= __('Please see <a href="%1">documentation</a> for more details. ', $this->getInfoUrl());
$messageDetails .= __(
'Click here to go to <a href="%1">Tax Configuration</a> and change your settings.',
$this->getManageUrl()
);
$messageDetails .= '</p>';
return $messageDetails;
}
/**
* Retrieve message severity
*
* @return int
* @codeCoverageIgnore
*/
public function getSeverity()
{
return self::SEVERITY_CRITICAL;
}
/**
* Get URL for the tax notification documentation
*
* @return string
*/
public function getInfoUrl()
{
return $this->taxConfig->getInfoUrl();
}
/**
* Get URL to the admin tax configuration page
*
* @return string
*/
public function getManageUrl()
{
return $this->urlBuilder->getUrl('adminhtml/system_config/edit/section/tax');
}
/**
* Check if tax calculation type and price display settings are compatible
*
* Invalid settings if
* Tax Calculation Method Based On 'Total' or 'Row'
* and at least one Price Display Settings has 'Including and Excluding Tax' value
*
* @param null|int|bool|string|\Magento\Store\Model\Store $store $store
* @return bool
* @deprecated 100.1.3
* @see \Magento\Tax\Model\System\Message\Notification\RoundingErrors::checkSettings
*/
public function checkDisplaySettings($store = null)
{
if ($this->taxConfig->getAlgorithm($store) == \Magento\Tax\Model\Calculation::CALC_UNIT_BASE) {
return true;
}
return $this->taxConfig->getPriceDisplayType($store) != \Magento\Tax\Model\Config::DISPLAY_TYPE_BOTH
&& $this->taxConfig->getShippingPriceDisplayType($store) != \Magento\Tax\Model\Config::DISPLAY_TYPE_BOTH
&& !$this->taxConfig->displayCartPricesBoth($store)
&& !$this->taxConfig->displayCartSubtotalBoth($store)
&& !$this->taxConfig->displayCartShippingBoth($store)
&& !$this->taxConfig->displaySalesPricesBoth($store)
&& !$this->taxConfig->displaySalesSubtotalBoth($store)
&& !$this->taxConfig->displaySalesShippingBoth($store);
}
/**
* Check if tax discount settings are compatible
*
* Matrix for invalid discount settings is as follows:
* Before Discount / Excluding Tax
* Before Discount / Including Tax
*
* @param null|int|bool|string|\Magento\Store\Model\Store $store $store
* @return bool
* @deprecated 100.1.3
* @see \Magento\Tax\Model\System\Message\Notification\DiscountErrors::checkSettings
*/
public function checkDiscountSettings($store = null)
{
return $this->taxConfig->applyTaxAfterDiscount($store);
}
/**
* Get URL to ignore tax notifications
*
* @param string $section
* @return string
* @deprecated 100.1.3
*/
public function getIgnoreTaxNotificationUrl($section)
{
return $this->urlBuilder->getUrl('tax/tax/ignoreTaxNotification', ['section' => $section]);
}
/**
* Return list of store names which have not compatible tax calculation type and price display settings.
* Return true if settings are wrong for default store.
*
* @return array
* @deprecated 100.1.3
* @see \Magento\Tax\Model\System\Message\Notification\RoundingErrors::getStoresWithWrongSettings
*/
public function getStoresWithWrongDisplaySettings()
{
$storeNames = [];
$storeCollection = $this->storeManager->getStores(true);
foreach ($storeCollection as $store) {
if (!$this->checkDisplaySettings($store)) {
$website = $store->getWebsite();
$storeNames[] = $website->getName() . '(' . $store->getName() . ')';
}
}
return $storeNames;
}
/**
* Return list of store names where tax discount settings are compatible.
* Return true if settings are wrong for default store.
*
* @return array
* @deprecated 100.1.3
* @see \Magento\Tax\Model\System\Message\Notification\DiscountErrors::getStoresWithWrongSettings
*/
public function getStoresWithWrongDiscountSettings()
{
$storeNames = [];
$storeCollection = $this->storeManager->getStores(true);
foreach ($storeCollection as $store) {
if (!$this->checkDiscountSettings($store)) {
$website = $store->getWebsite();
$storeNames[] = $website->getName() . '(' . $store->getName() . ')';
}
}
return $storeNames;
}
}