feat: filter assignments and applications by teamer name
closes #869b9vgq7
This commit is contained in:
@@ -11,6 +11,7 @@ use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
|
||||
@@ -88,6 +89,11 @@ class ApplicationFilterType extends AbstractType
|
||||
'label' => 'ID',
|
||||
'required' => false,
|
||||
])
|
||||
->add('teamerName', TextType::class, [
|
||||
'label' => 'Teamer:in',
|
||||
'required' => false,
|
||||
'empty_data' => null,
|
||||
])
|
||||
->add('status', MultiselectType::class, [
|
||||
'label' => 'Status',
|
||||
'required' => false,
|
||||
|
||||
@@ -11,6 +11,7 @@ use Symfony\Component\Form\Extension\Core\Type\CheckboxType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\ChoiceType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\IntegerType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\SubmitType;
|
||||
use Symfony\Component\Form\Extension\Core\Type\TextType;
|
||||
use Symfony\Component\Form\FormBuilderInterface;
|
||||
use Symfony\Component\OptionsResolver\OptionsResolver;
|
||||
|
||||
@@ -92,6 +93,11 @@ class AssignmentFilterType extends AbstractType
|
||||
'label' => 'ID',
|
||||
'required' => false,
|
||||
])
|
||||
->add('teamerName', TextType::class, [
|
||||
'label' => 'Teamer:in',
|
||||
'required' => false,
|
||||
'empty_data' => null,
|
||||
])
|
||||
->add('status', MultiselectType::class, [
|
||||
'label' => 'Status',
|
||||
'required' => false,
|
||||
|
||||
Reference in New Issue
Block a user