1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Product price in order from cart

This commit is contained in:
Akolzin Dmitry 2017-11-21 13:56:51 +03:00
parent 2c1c025b2b
commit 461c1d0632
2 changed files with 7 additions and 3 deletions

View file

@ -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'],
);
}

View file

@ -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