We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8983c8 commit 25928c0Copy full SHA for 25928c0
app/code/Magento/Checkout/view/frontend/web/js/model/shipping-save-processor/default.js
@@ -27,10 +27,11 @@ define(
27
'use strict';
28
return {
29
saveShippingInformation: function() {
30
+ var billingAddress = quote.billingAddress() || quote.shippingAddress();
31
var payload = {
32
addressInformation: {
33
shipping_address: quote.shippingAddress(),
- billing_address: quote.billingAddress(),
34
+ billing_address: billingAddress,
35
shipping_method_code: quote.shippingMethod().method_code,
36
shipping_carrier_code: quote.shippingMethod().carrier_code
37
}
0 commit comments