|
|
@@ -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() |