1
0
mirror of synced 2025-01-19 17:31:43 +03:00

order fio concat fix

This commit is contained in:
Grisha Pomadchin 2014-09-15 11:49:44 +04:00
parent 6624be556e
commit e68139ab54

View File

@ -695,10 +695,10 @@ class ICrmOrderActions
switch ($ar['CODE']) {
case $optionsOrderProps[$arFields['PERSON_TYPE_ID']]['fio']:
if (isset($order['firstName']))
$contactName['firstName'] = self::fromJSON($order['firstName']);
if (isset($order['lastName']))
$contactName['lastName'] = self::fromJSON($order['lastName']);
if (isset($order['firstName']))
$contactName['firstName'] = self::fromJSON($order['firstName']);
if (isset($order['patronymic']))
$contactName['patronymic'] = self::fromJSON($order['patronymic']);