Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
K
kohinos-tav
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
6
Merge Requests
6
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
agplv3
kohinos-tav
Commits
6ad23a1b
Commit
6ad23a1b
authored
Mar 21, 2024
by
Yvon
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
change glob parameter name, fix bug, add migration
parent
4d8e8c8f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
9 additions
and
9 deletions
+9
-9
FluxController.php
src/Controller/FluxController.php
+3
-3
GlobalParameter.php
src/Entity/GlobalParameter.php
+3
-3
GlobalConfigurationFormType.php
src/Form/Type/GlobalConfigurationFormType.php
+3
-3
No files found.
src/Controller/FluxController.php
View file @
6ad23a1b
...
@@ -188,9 +188,9 @@ class FluxController extends AbstractController
...
@@ -188,9 +188,9 @@ class FluxController extends AbstractController
{
{
//raison, bic and iban from debitor are fetched in global parameters
//raison, bic and iban from debitor are fetched in global parameters
$globalParametersRepository
=
$this
->
em
->
getRepository
(
GlobalParameter
::
class
);
$globalParametersRepository
=
$this
->
em
->
getRepository
(
GlobalParameter
::
class
);
$raison
=
$globalParametersRepository
->
val
(
GlobalParameter
::
RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION
);
$raison
=
$globalParametersRepository
->
val
(
GlobalParameter
::
VIREMENT_RECONVERSION_RAISON_GESTIONNAIRE
);
$bic
=
$globalParametersRepository
->
val
(
GlobalParameter
::
RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION
);
$bic
=
$globalParametersRepository
->
val
(
GlobalParameter
::
VIREMENT_RECONVERSION_BIC_GESTIONNAIRE
);
$iban
=
$globalParametersRepository
->
val
(
GlobalParameter
::
RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION
);
$iban
=
$globalParametersRepository
->
val
(
GlobalParameter
::
VIREMENT_RECONVERSION_IBAN_GESTIONNAIRE
);
//make sure raison, bic and iban are not empty
//make sure raison, bic and iban are not empty
...
...
src/Entity/GlobalParameter.php
View file @
6ad23a1b
...
@@ -51,9 +51,9 @@ class GlobalParameter
...
@@ -51,9 +51,9 @@ class GlobalParameter
const
HELLOASSO_URL_COTISATION_ADHERENT
=
'HELLOASSO_URL_COTISATION_ADHERENT'
;
const
HELLOASSO_URL_COTISATION_ADHERENT
=
'HELLOASSO_URL_COTISATION_ADHERENT'
;
const
HELLOASSO_URL_COTISATION_PRESTATAIRE
=
'HELLOASSO_URL_COTISATION_PRESTATAIRE'
;
const
HELLOASSO_URL_COTISATION_PRESTATAIRE
=
'HELLOASSO_URL_COTISATION_PRESTATAIRE'
;
const
CONTACT_FORM_PHONE_NUMBER
=
'CONTACT_FORM_PHONE_NUMBER'
;
const
CONTACT_FORM_PHONE_NUMBER
=
'CONTACT_FORM_PHONE_NUMBER'
;
const
RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION
=
'RAISON_GESTIONNAIRE_VIREMENT_RECONVERSION
'
;
const
VIREMENT_RECONVERSION_RAISON_GESTIONNAIRE
=
'VIREMENT_RECONVERSION_RAISON_GESTIONNAIRE
'
;
const
BIC_GESTIONNAIRE_VIREMENT_RECONVERSION
=
'BIC_GESTIONNAIRE_VIREMENT_RECONVERSION
'
;
const
VIREMENT_RECONVERSION_BIC_GESTIONNAIRE
=
'VIREMENT_RECONVERSION_BIC_GESTIONNAIRE
'
;
const
IBAN_GESTIONNAIRE_VIREMENT_RECONVERSION
=
'IBAN_GESTIONNAIRE_VIREMENT_RECONVERSION
'
;
const
VIREMENT_RECONVERSION_IBAN_GESTIONNAIRE
=
'VIREMENT_RECONVERSION_IBAN_GESTIONNAIRE
'
;
/**
/**
* @var \Ramsey\Uuid\UuidInterface
* @var \Ramsey\Uuid\UuidInterface
...
...
src/Form/Type/GlobalConfigurationFormType.php
View file @
6ad23a1b
...
@@ -334,21 +334,21 @@ class GlobalConfigurationFormType extends AbstractType
...
@@ -334,21 +334,21 @@ class GlobalConfigurationFormType extends AbstractType
->
add
(
'raisongestionnairevirementreconversion'
,
GlobalParameterType
::
class
,
[
->
add
(
'raisongestionnairevirementreconversion'
,
GlobalParameterType
::
class
,
[
'label'
=>
'Raison du gestionnaire pour les virements de reconversion automatisés'
,
'label'
=>
'Raison du gestionnaire pour les virements de reconversion automatisés'
,
'_description'
=>
'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
,
'required'
=>
false
,
'_placeholder'
=>
''
,
'_placeholder'
=>
''
,
])
])
->
add
(
'bicgestionnairevirementreconversion'
,
GlobalParameterType
::
class
,
[
->
add
(
'bicgestionnairevirementreconversion'
,
GlobalParameterType
::
class
,
[
'label'
=>
'BIC du gestionnaire pour les virements de reconversion automatisés'
,
'label'
=>
'BIC du gestionnaire pour les virements de reconversion automatisés'
,
'_description'
=>
'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
,
'required'
=>
false
,
'_placeholder'
=>
''
,
'_placeholder'
=>
''
,
])
])
->
add
(
'ibangestionnairevirementreconversion'
,
GlobalParameterType
::
class
,
[
->
add
(
'ibangestionnairevirementreconversion'
,
GlobalParameterType
::
class
,
[
'label'
=>
'IBAN du gestionnaire pour les virements de reconversion automatisés'
,
'label'
=>
'IBAN du gestionnaire pour les virements de reconversion automatisés'
,
'_description'
=>
'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
,
'required'
=>
false
,
'_placeholder'
=>
''
,
'_placeholder'
=>
''
,
])
])
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment