From da3a8285609a815341914d8ca8fc9a0cb8dcfaf6 Mon Sep 17 00:00:00 2001 From: Konstantin Date: Thu, 14 Mar 2019 15:54:25 +0300 Subject: [PATCH] Fixed bug of sending incorrect externalId when editing payment 2 --- src/include/class-wc-retailcrm-orders.php | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/include/class-wc-retailcrm-orders.php b/src/include/class-wc-retailcrm-orders.php index 9de5935..9ad84e6 100644 --- a/src/include/class-wc-retailcrm-orders.php +++ b/src/include/class-wc-retailcrm-orders.php @@ -408,12 +408,10 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) : 'amount' => $order->get_total() ); - if ($update) - { + if ($update) { $payment['externalId'] = $externalId; } - else - { + else { $payment['externalId'] = $order->get_id() . uniqid('-'); }