Fix
This commit is contained in:
parent
87387701c3
commit
9e386209d7
@ -127,7 +127,7 @@ if (isset($_GET['ajaxDiscountCustomers']))
|
|||||||
$filter = Tools::getValue('filter');
|
$filter = Tools::getValue('filter');
|
||||||
|
|
||||||
$filterWithIdCustomer = false;
|
$filterWithIdCustomer = false;
|
||||||
if (strpos($filter, '_')) {
|
if (strpos($filter, '0_') === 0) {
|
||||||
$filterArray = explode('_', $filter);
|
$filterArray = explode('_', $filter);
|
||||||
$filter = $filterArray[1];
|
$filter = $filterArray[1];
|
||||||
$filterWithIdCustomer = true;
|
$filterWithIdCustomer = true;
|
||||||
|
@ -381,10 +381,11 @@ class AdminDiscounts extends AdminTab
|
|||||||
function fillCustomersAjax()
|
function fillCustomersAjax()
|
||||||
{
|
{
|
||||||
var filterValue = \''.(($value = (int)($this->getFieldValue($obj, 'id_customer'))) ? '0_'.$value : (($value = (int)($this->getFieldValue($obj, 'id_group'))) ? '1_'.$value : '')).'\';
|
var filterValue = \''.(($value = (int)($this->getFieldValue($obj, 'id_customer'))) ? '0_'.$value : (($value = (int)($this->getFieldValue($obj, 'id_group'))) ? '1_'.$value : '')).'\';
|
||||||
if ($(\'#filter\').val())
|
if ($(\'#filter\').val()) {
|
||||||
filterValue = $(\'#filter\').val();
|
filterValue = $(\'#filter\').val();
|
||||||
|
}
|
||||||
$.ajaxSetup({ cache: false });
|
$.ajaxSetup({ cache: false });
|
||||||
$.getJSON("'.dirname($currentIndex).'/ajax.php",{ajaxDiscountCustomers:1,filter:filterValue},
|
$.getJSON("'.dirname($currentIndex).'/ajax.php", {ajaxDiscountCustomers:1, filter:filterValue},
|
||||||
function(obj) {
|
function(obj) {
|
||||||
var groups_length = obj.groups.length;
|
var groups_length = obj.groups.length;
|
||||||
if (obj.groups.length == 0)
|
if (obj.groups.length == 0)
|
||||||
|
Loading…
Reference in New Issue
Block a user