- Модуль: tasks
- Путь к файлу: ~/bitrix/modules/tasks/lib/scrum/form/itemform.php
- Класс: BitrixTasksScrumFormItemForm
- Вызов: ItemForm::getFieldsToCreateTaskItem
public function getFieldsToCreateTaskItem(): array
{
$this->checkRequiredParametersToCreateTaskItem();
return [
'ENTITY_ID' => $this->entityId,
'ACTIVE' => 'Y',
'SORT' => $this->getSort(),
'CREATED_BY' => $this->createdBy,
'MODIFIED_BY' => $this->createdBy,
'STORY_POINTS' => $this->storyPoints,
'SOURCE_ID' => $this->sourceId,
'EPIC_ID' => $this->epicId,
];
}