We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fb1ea0a commit d2170b8Copy full SHA for d2170b8
src/Controller/Admin/PaymentOrderCrudController.php
@@ -475,7 +475,8 @@ public function configureFields(string $pageName): iterable
475
476
//Payee bank account infos
477
$bankInfoPanel = FormField::addFieldset('payment_order.group.bank_info');
478
- $bankInfoIban = TextField::new('bank_info.iban', 'bank_info.iban.label');
+ $bankInfoIban = TextField::new('bank_info.iban', 'bank_info.iban.label')
479
+ ->formatValue(fn($value, PaymentOrder $entity) => $entity->getBankInfo()->getIbanFormatted());
480
$bankInfoBic = TextField::new('bank_info.bic', 'bank_info.bic.label')
481
->setRequired(false)
482
->setFormTypeOption('empty_data', '');
0 commit comments