Skip to content

Commit

Permalink
feat(ticket): add search option = project task
Browse files Browse the repository at this point in the history
  • Loading branch information
Rom1-B authored and trasher committed Nov 19, 2024
1 parent 2e7c83e commit 6b8e45b
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions src/Ticket.php
Original file line number Diff line number Diff line change
Expand Up @@ -3135,6 +3135,24 @@ public function rawSearchOptions()
}
}

$tab[] = [
'id' => '111',
'table' => ProjectTask::getTable(),
'field' => 'name',
'name' => ProjectTask::getTypeName(1),
'datatype' => 'dropdown',
'massiveaction' => false,
'forcegroupby' => true,
'joinparams' => [
'beforejoin' => [
'table' => ProjectTask_Ticket::getTable(),
'joinparams' => [
'jointype' => 'child',
]
]
]
];

return $tab;
}

Expand Down

0 comments on commit 6b8e45b

Please sign in to comment.