Skip to content

Commit 0be8391

Browse files
committed
version bump and changelogs added
1 parent eabf8b3 commit 0be8391

File tree

2 files changed

+11
-6
lines changed

2 files changed

+11
-6
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -159,3 +159,9 @@
159159
- Ability to hide label print feature in orders list page
160160
- Vulnerability fix with development dependencies
161161
- Price rule bug fix to add additional filtration by country
162+
163+
## [3.2.19]
164+
- Carrier availability in country
165+
- Phone input selections sorted by active countries in shop
166+
- Work hours pop up fix
167+
- Numeric post code improvements

dpdbaltics.php

+5-6
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public function __construct()
9292
$this->author = 'Invertus';
9393
$this->tab = 'shipping_logistics';
9494
$this->description = 'DPD Baltics shipping integration';
95-
$this->version = '3.2.18';
95+
$this->version = '3.2.19';
9696
$this->ps_versions_compliancy = ['min' => '1.7.1.0', 'max' => _PS_VERSION_];
9797
$this->need_instance = 0;
9898
parent::__construct();
@@ -203,7 +203,6 @@ public function hookActionFrontControllerSetMedia()
203203
'priority' => 130
204204
]
205205
);
206-
207206
}
208207

209208
/** @var \Invertus\dpdBaltics\Provider\CurrentCountryProvider $currentCountryProvider */
@@ -278,7 +277,8 @@ public function hookActionFrontControllerSetMedia()
278277
$googleApiService = $this->getModuleContainer('invertus.dpdbaltics.service.google_api_service');
279278
$this->context->controller->registerJavascript(
280279
'dpdbaltics-google-api',
281-
$googleApiService->getFormattedGoogleMapsUrl(), [
280+
$googleApiService->getFormattedGoogleMapsUrl(),
281+
[
282282
'server' => 'remote'
283283
]
284284
);
@@ -507,7 +507,7 @@ public function getOrderShippingCostExternal($cart)
507507
$parcelDistribution = \Configuration::get(Config::PARCEL_DISTRIBUTION);
508508
$maxAllowedWeight = Config::getDefaultServiceWeights($countryCode, $serviceCarrier['product_reference']);
509509

510-
if (!$cartWeightValidator->validate($cart, $parcelDistribution ,$maxAllowedWeight)) {
510+
if (!$cartWeightValidator->validate($cart, $parcelDistribution, $maxAllowedWeight)) {
511511
return false;
512512
}
513513

@@ -1150,7 +1150,6 @@ private function updateOrderCarrier($shipmentId)
11501150

11511151
public function hookDisplayOrderDetail($params)
11521152
{
1153-
11541153
$isReturnServiceEnabled = Configuration::get(Config::PARCEL_RETURN);
11551154
if (!$isReturnServiceEnabled) {
11561155
return;
@@ -1279,7 +1278,7 @@ public function hookActionOrderGridDefinitionModifier(array $params)
12791278
$definition = $params['definition'];
12801279

12811280
if (!(bool) Configuration::get(Config::HIDE_ORDERS_LABEL_PRINT_BUTTON)) {
1282-
$definition->getColumns()
1281+
$definition->getColumns()
12831282
->addAfter(
12841283
'date_add',
12851284
(new ActionColumn('dpd_print_label'))

0 commit comments

Comments
 (0)