From ad67bee26709f41434f116311b87d8af31284943 Mon Sep 17 00:00:00 2001 From: Alex Komarichev Date: Tue, 17 Sep 2024 13:31:22 +0300 Subject: [PATCH] Use billing phone if shipping phone not exist --- src/include/components/class-wc-retailcrm-logger.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/include/components/class-wc-retailcrm-logger.php b/src/include/components/class-wc-retailcrm-logger.php index 3a2ebcb..1c8a9c6 100644 --- a/src/include/components/class-wc-retailcrm-logger.php +++ b/src/include/components/class-wc-retailcrm-logger.php @@ -180,7 +180,8 @@ if (!class_exists('WC_Retailcrm_Logger') && class_exists('WC_Log_Levels')) : "state" => $object->get_shipping_state(), "postcode" => $object->get_shipping_postcode(), "country" => $object->get_shipping_country(), - "phone" => $object->get_shipping_phone() + "phone" => method_exists($object, 'get_shipping_phone') + ? $object->get_shipping_phone() : $object->get_billing_phone(), ], 'email' => $object->get_billing_email(), 'payment_method_title' => $object->get_payment_method_title(), @@ -205,7 +206,8 @@ if (!class_exists('WC_Retailcrm_Logger') && class_exists('WC_Log_Levels')) : "state" => $object->get_shipping_state(), "postcode" => $object->get_shipping_postcode(), "country" => $object->get_shipping_country(), - "phone" => $object->get_shipping_phone() + "phone" => method_exists($object, 'get_shipping_phone') + ? $object->get_shipping_phone() : $object->get_billing_phone(), ], ]); }