소스 검색

Bug montants de commandes erronés

master
keun 7 년 전
부모
커밋
5c97ede93b
1개의 변경된 파일3개의 추가작업 그리고 3개의 파일을 삭제
  1. +3
    -3
      common/models/Commande.php

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

@@ -248,17 +248,17 @@ class Commande extends \yii\db\ActiveRecord
public function getStatutPaiement()
{
// à rembourser
if($this->montant - $this->montant_paye < 0)
if($this->getMontant() - $this->getMontantPaye() < 0)
{
return self::STATUT_SURPLUS ;
}
// payé
elseif($this->montant - $this->montant_paye < 0.001)
elseif($this->getMontant() - $this->getMontantPaye() < 0.001)
{
return self::STATUT_PAYEE ;
}
// reste à payer
elseif($this->montant - $this->montant_paye > 0.01)
elseif($this->getMontant() - $this->getMontantPaye() > 0.01)
{
return self::STATUT_IMPAYEE ;
}

Loading…
취소
저장