|
@@ -141,7 +141,16 @@ public class orderclue extends Controller {
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
if (isAll) {
|
|
if (isAll) {
|
|
|
- String[] columns = {"sat_orderclueid", "sys_enterprise_hrid", "isMemberFollow", "logtype", "lognum", "logtype", "followBy", "followDate", "isTeam"};
|
|
|
|
|
|
|
+ String[] columns = {
|
|
|
|
|
+ "sat_orderclueid",
|
|
|
|
|
+ "sys_enterprise_hrid",
|
|
|
|
|
+ "isMemberFollow",
|
|
|
|
|
+ "logtype",
|
|
|
|
|
+ "lognum",
|
|
|
|
|
+ "logtype",
|
|
|
|
|
+ "followBy",
|
|
|
|
|
+ "followDate",
|
|
|
|
|
+ "isTeam"};
|
|
|
for (String column : columns) {
|
|
for (String column : columns) {
|
|
|
rows.getFieldList().remove(column);
|
|
rows.getFieldList().remove(column);
|
|
|
}
|
|
}
|
|
@@ -171,7 +180,9 @@ public class orderclue extends Controller {
|
|
|
}
|
|
}
|
|
|
QuerySQL querySQL = SQLFactory.createQuerySQL(this, "sat_orderclue");
|
|
QuerySQL querySQL = SQLFactory.createQuerySQL(this, "sat_orderclue");
|
|
|
querySQL.addQueryFields("num", "count(0)");
|
|
querySQL.addQueryFields("num", "count(0)");
|
|
|
- querySQL.setWhere("status", new String[]{"待跟进", "跟进中"});
|
|
|
|
|
|
|
+ querySQL.setWhere("status", new String[]{
|
|
|
|
|
+ "待跟进",
|
|
|
|
|
+ "跟进中"});
|
|
|
querySQL.setWhere("sat_orderclueid", sat_orderclueids);
|
|
querySQL.setWhere("sat_orderclueid", sat_orderclueids);
|
|
|
Rows rows = querySQL.query();
|
|
Rows rows = querySQL.query();
|
|
|
JSONObject resObj = new JSONObject();
|
|
JSONObject resObj = new JSONObject();
|