Sfoglia il codice sorgente

[backend] Abonnements : pouvoir rechercher par subscription.username

dev
parent
commit
0055d81aac
1 ha cambiato i file con 2 aggiunte e 1 eliminazioni
  1. +2
    -1
      common/models/SubscriptionSearch.php

+ 2
- 1
common/models/SubscriptionSearch.php Vedi File

@@ -134,7 +134,8 @@ class SubscriptionSearch extends Subscription
$query->andFilterWhere([
'or',
['like', 'user.lastname', $this->username],
['like', 'user.name', $this->username]
['like', 'user.name', $this->username],
['like', 'subscription.username', $this->username]
]);
$query->andFilterWhere(['like', 'product.name', $this->product_name]) ;

Loading…
Annulla
Salva