From d39ffd9ad1fe59e7fa8b9740c856ebf2af136b9c Mon Sep 17 00:00:00 2001 From: ellynoize Date: Mon, 27 Jan 2025 16:14:42 +0300 Subject: [PATCH] skip integration delivery edit --- intaro.retailcrm/lang/en/options.php | 2 +- intaro.retailcrm/lang/ru/options.php | 2 +- intaro.retailcrm/options.php | 4 +++- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/intaro.retailcrm/lang/en/options.php b/intaro.retailcrm/lang/en/options.php index 5877baef..976182cb 100644 --- a/intaro.retailcrm/lang/en/options.php +++ b/intaro.retailcrm/lang/en/options.php @@ -148,7 +148,7 @@ $MESS ['NO_INTEGRATION_PAYMENT'] = '(Non-integrated)'; $MESS ['ERR_CHECK_JOURNAL'] = 'Error while saving. Details in the event log'; $MESS ['ERROR_LINK_INTEGRATION_PAYMENT'] = 'Error in comparing integration payments'; $MESS ['ERROR_UPDATE_PAYMENT_TYPES_DELIVERY'] = 'Error when updating payment methods for deliveries'; -$MESS ['INTEGRATION_PAYMENT_LABEL'] = 'When correlating CMS and CRM integration payments, a regular payment is created on the system side to which orders will be linked.'; +$MESS ['INTEGRATION_PAYMENT_LABEL'] = 'When correlating CMS and CRM integration payments, a regular payment is created on the system side to which orders will be linked.
If you have integration deliveries in your CRM, then you need to enable the new payment method manually directly in the integration settings'; $MESS ['NEED_PERMISSIONS_REFERENCE_LABEL'] = 'For this option to work correctly, the api key needs access to receive and edit reference book'; $MESS ['FIX_UPLOAD_CUSTOMER_HEADER'] = 'Fix customer registration date in CRM'; diff --git a/intaro.retailcrm/lang/ru/options.php b/intaro.retailcrm/lang/ru/options.php index 8dc5f5a8..516f6ac1 100644 --- a/intaro.retailcrm/lang/ru/options.php +++ b/intaro.retailcrm/lang/ru/options.php @@ -213,7 +213,7 @@ $MESS ['NO_INTEGRATION_PAYMENT'] = '(Не интеграционная)'; $MESS ['ERR_CHECK_JOURNAL'] = 'Ошибка при сохранении. Подробности в журнале событий'; $MESS ['ERROR_LINK_INTEGRATION_PAYMENT'] = 'Ошибка при сопоставлении интеграционных оплат'; $MESS ['ERROR_UPDATE_PAYMENT_TYPES_DELIVERY'] = 'Ошибка при обновлении способов оплаты для доставок'; -$MESS ['INTEGRATION_PAYMENT_LABEL'] = 'При сопоставлении интеграционных оплат CRM, на стороне системы создаётся обычная оплата, к которой будут привязываться заказы.'; +$MESS ['INTEGRATION_PAYMENT_LABEL'] = 'При сопоставлении интеграционных оплат CRM, на стороне системы создаётся обычная оплата, к которой будут привязываться заказы.
Если у вас в CRM есть интеграционные доставки, то разрешить новый способ оплаты нужно вручную непосредственно в настройках интеграций'; $MESS ['NEED_PERMISSIONS_REFERENCE_LABEL'] = 'Для корректной работы опции апи-ключу необходимы доступы на получение и редактирование справочников'; $MESS ['FIX_UPLOAD_CUSTOMER_HEADER'] = 'Исправление даты регистрации клиентов в CRM'; diff --git a/intaro.retailcrm/options.php b/intaro.retailcrm/options.php index 2649a6fc..3b222fd3 100644 --- a/intaro.retailcrm/options.php +++ b/intaro.retailcrm/options.php @@ -877,7 +877,9 @@ if (isset($_POST['Update']) && ($_POST['Update'] === 'Y')) { $substitutionPaymentList[$integrationPayment] = $codePayment; foreach ($originalPayment['deliveryTypes'] as $codeDelivery) { - if (!isset($arResult['deliveryTypesList'][$codeDelivery])) { + if (!isset($arResult['deliveryTypesList'][$codeDelivery]) || + isset($arResult['deliveryTypesList'][$codeDelivery]['integrationCode']) + ) { continue; }