Explorar el Código

Résolution bug d'envoi de relance à l'utilisateur alors que la limite de crédit avant relance n'est pas définie dans les paramètres du producteur.

dev
Guillaume Bourgeois hace 5 años
padre
commit
226adb0d4e
Se han modificado 1 ficheros con 2 adiciones y 1 borrados
  1. +2
    -1
      common/models/CreditHistory.php

+ 2
- 1
common/models/CreditHistory.php Ver fichero

@@ -198,7 +198,8 @@ class CreditHistory extends ActiveRecordCommon
}
$newCredit = $userProducer->credit ;
if($oldCredit > $creditLimitReminder && $newCredit <= $creditLimitReminder) {
if(!is_null($creditLimitReminder) &&
$oldCredit > $creditLimitReminder && $newCredit <= $creditLimitReminder) {
$user = User::findOne($this->id_user) ;
$producer = Producer::findOne($this->id_producer) ;
Yii::$app->mailer->compose(

Cargando…
Cancelar
Guardar