1
0
mirror of synced 2025-03-25 17:43:52 +03:00

Fix bug with shipping tax

This commit is contained in:
Dima Uryvskiy 2022-08-01 16:51:55 +03:00 committed by GitHub
parent ebdc410fda
commit 2b4f670b8c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -379,6 +379,7 @@ if (!class_exists('WC_Retailcrm_Orders')) :
? $shipping['total'] + $shipping['total_tax']
: $shipping['total'];
if (wc_tax_enabled()) {
$rate = getShippingRates();
if (!empty($rate)) {
@ -386,6 +387,7 @@ if (!class_exists('WC_Retailcrm_Orders')) :
}
}
}
}
$orderData['delivery']['address'] = $this->order_address->build($order)->get_data();
$orderItems = [];