Allow to filter by the number of part lots.

This commit is contained in:
Jan Böhmer 2022-08-28 19:39:16 +02:00
parent 99b25fb293
commit b8c77ca855
4 changed files with 63 additions and 3 deletions

View file

@ -142,6 +142,11 @@ class PartFilterType extends AbstractType
'min' => 0,
]);
$builder->add('lotCount', NumberConstraintType::class, [
'label' => 'part.filter.lot_count',
'min' => 0
]);
$builder->add('submit', SubmitType::class, [
'label' => 'Update',