瀏覽代碼

Merge branch 'dev'

master
keun 6 年之前
父節點
當前提交
825131bd01
共有 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…
取消
儲存