Browse Source

Bug montants de commandes erronés

master
keun 7 years ago
parent
commit
5c97ede93b
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      common/models/Commande.php

+ 3
- 3
common/models/Commande.php View File

public function getStatutPaiement() public function getStatutPaiement()
{ {
// à rembourser // à rembourser
if($this->montant - $this->montant_paye < 0)
if($this->getMontant() - $this->getMontantPaye() < 0)
{ {
return self::STATUT_SURPLUS ; return self::STATUT_SURPLUS ;
} }
// payé // payé
elseif($this->montant - $this->montant_paye < 0.001)
elseif($this->getMontant() - $this->getMontantPaye() < 0.001)
{ {
return self::STATUT_PAYEE ; return self::STATUT_PAYEE ;
} }
// reste à payer // reste à payer
elseif($this->montant - $this->montant_paye > 0.01)
elseif($this->getMontant() - $this->getMontantPaye() > 0.01)
{ {
return self::STATUT_IMPAYEE ; return self::STATUT_IMPAYEE ;
} }

Loading…
Cancel
Save