Skip to content

Commit

Permalink
ref #90909 Abandoned cart transfer fix (#314)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kocmonavtik authored Jul 20, 2023
1 parent 2df9ee6 commit 4d3883f
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 5 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 2023-07-19 4.6.10
* Abandoned cart transfer fix

## 2023-07-19 4.6.9
* Changed the logic of customer subscriptions to promotional newsletters

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
4.6.9
4.6.10
3 changes: 2 additions & 1 deletion src/include/class-wc-retailcrm-cart.php
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,8 @@ public function processCart($customerId, $cartItems, $site, $isCartExist): bool
$crmCart = [
'customer' => ['externalId' => $customerId],
'clearAt' => null,
'updatedAt' => date($this->dateFormat)
'updatedAt' => date($this->dateFormat),
'droppedAt' => date($this->dateFormat)
];

// If new cart, need set createdAt and externalId
Expand Down
5 changes: 4 additions & 1 deletion src/readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla
Requires PHP: 7.0
Requires at least: 5.3
Tested up to: 6.2
Stable tag: 4.6.9
Stable tag: 4.6.10
License: GPLv1 or later
License URI: http://www.gnu.org/licenses/gpl-1.0.html

Expand Down Expand Up @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i


== Changelog ==
= 4.6.10 =
* Abandoned cart transfer fix

= 4.6.9 =
* Changed the logic of customer subscriptions to promotional newsletters

Expand Down
2 changes: 1 addition & 1 deletion src/retailcrm.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Description: Integration plugin for WooCommerce & Simla.com
* Author: RetailDriver LLC
* Author URI: http://retailcrm.pro/
* Version: 4.6.9
* Version: 4.6.10
* Tested up to: 6.2
* WC requires at least: 5.4
* WC tested up to: 7.8
Expand Down
2 changes: 1 addition & 1 deletion src/uninstall.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
*
* @link https://wordpress.org/plugins/woo-retailcrm/
*
* @version 4.6.9
* @version 4.6.10
*
* @package RetailCRM
*/
Expand Down

0 comments on commit 4d3883f

Please sign in to comment.