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
1
Merge Requests
1
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
d32f7a49
Commit
d32f7a49
authored
Dec 13, 2022
by
Damien Moulard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
small fixes
parent
cd0105f3
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
7 deletions
+4
-7
FluxController.php
src/Controller/FluxController.php
+0
-4
UserAdherentController.php
src/Controller/UserAdherentController.php
+0
-1
TauxCotisationPrelevement.php
src/Entity/TauxCotisationPrelevement.php
+2
-1
TauxCotisationReversement.php
src/Entity/TauxCotisationReversement.php
+2
-1
No files found.
src/Controller/FluxController.php
View file @
d32f7a49
...
...
@@ -52,7 +52,6 @@ use Symfony\Component\Serializer\Normalizer\ObjectNormalizer;
use
Symfony\Component\Serializer\Serializer
;
use
Symfony\Component\Translation\TranslatorInterface
;
use
Symfony\Component\Validator\Validator\ValidatorInterface
;
use
Symfony\Component\Routing\RouterInterface
;
use
Twig\Environment
;
/**
...
...
@@ -94,7 +93,6 @@ class FluxController extends AbstractController
protected
$operationUtils
;
protected
$tokenGenerator
;
protected
$validator
;
protected
$router
;
public
function
__construct
(
Security
$security
,
...
...
@@ -112,7 +110,6 @@ class FluxController extends AbstractController
TokenGeneratorInterface
$tokenGenerator
,
ValidatorInterface
$validator
,
CsrfTokenManagerInterface
$tokenManager
,
RouterInterface
$router
)
{
$this
->
security
=
$security
;
$this
->
em
=
$em
;
...
...
@@ -128,7 +125,6 @@ class FluxController extends AbstractController
$this
->
tokenGenerator
=
$tokenGenerator
;
$this
->
validator
=
$validator
;
$this
->
tokenManager
=
$tokenManager
;
$this
->
router
=
$router
;
$this
->
tavCotisationsUtils
=
$tavCotisationsUtils
;
}
...
...
src/Controller/UserAdherentController.php
View file @
d32f7a49
...
...
@@ -2,7 +2,6 @@
namespace
App\Controller
;
use
App\Entity\Flux
;
use
App\Entity\AchatMonnaieAConfirmerAdherent
;
use
App\Entity\AchatMonnaieAdherent
;
use
App\Entity\Adherent
;
...
...
src/Entity/TauxCotisationPrelevement.php
View file @
d32f7a49
...
...
@@ -7,7 +7,8 @@ use App\Utils\OperationFactory;
use
Doctrine\ORM\Mapping
as
ORM
;
/**
* En cas de taux négatif, un second flux est créé pour prélever le complément de la cotisation.
* En cas de taux < 1, l'adhérent•e reçoit moins d'emlc que ce qu'elle•il paye en € :
* un second flux est créé pour prélever le complément de la cotisation.
*
* @ORM\Entity
*/
...
...
src/Entity/TauxCotisationReversement.php
View file @
d32f7a49
...
...
@@ -7,7 +7,8 @@ use App\Utils\OperationFactory;
use
Doctrine\ORM\Mapping
as
ORM
;
/**
* En cas de taux positif, un second flux est créé pour reverser le complément de la cotisation.
* En cas de taux > 1, l'adhérent•e reçoit plus d'emlc que ce qu'elle•il paye en € :
* un second flux est créé pour reverser le complément de la cotisation.
*
* @ORM\Entity
*/
...
...
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