|
@@ -939,18 +939,11 @@ public class Customer extends Controller {
|
|
|
row.put("tag", tagList.get(id) != null ? tagList.get(id) : new ArrayList<String>());
|
|
row.put("tag", tagList.get(id) != null ? tagList.get(id) : new ArrayList<String>());
|
|
|
//系统标签
|
|
//系统标签
|
|
|
row.put("tag_sys", sysTagList.get(id) != null ? sysTagList.get(id) : new ArrayList<String>());
|
|
row.put("tag_sys", sysTagList.get(id) != null ? sysTagList.get(id) : new ArrayList<String>());
|
|
|
- if (row.getLong("datastatus") == 1) {
|
|
|
|
|
- row.put("systemapp", "回收站");
|
|
|
|
|
- } else {
|
|
|
|
|
- if (row.getLong("sa_customerpoolid") > 0) {
|
|
|
|
|
- row.put("systemapp", "公海客户");
|
|
|
|
|
- } else {
|
|
|
|
|
- row.put("systemapp", "我的客户");
|
|
|
|
|
- }
|
|
|
|
|
- }
|
|
|
|
|
Rows charsRows=charsRowsMap.getOrDefault(String.valueOf(id), new Rows());
|
|
Rows charsRows=charsRowsMap.getOrDefault(String.valueOf(id), new Rows());
|
|
|
charsRows.removeColumn("sa_customersid");
|
|
charsRows.removeColumn("sa_customersid");
|
|
|
row.put("chars", charsRows);
|
|
row.put("chars", charsRows);
|
|
|
|
|
+ //预估手术总量
|
|
|
|
|
+ row.putIfAbsent("totalop", 0);
|
|
|
}
|
|
}
|
|
|
return getSucReturnObject().setData(rows).toString();
|
|
return getSucReturnObject().setData(rows).toString();
|
|
|
}
|
|
}
|