Przeglądaj źródła

Adaptation du statut de paiement d'une commande en fonction du montant payé

dev
Guillaume Bourgeois 5 lat temu
rodzic
commit
41d4a5aa61
1 zmienionych plików z 1 dodań i 1 usunięć
  1. +1
    -1
      common/models/Order.php

+ 1
- 1
common/models/Order.php Wyświetl plik

@@ -349,7 +349,7 @@ class Order extends ActiveRecordCommon
{
// payé
if ($this->getAmount() - $this->getAmount(self::AMOUNT_PAID) < 0.01 &&
$this->getAmount() - $this->getAmount(self::AMOUNT_PAID) >= 0)
$this->getAmount() - $this->getAmount(self::AMOUNT_PAID) > -0.01)
{
return self::PAYMENT_PAID ;
}

Ładowanie…
Anuluj
Zapisz