обработка одинаковых товарных позиций в заказе
This commit is contained in:
parent
55a52667bd
commit
3c2bcb3fb3
7 changed files with 73 additions and 7 deletions
|
@ -1,3 +1,6 @@
|
|||
## 2019-09-11 3.5.4
|
||||
* Добавлена возможность обработки одинаковых товарных позиций
|
||||
|
||||
## 2019-04-22 3.5.2
|
||||
* Исправлен баг с выгрузкой заказов в retailCRM
|
||||
* Исправлена ошибка переводов
|
||||
|
|
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
3.5.3
|
||||
3.5.4
|
||||
|
|
|
@ -21,7 +21,8 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
protected $retailcrm;
|
||||
protected $order_methods = array();
|
||||
protected $bind_field = 'externalId';
|
||||
|
||||
/** @var WC_Retailcrm_Order_Item */
|
||||
protected $order_item;
|
||||
/**
|
||||
* WC_Retailcrm_History constructor.
|
||||
* @param $retailcrm (default = false)
|
||||
|
@ -328,6 +329,7 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
}
|
||||
|
||||
if (array_key_exists('items', $order)) {
|
||||
|
||||
foreach ($order['items'] as $item) {
|
||||
if (!isset($item['offer'][$this->bind_field])) {
|
||||
continue;
|
||||
|
@ -348,8 +350,12 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
$offer_id = $order_item['product_id'];
|
||||
}
|
||||
|
||||
if ($offer_id == $item['offer'][$this->bind_field]) {
|
||||
$this->deleteOrUpdateOrderItem($item, $order_item, $order_item_id);
|
||||
$itemExternalId = explode('_', $item['externalId']);
|
||||
|
||||
if ($offer_id == $item['offer'][$this->bind_field]
|
||||
&& $itemExternalId[1] == $order_item->get_id()
|
||||
) {
|
||||
$this->deleteOrUpdateOrderItem($item, $order_item, $itemExternalId[1]);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -424,6 +430,20 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
|
||||
$wc_order->save();
|
||||
|
||||
$checkNewItem = false;
|
||||
|
||||
foreach ($order['items'] as $item) {
|
||||
if (!empty($item['externalId'])) {
|
||||
continue;
|
||||
} else {
|
||||
$checkNewItem = true;
|
||||
}
|
||||
}
|
||||
|
||||
if ($checkNewItem == true) {
|
||||
$this->editOrder($this->retailcrm_settings, $wc_order, $order);
|
||||
}
|
||||
|
||||
return $wc_order->get_id();
|
||||
}
|
||||
|
||||
|
@ -584,11 +604,48 @@ if ( ! class_exists( 'WC_Retailcrm_History' ) ) :
|
|||
|
||||
$wc_order->save();
|
||||
|
||||
$this->editOrder($this->retailcrm_settings, $wc_order, $order);
|
||||
$this->retailcrm->ordersFixExternalIds($ids);
|
||||
|
||||
return $wc_order->get_id();
|
||||
}
|
||||
|
||||
/**
|
||||
* @param $settings
|
||||
* @param $wc_order
|
||||
* @param $order
|
||||
*/
|
||||
protected function editOrder($settings, $wc_order, $order, $event = 'create')
|
||||
{
|
||||
$order_items = [];
|
||||
$retailcrmOrderItem = new WC_Retailcrm_Order_Item($settings);
|
||||
|
||||
foreach ($wc_order->get_items() as $key => $item) {
|
||||
$order_items[$key] = $retailcrmOrderItem->build($item)->get_data();
|
||||
$retailcrmOrderItem->reset_data();
|
||||
|
||||
if ($event == 'update') {
|
||||
foreach ($order['items'] as $itemCrm) {
|
||||
if (isset($itemCrm['externalId']) && !empty($itemCrm['externalId'])) {
|
||||
$test = explode('_' , $itemCrm['externalId']);
|
||||
if ($order_items[$test[1]]) {
|
||||
unset($order_items[$test[1]]);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
if (!empty($order_items)) {
|
||||
$orderEdit = [
|
||||
'id' => $order['id'],
|
||||
'items' => $order_items,
|
||||
];
|
||||
|
||||
$this->retailcrm->ordersEdit($orderEdit, 'id');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @param array $orderHistory
|
||||
*
|
||||
|
|
|
@ -51,6 +51,9 @@ class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data
|
|||
$price = $this->calculate_price($item);
|
||||
$discount_price = $this->calculate_discount($item, $price);
|
||||
|
||||
$itemId = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'];
|
||||
|
||||
$data['externalId'] = $itemId . '_' . $item->get_id();
|
||||
$data['productName'] = $item['name'];
|
||||
$data['initialPrice'] = (float)$price;
|
||||
$data['quantity'] = $item['qty'];
|
||||
|
@ -74,7 +77,7 @@ class WC_Retailcrm_Order_Item extends WC_Retailcrm_Abstracts_Data
|
|||
*/
|
||||
private function set_offer(WC_Order_Item_Product $item)
|
||||
{
|
||||
$uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'] ;
|
||||
$uid = ($item['variation_id'] > 0) ? $item['variation_id'] : $item['product_id'];
|
||||
$offer = array('externalId' => $uid);
|
||||
|
||||
$product = $item->get_product();
|
||||
|
|
|
@ -46,6 +46,9 @@ API-ключ должен быть для отдельного магазина
|
|||
|
||||
== Changelog ==
|
||||
|
||||
= 3.5.4 =
|
||||
* Добавлена возможность работы с одинаковыми позициями товаров в заказе
|
||||
|
||||
= 3.5.2 =
|
||||
* Исправлен баг с выгрузкой заказов в retailCRM
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
/**
|
||||
* Version: 3.5.2
|
||||
* Version: 3.5.4
|
||||
* WC requires at least: 3.0
|
||||
* WC tested up to: 3.5.5
|
||||
* Plugin Name: WooCommerce RetailCRM
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
*
|
||||
*
|
||||
* @link https://wordpress.org/plugins/woo-retailcrm/
|
||||
* @version 3.5.2
|
||||
* @version 3.5.4
|
||||
*
|
||||
* @package RetailCRM
|
||||
*/
|
||||
|
|
Loading…
Add table
Reference in a new issue