Procházet zdrojové kódy

Correction statut paiements

Certaines commandes sont notées "à rembourser 0€". On ajuste alors la fonction qui retourne le statut des commandes.
refactoring
keun před 6 roky
rodič
revize
13fbce3b4e
1 změnil soubory, kde provedl 3 přidání a 3 odebrání
  1. +3
    -3
      common/models/Commande.php

+ 3
- 3
common/models/Commande.php Zobrazit soubor

@@ -226,15 +226,15 @@ class Commande extends \yii\db\ActiveRecord {

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

Načítá se…
Zrušit
Uložit