From 578bcb63a2b4434e63e1ef14c181609bea893639 Mon Sep 17 00:00:00 2001 From: KMityai Date: Tue, 27 Jun 2023 17:28:16 +0300 Subject: [PATCH 1/3] fixed customer phone sending to crm --- src/include/class-wc-retailcrm-customers.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/include/class-wc-retailcrm-customers.php b/src/include/class-wc-retailcrm-customers.php index a7b59ed..c2927b9 100644 --- a/src/include/class-wc-retailcrm-customers.php +++ b/src/include/class-wc-retailcrm-customers.php @@ -393,7 +393,7 @@ if (!class_exists('WC_Retailcrm_Customers')) : } if (empty($billingPhone)) { - $order->get_billing_phone(); + $billingPhone = $order->get_billing_phone(); } } @@ -415,7 +415,7 @@ if (!class_exists('WC_Retailcrm_Customers')) : if (!empty($billingPhone)) { $customerData['phones'][] = [ - 'number' => $customer->get_billing_phone() + 'number' => $billingPhone ]; } From ed81c5f0521822852ebae834470d3fccc99410dd Mon Sep 17 00:00:00 2001 From: KMityai Date: Tue, 27 Jun 2023 17:36:06 +0300 Subject: [PATCH 2/3] version bump --- CHANGELOG.md | 3 +++ VERSION | 2 +- src/readme.txt | 2 +- src/retailcrm.php | 2 +- src/uninstall.php | 2 +- 5 files changed, 7 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3296c65..12d60f2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 2023-06-27 4.6.7 +* Fixed customer phone sending to crm when order will create by guest + ## 2022-06-14 4.6.6 * Added handling of fatal errors when working with abandoned carts diff --git a/VERSION b/VERSION index b3a44c1..16f8758 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -4.6.6 \ No newline at end of file +4.6.7 \ No newline at end of file diff --git a/src/readme.txt b/src/readme.txt index 76f9a26..5dd98ac 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -5,7 +5,7 @@ Tags: Интеграция, Simla.com, simla Requires PHP: 7.0 Requires at least: 5.3 Tested up to: 6.0 -Stable tag: 4.6.6 +Stable tag: 4.6.7 License: GPLv1 or later License URI: http://www.gnu.org/licenses/gpl-1.0.html diff --git a/src/retailcrm.php b/src/retailcrm.php index 9894602..9608790 100644 --- a/src/retailcrm.php +++ b/src/retailcrm.php @@ -5,7 +5,7 @@ * Description: Integration plugin for WooCommerce & Simla.com * Author: RetailDriver LLC * Author URI: http://retailcrm.pro/ - * Version: 4.6.6 + * Version: 4.6.7 * Tested up to: 6.0 * WC requires at least: 5.4 * WC tested up to: 6.9 diff --git a/src/uninstall.php b/src/uninstall.php index 5447e0c..814e67b 100644 --- a/src/uninstall.php +++ b/src/uninstall.php @@ -16,7 +16,7 @@ * * @link https://wordpress.org/plugins/woo-retailcrm/ * - * @version 4.6.6 + * @version 4.6.7 * * @package RetailCRM */ From aa1adc0ced6d2358b652c2583ae94b98f5a68577 Mon Sep 17 00:00:00 2001 From: Dmitriy <48244883+KMityai@users.noreply.github.com> Date: Tue, 4 Jul 2023 15:29:28 +0300 Subject: [PATCH 3/3] updated changelog in readme.txt --- src/readme.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/readme.txt b/src/readme.txt index 5dd98ac..060db64 100644 --- a/src/readme.txt +++ b/src/readme.txt @@ -82,6 +82,9 @@ Asegúrate de tener una clave API específica para cada tienda. Las siguientes i == Changelog == += 4.6.7 = +* Fixed customer phone sending to crm when order will create by guest + = 4.6.6 = * Added handling of fatal errors when working with abandoned carts