|
|
@@ -72,7 +72,9 @@ Ext.define('saas.view.core.dbfind.DbfindTrigger', {
|
|
|
var dbtplcondition = "";
|
|
|
for (let index = 0; index < dbfinds.length; index++) {
|
|
|
var item = dbfinds[index].from;
|
|
|
- dbtplcondition+= "upper("+item+") like '%"+queryString.toUpperCase()+"%' or ";
|
|
|
+ if(!dbfinds[index].ignore){
|
|
|
+ dbtplcondition+= "upper("+item+") like '%"+queryString.toUpperCase()+"%' or ";
|
|
|
+ }
|
|
|
}
|
|
|
dbtplcondition = "(" + dbtplcondition.substring(0,dbtplcondition.length-4) + ")";
|
|
|
if(dbtplcondition.length>0){
|