Parcourir la source

Correctif : username dans dernières commandes du tableau de bord du backend

master
keun il y a 7 ans
Parent
révision
a75d363db1
1 fichiers modifiés avec 3 ajouts et 0 suppressions
  1. +3
    -0
      common/models/Commande.php

+ 3
- 0
common/models/Commande.php Voir le fichier

@@ -344,6 +344,9 @@ class Commande extends \yii\db\ActiveRecord
{
return Html::encode($this->user->prenom.' '.$this->user->nom) ;
}
elseif(strlen($this->username)) {
return Html::encode($this->username) ;
}
else {
return 'Client introuvable' ;
}

Chargement…
Annuler
Enregistrer