fixed two mistakes
This commit is contained in:
parent
02364c6edc
commit
8496262170
1 changed files with 5 additions and 7 deletions
|
@ -75,7 +75,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
}
|
||||
|
||||
if (!$customers_corporate_since_id && isset($this->retailcrm_settings['history_customers_corporate'])) {
|
||||
$this->startDateCustomers = new DateTime($this->retailcrm_settings['history_orders']);
|
||||
$this->startDateCustomersCorporate = new DateTime($this->retailcrm_settings['history_orders']);
|
||||
}
|
||||
|
||||
$this->customersHistory($this->startDateCustomers->format('Y-m-d H:i:s'), $customers_since_id);
|
||||
|
@ -790,12 +790,10 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
}
|
||||
}
|
||||
|
||||
if (isset($order['delivery']['cost']) || isset($order['delivery']['netCost'])) {
|
||||
if (!wc_tax_enabled()) {
|
||||
$shipping->set_total($order['delivery']['cost']);
|
||||
} else {
|
||||
$shipping->set_total($order['delivery']['netCost']);
|
||||
}
|
||||
if (isset($order['delivery']['cost']) && !wc_tax_enabled()) {
|
||||
$shipping->set_total($order['delivery']['cost']);
|
||||
} elseif (isset($order['delivery']['netCost'])) {
|
||||
$shipping->set_total($order['delivery']['netCost']);
|
||||
}
|
||||
|
||||
$shipping->set_order_id($wc_order->get_id());
|
||||
|
|
Loading…
Add table
Reference in a new issue