1
0
Fork 0
mirror of synced 2025-04-06 07:13:33 +03:00

Add selection of client roles

This commit is contained in:
Бараников Максим 2020-08-08 15:32:19 +03:00
parent e1a22abab0
commit 1a4478f002
10 changed files with 83 additions and 17 deletions

View file

@ -1,3 +1,6 @@
## 2020-08-08 4.1.1
* Добавлена настройка выбора ролей клиентов для выгрузки в retailCRM
## 2020-08-05 4.1.0
* Добавлена возможность подключения Онлайн-консультанта

View file

@ -1 +1 @@
4.1.0
4.1.1

View file

@ -136,6 +136,15 @@ msgstr "Métodos de pago"
msgid "Delivery types"
msgstr "Métodos de envío"
msgid "Select client roles which will be uploaded from website to retailCRM"
msgstr "Seleccione los roles del cliente que se cargarán desde el sitio web a retailCRM"
msgid "Client roles available for uploading to retailCRM"
msgstr "Roles del cliente disponibles para cargar en retailCRM"
msgid "Client roles"
msgstr "Roles del cliente"
msgid "Select order methods which will be uploaded from retailCRM to the website"
msgstr "Elige el método de formalización de los pedidos que se van a subir desde retailCRM a la página web"

View file

@ -145,6 +145,15 @@ msgstr "Способы оплаты"
msgid "Delivery types"
msgstr "Способы доставки"
msgid "Select client roles which will be uploaded from website to retailCRM"
msgstr "Выберите роли клиентов, которые будут выгружаться в retailCRM"
msgid "Client roles available for uploading to retailCRM"
msgstr "Роли клиентов, доступные для выгрузки в retailCRM"
msgid "Client roles"
msgstr "Роли клиентов"
msgid "Select order methods which will be uploaded from retailCRM to the website"
msgstr "Выберите способы оформления заказов, которые будут выгружаться из retailCRM на сайт"

View file

@ -178,6 +178,37 @@ abstract class WC_Retailcrm_Abstracts_Settings extends WC_Integration
) {
add_action('admin_print_footer_scripts', array($this, 'show_blocks'), 99);
/**
* Client roles options
*/
$client_roles_option = array();
$client_roles_list = wp_roles();
if ($client_roles_list && !empty($client_roles_list->get_names())) {
foreach ($client_roles_list->get_names() as $code => $name) {
$client_roles_option[$code] =$name;
}
$this->form_fields[] = array(
'title' => __('Client roles', 'retailcrm'),
'type' => 'heading',
'description' => '',
'id' => 'client_roles_options'
);
$this->form_fields['client_roles'] = array(
'label' => ' ',
'title' => __('Client roles available for uploading to retailCRM', 'retailcrm'),
'class' => '',
'type' => 'multiselect',
'description' => __('Select client roles which will be uploaded from website to retailCRM', 'retailcrm'),
'options' => $client_roles_option,
'css' => 'min-height:100px;',
'select_buttons' => true
);
}
/**
* Order methods options
*/

View file

@ -106,7 +106,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
$data_customers = array();
foreach ($users as $user) {
if (!static::isCustomer($user)) {
if (!$this->isCustomer($user)) {
continue;
}
@ -149,7 +149,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
return null;
}
if (self::isCustomer($customer)) {
if ($this->isCustomer($customer)) {
$this->processCustomer($customer, $order);
$response = $this->retailcrm->customersCreate($this->customer);
@ -177,7 +177,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
$customer = $this->wcCustomerGet($customer_id);
if (self::isCustomer($customer)) {
if ($this->isCustomer($customer)) {
$this->processCustomer($customer);
$this->retailcrm->customersEdit($this->customer);
}
@ -202,7 +202,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
$customer = $this->wcCustomerGet($customer_id);
if (self::isCustomer($customer)) {
if ($this->isCustomer($customer)) {
$this->processCustomer($customer);
$this->customer['id'] = $crmCustomerId;
$this->retailcrm->customersEdit($this->customer, 'id');
@ -235,7 +235,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
return null;
}
if (self::isCustomer($customer)) {
if ($this->isCustomer($customer)) {
$this->processCorporateCustomer($crmCustomerId, $customer, $order);
$response = $this->retailcrm->customersCorporateCreate($this->customerCorporate);
@ -493,7 +493,7 @@ if (!class_exists('WC_Retailcrm_Customers')) :
if (empty($search['customers'])) {
return false;
}
if (isset($filter['email']) && count($filter) == 1) {
foreach ($search['customers'] as $finding) {
if (isset($finding['email']) && $finding['email'] == $filter['email']) {
@ -619,16 +619,27 @@ if (!class_exists('WC_Retailcrm_Customers')) :
*
* @return bool
*/
public static function isCustomer($user)
public function isCustomer($user)
{
if ($user instanceof WC_Customer) {
return $user->get_role() == self::CUSTOMER_ROLE || $user->get_role() == self::ADMIN_ROLE;
} elseif ($user instanceof WP_User) {
return in_array(self::CUSTOMER_ROLE, $user->roles)
|| in_array(self::ADMIN_ROLE, $user->roles);
if (empty($this->retailcrm_settings['client_roles']))
$selectedRoles = [self::CUSTOMER_ROLE, self::ADMIN_ROLE];
else
$selectedRoles = $this->retailcrm_settings['client_roles'];
if ($user instanceof WP_User) {
$userRoles = $user->roles;
} elseif ($user instanceof WC_Customer) {
$wpUser = get_user_by('id', $user->get_id());
$userRoles = $wpUser->roles;
} else {
return false;
}
return false;
$result = array_filter($userRoles, function ($userRole) use ($selectedRoles) {
return in_array($userRole, $selectedRoles);
});
return !empty($result);
}
}
endif;

View file

@ -171,7 +171,7 @@ if ( ! class_exists( 'WC_Retailcrm_Orders' ) ) :
}
if ($wpUser instanceof WP_User) {
if (!WC_Retailcrm_Customers::isCustomer($wpUser)) {
if(!$this->customers->isCustomer($wpUser)){
return false;
}

View file

@ -45,6 +45,9 @@ API-ключ должен быть для отдельного магазина
2. В появившихся списках справочников настройте соответствие способов доставки и оплаты, а так же статусов заказов. Отметьте галочку "Выгружать остатки", если хотите выгружать остатки из Retailcrm в магазин (подробнее смотрите в описании).
== Changelog ==
= 4.1.1 =
* Добавлена настройка выбора ролей клиентов для выгрузки в retailCRM
= 4.1.0 =
* Добавлена возможность подключения Онлайн-консультанта

View file

@ -1,6 +1,6 @@
<?php
/**
* Version: 4.1.0
* Version: 4.1.1
* WC requires at least: 3.0
* WC tested up to: 3.9.3
* Plugin Name: WooCommerce retailCRM

View file

@ -15,7 +15,7 @@
*
*
* @link https://wordpress.org/plugins/woo-retailcrm/
* @version 4.1.0
* @version 4.1.1
*
* @package RetailCRM
*/