34e8105583
* Loyalty program * fix dot bug for shops-exoprt option * delete credantials request from services * add CurlException for credentials catch * add catching CurlException * edit error msgs * add supportind double bonuses * add any step for bonus-input field in sale.order.ajax template * recalculate bonuses * fix bonus rounded * strtoupper for params in icml * change delivery service code
43 lines
984 B
PHP
43 lines
984 B
PHP
<?php
|
|
|
|
/**
|
|
* Class RetailUser
|
|
*/
|
|
class RetailUser extends CUser
|
|
{
|
|
/**
|
|
* @return int|mixed|string|null
|
|
*/
|
|
public function GetID()
|
|
{
|
|
$rsUser = CUser::GetList(($by = 'ID'), ($order = 'DESC'), ['LOGIN' => 'retailcrm']);
|
|
|
|
if ($arUser = $rsUser->Fetch()) {
|
|
return $arUser['ID'];
|
|
}
|
|
|
|
$retailUser = new CUser;
|
|
$userPassword = uniqid();
|
|
|
|
$arFields = [
|
|
'NAME' => 'retailcrm',
|
|
'LAST_NAME' => 'retailcrm',
|
|
'EMAIL' => 'retailcrm@retailcrm.com',
|
|
'LOGIN' => 'retailcrm',
|
|
'LID' => 'ru',
|
|
'ACTIVE' => 'Y',
|
|
'GROUP_ID' => [2],
|
|
'PASSWORD' => $userPassword,
|
|
'CONFIRM_PASSWORD' => $userPassword,
|
|
];
|
|
|
|
$id = $retailUser->Add($arFields);
|
|
|
|
if (!$id) {
|
|
return null;
|
|
}
|
|
|
|
return $id;
|
|
}
|
|
}
|