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
af287cb2
Commit
af287cb2
authored
Mar 16, 2022
by
Julien Jorry
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix Cotisation bug on emlc paiement
parent
12479010
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
Cotisation.php
src/Entity/Cotisation.php
+2
-2
No files found.
src/Entity/Cotisation.php
View file @
af287cb2
...
@@ -49,7 +49,7 @@ class Cotisation extends Flux
...
@@ -49,7 +49,7 @@ class Cotisation extends Flux
public
function
getAllOperations
(
$em
)
public
function
getAllOperations
(
$em
)
{
{
if
(
MoyenEnum
::
MOYEN_MLC
==
$this
->
getMoyen
())
{
if
(
MoyenEnum
::
MOYEN_
E
MLC
==
$this
->
getMoyen
())
{
return
[
return
[
OperationFactory
::
getOperation
(
$this
,
$this
->
getExpediteur
(),
CurrencyEnum
::
CURRENCY_EMLC
,
-
$this
->
getMontant
()),
OperationFactory
::
getOperation
(
$this
,
$this
->
getExpediteur
(),
CurrencyEnum
::
CURRENCY_EMLC
,
-
$this
->
getMontant
()),
OperationFactory
::
getOperation
(
$this
,
$this
->
getDestinataire
(),
CurrencyEnum
::
CURRENCY_EMLC
,
$this
->
getMontant
()),
OperationFactory
::
getOperation
(
$this
,
$this
->
getDestinataire
(),
CurrencyEnum
::
CURRENCY_EMLC
,
$this
->
getMontant
()),
...
@@ -65,7 +65,7 @@ class Cotisation extends Flux
...
@@ -65,7 +65,7 @@ class Cotisation extends Flux
public
function
operate
(
$em
)
public
function
operate
(
$em
)
{
{
if
(
MoyenEnum
::
MOYEN_MLC
==
$this
->
getMoyen
())
{
if
(
MoyenEnum
::
MOYEN_
E
MLC
==
$this
->
getMoyen
())
{
$compteExp
=
$this
->
getExpediteur
()
->
getEcompte
()
-
$this
->
getMontant
();
$compteExp
=
$this
->
getExpediteur
()
->
getEcompte
()
-
$this
->
getMontant
();
if
(
$compteExp
<
0
)
{
if
(
$compteExp
<
0
)
{
throw
new
\Exception
(
'[FLUX] Opération impossible ! Montant supérieur au solde de monnaie éléctronique !'
);
throw
new
\Exception
(
'[FLUX] Opération impossible ! Montant supérieur au solde de monnaie éléctronique !'
);
...
...
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