ref #95034
Checking the existence of a corporate person Adding translations
This commit is contained in:
parent
95fd66305e
commit
13d592af5a
4 changed files with 58 additions and 2 deletions
|
@ -474,3 +474,27 @@ msgstr "Descarga de servicios"
|
|||
|
||||
msgid "Goods with the 'virtual' option enabled will be uploaded to Simla as services"
|
||||
msgstr "Los bienes con la opción 'virtual' activada se cargarán en Simla como servicios"
|
||||
|
||||
msgid "User not found in the system"
|
||||
msgstr "Usuario no encontrado en el sistema"
|
||||
|
||||
msgid "Error when searching for participation in loyalty programs"
|
||||
msgstr "Error al buscar la participación en programas de fidelización"
|
||||
|
||||
msgid "No active participation in the loyalty program was detected"
|
||||
msgstr "No se detectó ninguna participación activa en el programa de fidelización"
|
||||
|
||||
msgid "No bonuses for debiting"
|
||||
msgstr "Sin bonificaciones por adeudo"
|
||||
|
||||
msgid "Loyalty program not found"
|
||||
msgstr "Programa de fidelización no encontrado"
|
||||
|
||||
msgid "Loyalty program is not active"
|
||||
msgstr "El programa de fidelización no está activo"
|
||||
|
||||
msgid "Loyalty program blocked"
|
||||
msgstr "Programa de fidelización bloqueado"
|
||||
|
||||
msgid "This user is a corporate person"
|
||||
msgstr "Este usuario es una persona jurídica"
|
||||
|
|
|
@ -669,3 +669,27 @@ msgstr "Обычные товары: %s%% скидка"
|
|||
|
||||
msgid "Promotional products: %s%% discount"
|
||||
msgstr "Акционные товары: %s%% скидка"
|
||||
|
||||
msgid "User not found in the system"
|
||||
msgstr "Пользователь не найден в системе"
|
||||
|
||||
msgid "Error when searching for participation in loyalty programs"
|
||||
msgstr "Ошибка при поиске участия в программах лояльности"
|
||||
|
||||
msgid "No active participation in the loyalty program was detected"
|
||||
msgstr "Активного участия в программе лояльности не обнаружено"
|
||||
|
||||
msgid "No bonuses for debiting"
|
||||
msgstr "Бонусы на списание отсутствуют"
|
||||
|
||||
msgid "Loyalty program not found"
|
||||
msgstr "Программа лояльности не найдена"
|
||||
|
||||
msgid "Loyalty program is not active"
|
||||
msgstr "Программа лояльности не активна"
|
||||
|
||||
msgid "Loyalty program blocked"
|
||||
msgstr "Программа лояльности заблокирована"
|
||||
|
||||
msgid "This user is a corporate person"
|
||||
msgstr "Данный пользователь является корпоратиным лицом"
|
||||
|
|
|
@ -27,5 +27,7 @@ if (!class_exists('WC_Retailcrm_Loyalty_Constraint')) :
|
|||
public $loyaltyInactive = 'Loyalty program is not active';
|
||||
|
||||
public $loyaltyBlocked = 'Loyalty program blocked';
|
||||
|
||||
public $isCorporateUser = 'This user is a corporate person';
|
||||
}
|
||||
endif;
|
||||
|
|
|
@ -30,7 +30,7 @@ if (!class_exists('WC_Retailcrm_Loyalty_Validator')) :
|
|||
$result = false;
|
||||
|
||||
try {
|
||||
$crmUser = $this->getUser($userId);
|
||||
$crmUser = $this->checkUser($userId);
|
||||
//add check customer corporate
|
||||
$actualAccount = $this->getLoyaltyAccount($crmUser['id']);
|
||||
$this->checkActiveLoyalty($actualAccount['loyalty']['id']);
|
||||
|
@ -47,7 +47,7 @@ if (!class_exists('WC_Retailcrm_Loyalty_Validator')) :
|
|||
/**
|
||||
* @throws ValidatorException
|
||||
*/
|
||||
private function getUser($userId)
|
||||
private function checkUser($userId)
|
||||
{
|
||||
$responseUser = $this->apiClient->customersGet($userId);
|
||||
|
||||
|
@ -55,6 +55,12 @@ if (!class_exists('WC_Retailcrm_Loyalty_Validator')) :
|
|||
throw new ValidatorException($this->notFoundCrmUser, 400);
|
||||
}
|
||||
|
||||
$customer = new WC_Customer($userId);
|
||||
|
||||
if (!empty($customer->get_shipping_company())) {
|
||||
throw new ValidatorException($this->isCorporateUser, 400);
|
||||
}
|
||||
|
||||
return $responseUser['customer'];
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue