Add transfer of zero shipping cost from CMS
This commit is contained in:
parent
ec97a280ba
commit
69ae2a25d7
1 changed files with 5 additions and 7 deletions
|
@ -343,8 +343,6 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
$shipping_method = $shipping['method_id'] . ':' . $shipping['instance_id'];
|
||||
}
|
||||
|
||||
$shipping_cost = $shipping['total'] + $shipping['total_tax'];
|
||||
|
||||
if (!empty($shipping_method) && !empty($this->retailcrm_settings[$shipping_method])) {
|
||||
$order_data['delivery']['code'] = $this->retailcrm_settings[$shipping_method];
|
||||
$service = retailcrm_get_delivery_service($shipping['method_id'], $shipping['instance_id']);
|
||||
|
@ -358,12 +356,12 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
}
|
||||
}
|
||||
|
||||
if (!empty($shipping_cost)) {
|
||||
$order_data['delivery']['cost'] = $shipping_cost;
|
||||
}
|
||||
|
||||
if (!empty($shipping['total'])) {
|
||||
if (isset($shipping['total'])) {
|
||||
$order_data['delivery']['netCost'] = $shipping['total'];
|
||||
|
||||
if (isset($shipping['total_tax'])) {
|
||||
$order_data['delivery']['cost'] = $shipping['total'] + $shipping['total_tax'];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue