Browse Source

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 5 years ago
parent
commit
226adb0d4e
1 changed files with 2 additions and 1 deletions
  1. +2
    -1
      common/models/CreditHistory.php

+ 2
- 1
common/models/CreditHistory.php View File

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

Loading…
Cancel
Save