mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-07-23 12:24:45 +02:00
Force that an currency has an iso currency code
Otherwise it will crash a lot of formatter code (and a currency which is not existing is not really useful)
This commit is contained in:
parent
059110ae7a
commit
2d5f23271f
2 changed files with 4 additions and 3 deletions
|
@ -42,7 +42,7 @@ class CurrencyAdminForm extends BaseEntityAdminForm
|
|||
$is_new = null === $entity->getID();
|
||||
|
||||
$builder->add('iso_code', CurrencyType::class, [
|
||||
'required' => false,
|
||||
'required' => true,
|
||||
'label' => 'currency.edit.iso_code',
|
||||
'preferred_choices' => ['EUR', 'USD', 'GBP', 'JPY', 'CNY'],
|
||||
'disabled' => !$this->security->isGranted($is_new ? 'create' : 'edit', $entity),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue