Commit 6ad23a1b by Yvon

change glob parameter name, fix bug, add migration

parent 4d8e8c8f
......@@ -188,9 +188,9 @@ class FluxController extends AbstractController
{
//raison, bic and iban from debitor are fetched in global parameters
$globalParametersRepository = $this->em->getRepository(GlobalParameter::class);
$raison = $globalParametersRepository->val(GlobalParameter::RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION);
$bic = $globalParametersRepository->val(GlobalParameter::RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION);
$iban = $globalParametersRepository->val(GlobalParameter::RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION);
$raison = $globalParametersRepository->val(GlobalParameter::VIREMENT_RECONVERSION_RAISON_GESTIONNAIRE);
$bic = $globalParametersRepository->val(GlobalParameter::VIREMENT_RECONVERSION_BIC_GESTIONNAIRE);
$iban = $globalParametersRepository->val(GlobalParameter::VIREMENT_RECONVERSION_IBAN_GESTIONNAIRE);
//make sure raison, bic and iban are not empty
......
......@@ -51,9 +51,9 @@ class GlobalParameter
const HELLOASSO_URL_COTISATION_ADHERENT = 'HELLOASSO_URL_COTISATION_ADHERENT';
const HELLOASSO_URL_COTISATION_PRESTATAIRE = 'HELLOASSO_URL_COTISATION_PRESTATAIRE';
const CONTACT_FORM_PHONE_NUMBER = 'CONTACT_FORM_PHONE_NUMBER';
const RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION = 'RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION';
const BIC_GESTIONNAIRE_VIREMENT_RECONVERSION = 'BIC_GESTIONNAIRE_VIREMENT_RECONVERSION';
const IBAN_GESTIONNAIRE_VIREMENT_RECONVERSION = 'IBAN_GESTIONNAIRE_VIREMENT_RECONVERSION';
const VIREMENT_RECONVERSION_RAISON_GESTIONNAIRE = 'VIREMENT_RECONVERSION_RAISON_GESTIONNAIRE';
const VIREMENT_RECONVERSION_BIC_GESTIONNAIRE = 'VIREMENT_RECONVERSION_BIC_GESTIONNAIRE';
const VIREMENT_RECONVERSION_IBAN_GESTIONNAIRE = 'VIREMENT_RECONVERSION_IBAN_GESTIONNAIRE';
/**
* @var \Ramsey\Uuid\UuidInterface
......
......@@ -334,21 +334,21 @@ class GlobalConfigurationFormType extends AbstractType
->add('raisongestionnairevirementreconversion', GlobalParameterType::class, [
'label' => 'Raison du gestionnaire pour les virements de reconversion automatisés',
'_description' => 'Raison du gestionnaire pour les virements de reconversion automatisés',
'name_param' => GlobalParameter::RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION,
'name_param' => GlobalParameter::VIREMENT_RECONVERSION_RAISON_GESTIONNAIRE,
'required' => false,
'_placeholder' => '',
])
->add('bicgestionnairevirementreconversion', GlobalParameterType::class, [
'label' => 'BIC du gestionnaire pour les virements de reconversion automatisés',
'_description' => 'BIC du gestionnaire pour les virements de reconversion automatisés',
'name_param' => GlobalParameter::BIC_GESTIONNAIRE_VIREMENT_RECONVERSION,
'name_param' => GlobalParameter::VIREMENT_RECONVERSION_BIC_GESTIONNAIRE,
'required' => false,
'_placeholder' => '',
])
->add('ibangestionnairevirementreconversion', GlobalParameterType::class, [
'label' => 'IBAN du gestionnaire pour les virements de reconversion automatisés',
'_description' => 'IBAN du gestionnaire pour les virements de reconversion automatisés',
'name_param' => GlobalParameter::IBAN_GESTIONNAIRE_VIREMENT_RECONVERSION,
'name_param' => GlobalParameter::VIREMENT_RECONVERSION_IBAN_GESTIONNAIRE,
'required' => false,
'_placeholder' => '',
])
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment