Skip to content

Commit 438e8d2

Browse files
Merge pull request #118 from Paazl/release/1.17.5
Release/1.17.5
2 parents 20908f7 + 9e56644 commit 438e8d2

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

composer.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "paazl/magento2-checkout-widget",
33
"description": "Paazl checkoutWidget for Magento 2",
44
"type": "magento2-module",
5-
"version": "1.17.4",
5+
"version": "1.17.5",
66
"keywords": [
77
"Paazl",
88
"Magento 2",

etc/config.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<default>
99
<carriers>
1010
<paazlshipping>
11-
<version>v1.17.4</version>
11+
<version>v1.17.5</version>
1212
<active>0</active>
1313
<sallowspecific>0</sallowspecific>
1414
<price>0</price>

view/frontend/web/js/checkout/action/set-shipping-information-mixin.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ define([
4747
}
4848

4949
// Update billing address after updating shipping address
50-
quote.billingAddress(address);
50+
// quote.billingAddress(address);
5151

5252
function getActiveAddress() {
5353
const isCustomerLogin = window.checkoutConfig.isCustomerLoggedIn;
@@ -63,10 +63,14 @@ define([
6363
currentAddress = customerData.get('checkout-data')().shippingAddressFromData;
6464
}
6565

66+
shippingAddress.firstname = currentAddress.firstname;
67+
shippingAddress.lastname = currentAddress.lastname;
6668
shippingAddress.countryId = currentAddress.country_id;
69+
shippingAddress.region = currentAddress.region;
6770
shippingAddress.city = currentAddress.city;
6871
shippingAddress.postcode = currentAddress.postcode;
6972
shippingAddress.street = Object.values(currentAddress.street);
73+
shippingAddress.telephone = currentAddress.telephone;
7074

7175
return shippingAddress;
7276
}

0 commit comments

Comments
 (0)