소스 검색

Correction statut paiements

Certaines commandes sont notées "à rembourser 0€". On ajuste alors la fonction qui retourne le statut des commandes.
refactoring
keun 6 년 전
부모
커밋
13fbce3b4e
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      common/models/Commande.php

+ 3
- 3
common/models/Commande.php 파일 보기

@@ -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;
}
}

Loading…
취소
저장