Skip to content

Commit

Permalink
Fix nenes25#5
Browse files Browse the repository at this point in the history
  • Loading branch information
nenes25 committed Jun 2, 2021
1 parent a73cea8 commit 63e70e4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion customerautogroups/changelog.txt
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@ V 0.3.2 - 2016-06-18 : Correction conditions < && <=
V 0.3.3 - 2016-12-02 : Optimisation des lablels des filtres de la grille // Grid filters labels optimisation
V 0.3.4 - 2016-12-07 : PS norms
V 0.4.0 - 2017-04-06 : Compatibilité Prestashop 1.7 // Prestashop 1.7 compatibility
V 0.5.0 - 2017-06-15 : Nouvelles conditions de filtres NOT LIKE, IN, NOT IN // New filters conditions NOT LIKE, IN, NOT IN
V 0.5.0 - 2017-06-15 : Nouvelles conditions de filtres NOT LIKE, IN, NOT IN // New filters conditions NOT LIKE, IN, NOT IN
V 0.5.1 - 2021-06-02 : #4 Backend error
#5 Fix Column 'name' in where clause is ambiguous
6 changes: 5 additions & 1 deletion customerautogroups/controllers/admin/rules.php
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,11 @@ public function __construct()
'align' => 'center',
'class' => 'fixed-width-xs'
),
'name' => array('title' => $this->l('Name')),
'name' => array(
'title' => $this->l('Name'),
'lang' => true,
'filter_key' => 'b!name',
),
'condition_type_name' => array(
'title' => $this->l('Condition Type'),
'align' => 'center',
Expand Down
2 changes: 1 addition & 1 deletion customerautogroups/customerautogroups.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public function __construct()
$this->author = 'hhennes';
$this->name = 'customerautogroups';
$this->tab = 'others';
$this->version = '0.5.0';
$this->version = '0.5.1';
$this->bootstrap = true;
$this->need_instance = 0;

Expand Down

0 comments on commit 63e70e4

Please sign in to comment.