|
|
@@ -65,13 +65,13 @@ define(['jquery', 'bootstrap', 'backend', 'table', 'form'], function ($, undefin
|
|
|
}},
|
|
|
{field: 'email', title: __('Email'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
{field: 'phone', title: __('Phone'), operate: 'LIKE', table: table, class: 'autocontent', formatter: Table.api.formatter.content},
|
|
|
- {field: 'score', title: __('Score'), operate: 'BETWEEN', sortable: true, visible: false, formatter: function (value) {
|
|
|
+ {field: 'score', title: __('Score'), operate: false, sortable: true, visible: false, formatter: function (value) {
|
|
|
if (value === null || value === undefined || value === '') {
|
|
|
return '';
|
|
|
}
|
|
|
return String(parseInt(value, 10));
|
|
|
}},
|
|
|
- {field: 'monthly_score', title: __('Monthly_score'), operate: 'BETWEEN', sortable: true, visible: false, formatter: function (value) {
|
|
|
+ {field: 'monthly_score', title: __('Monthly_score'), operate: false, sortable: true, visible: false, formatter: function (value) {
|
|
|
if (value === null || value === undefined || value === '') {
|
|
|
return '';
|
|
|
}
|