浏览代码

Bug statut commande (payé,impayé)

master
keun 7 年前
父节点
当前提交
5d6dee049a
共有 1 个文件被更改,包括 6 次插入6 次删除
  1. +6
    -6
      common/models/Commande.php

+ 6
- 6
common/models/Commande.php 查看文件

@@ -247,8 +247,13 @@ class Commande extends \yii\db\ActiveRecord
public function getStatutPaiement()
{
// à rembourser
if($this->montant - $this->montant_paye < 0)
{
return self::STATUT_SURPLUS ;
}
// payé
if($this->montant - $this->montant_paye < 0.001)
elseif($this->montant - $this->montant_paye < 0.001)
{
return self::STATUT_PAYEE ;
}
@@ -257,11 +262,6 @@ class Commande extends \yii\db\ActiveRecord
{
return self::STATUT_IMPAYEE ;
}
// à rembourser
elseif($this->montant - $this->montant_paye < 0.01)
{
return self::STATUT_SURPLUS ;
}
}
public function getResumePanier()

正在加载...
取消
保存