File tree 3 files changed +7
-3
lines changed
view/frontend/web/js/checkout/action
3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
"name" : " paazl/magento2-checkout-widget" ,
3
3
"description" : " Paazl checkoutWidget for Magento 2" ,
4
4
"type" : " magento2-module" ,
5
- "version" : " 1.17.4 " ,
5
+ "version" : " 1.17.5 " ,
6
6
"keywords" : [
7
7
" Paazl" ,
8
8
" Magento 2" ,
Original file line number Diff line number Diff line change 8
8
<default >
9
9
<carriers >
10
10
<paazlshipping >
11
- <version >v1.17.4 </version >
11
+ <version >v1.17.5 </version >
12
12
<active >0</active >
13
13
<sallowspecific >0</sallowspecific >
14
14
<price >0</price >
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ define([
47
47
}
48
48
49
49
// Update billing address after updating shipping address
50
- quote . billingAddress ( address ) ;
50
+ // quote.billingAddress(address);
51
51
52
52
function getActiveAddress ( ) {
53
53
const isCustomerLogin = window . checkoutConfig . isCustomerLoggedIn ;
@@ -63,10 +63,14 @@ define([
63
63
currentAddress = customerData . get ( 'checkout-data' ) ( ) . shippingAddressFromData ;
64
64
}
65
65
66
+ shippingAddress . firstname = currentAddress . firstname ;
67
+ shippingAddress . lastname = currentAddress . lastname ;
66
68
shippingAddress . countryId = currentAddress . country_id ;
69
+ shippingAddress . region = currentAddress . region ;
67
70
shippingAddress . city = currentAddress . city ;
68
71
shippingAddress . postcode = currentAddress . postcode ;
69
72
shippingAddress . street = Object . values ( currentAddress . street ) ;
73
+ shippingAddress . telephone = currentAddress . telephone ;
70
74
71
75
return shippingAddress ;
72
76
}
You can’t perform that action at this time.
0 commit comments