Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Не могу установить значение поля select #514

Open
AntonGap opened this issue May 27, 2023 · 0 comments
Open

Comments

@AntonGap
Copy link

AntonGap commented May 27, 2023

Использую метод fromArray для установки значений пользовательских полей, все поля устанавливаются, а поле селект с использованием enum_id не устанавливается. При этом если добавить значение поля после(метод add), то все устанавливается корректно. Подскажите, почему может не работать. Код прикрепил ниже
$leads = [ [ 'name' => 'Request from (V4', 'status_id' => 40483069, 'responsible_user_id' => 5840638, 'custom_fields_values' => [ [ 'field_id' => 931767, 'values' => [['value' => '[email protected]']] ], [ 'field_id' => 931765, 'values' => [['enum_id' => 1161671]] ], [ 'field_id' => 931921, 'values' => [['value' => 'Custom text value']] ], [ 'field_id' => 940605, 'values' => [['value' => time()]] ], ] ] ];
foreach ($leads as $item) { $lead = (new LeadModel()) ->setName($item['name']) ->setStatusId($item['status_id']) ->setResponsibleUserId($item['responsible_user_id']) ->setCustomFieldsValues( (new CustomFieldsValuesCollection()) ->fromArray($item['custom_fields_values'])//не выставляет значение поля из массива через enum_id ->add((new SelectCustomFieldValuesModel())//так выставляет значение ->setFieldId(931765) ->setValues( (new SelectCustomFieldValueCollection()) ->add( (new SelectCustomFieldValueModel()) ->setEnumId(1161671) ) ) ) ); $leadsCollection->add($lead); }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant