Переглянути джерело

Correction statut paiements

Certaines commandes sont notées "à rembourser 0€". On ajuste alors la fonction qui retourne le statut des commandes.
refactoring
keun 6 роки тому
джерело
коміт
e4279ab80a
1 змінених файлів з 6 додано та 5 видалено
  1. +6
    -5
      common/models/Commande.php

+ 6
- 5
common/models/Commande.php Переглянути файл

@@ -225,14 +225,15 @@ class Commande extends \yii\db\ActiveRecord {
}

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

Завантаження…
Відмінити
Зберегти