Product price in order from cart
This commit is contained in:
parent
2c1c025b2b
commit
461c1d0632
2 changed files with 7 additions and 3 deletions
|
@ -372,18 +372,22 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
|
|||
$_product = wc_get_product($uid);
|
||||
|
||||
if ($_product) {
|
||||
$product_price = $item->get_total() ? $item->get_total() / $item->get_quantity() : 0;
|
||||
$product_tax = $item->get_total_tax() ? $item->get_total_tax() / $item->get_quantity() : 0;
|
||||
$price_item = $product_price + $product_tax;
|
||||
|
||||
if ($this->retailcrm_settings['api_version'] != 'v3') {
|
||||
$order_item = array(
|
||||
'offer' => array('externalId' => $uid),
|
||||
'productName' => $item['name'],
|
||||
'initialPrice' => (float)$_product->get_price(),
|
||||
'initialPrice' => (float)$price_item,
|
||||
'quantity' => $item['qty'],
|
||||
);
|
||||
} else {
|
||||
$order_item = array(
|
||||
'productId' => $uid,
|
||||
'productName' => $item['name'],
|
||||
'initialPrice' => (float)$_product->get_price(),
|
||||
'initialPrice' => (float)$price_item,
|
||||
'quantity' => $item['qty'],
|
||||
);
|
||||
}
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Version: 1.2.1
|
||||
* Version: 1.2.3
|
||||
* Plugin Name: WooCommerce RetailCRM
|
||||
* Plugin URI: https://wordpress.org/plugins/woo-retailcrm/
|
||||
* Description: Integration plugin for WooCommerce & RetailCRM
|
||||
|
|
Loading…
Add table
Reference in a new issue