Commit 1a414077 by Damien Moulard

1435 - update money balances after presta reconversion

parent 3f3f2398
...@@ -56,9 +56,12 @@ class TransfertPrestataireComptoir extends Transfert ...@@ -56,9 +56,12 @@ class TransfertPrestataireComptoir extends Transfert
// On augmente le compte de e-mmonaie du presta // On augmente le compte de e-mmonaie du presta
$this->getExpediteur()->addEcompte($this->getMontant()); $this->getExpediteur()->addEcompte($this->getMontant());
// On augmente le solde du comptoir (récupération des billets) // On augmente le solde billets du comptoir
$this->getDestinataire()->addCompte($this->getMontant()); $this->getDestinataire()->addCompte($this->getMontant());
// On baisse le solde de billets nanties au siège
$this->getDestinataire()->getGroupe()->getSiege()->removeCompteNantie($this->getMontant());
// On augmente le solde de e-monnaie nantie du siège // On augmente le solde de e-monnaie nantie du siège
$this->getDestinataire()->getGroupe()->getSiege()->addEcompte($this->getMontant()); $this->getDestinataire()->getGroupe()->getSiege()->addEcompte($this->getMontant());
......
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