Procházet zdrojové kódy

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 před 5 roky
rodič
revize
226adb0d4e
1 změnil soubory, kde provedl 2 přidání a 1 odebrání
  1. +2
    -1
      common/models/CreditHistory.php

+ 2
- 1
common/models/CreditHistory.php Zobrazit soubor

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

Načítá se…
Zrušit
Uložit