Explorar el Código

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

dev
Guillaume Bourgeois hace 5 años
padre
commit
41d4a5aa61
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      common/models/Order.php

+ 1
- 1
common/models/Order.php Ver fichero

@@ -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 ;
}

Cargando…
Cancelar
Guardar