Browse Source

经销商目标管理详情列表20231018142103 搜索项无效,排序无效,增加经销商简称列 abbreviation

wu 3 weeks ago
parent
commit
905ec393a1

+ 5 - 0
src/custom/restcontroller/webmanage/sale/salestarget/enterprisetarget.java

@@ -183,6 +183,11 @@ public class enterprisetarget extends Controller {
                     where1.append(" t1.enterprisename like '%").append(content_where.getJSONObject("tablefilter").getStringValue("enterprisename")).append("%' ");
                     where1.append(")");
                 }
+                if(StringUtils.isNotBlank(content_where.getJSONObject("tablefilter").getStringValue("abbreviation"))){
+                    where1.append(" and(");
+                    where1.append(" t1.abbreviation like '%").append(content_where.getJSONObject("tablefilter").getStringValue("abbreviation")).append("%' ");
+                    where1.append(")");
+                }
             }
         }