Merge remote-tracking branch 'origin/develop_1' into develop_1
This commit is contained in:
+3
-1
@@ -288,7 +288,9 @@ public class SearchCenterServiceImpl implements SearchCenterService {
|
|||||||
if(json instanceof org.json.JSONArray){
|
if(json instanceof org.json.JSONArray){
|
||||||
fields = JSONObject.parseArray(collectAttrMap.get(field).toString(),String.class);
|
fields = JSONObject.parseArray(collectAttrMap.get(field).toString(),String.class);
|
||||||
}else {
|
}else {
|
||||||
fields.add(collectAttrMap.get(field).toString());
|
if(!json.equals("null")){
|
||||||
|
fields.add(collectAttrMap.get(field).toString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if(!fields.isEmpty()){
|
if(!fields.isEmpty()){
|
||||||
for (String str : fields) {
|
for (String str : fields) {
|
||||||
|
|||||||
@@ -378,7 +378,6 @@
|
|||||||
*
|
*
|
||||||
FROM
|
FROM
|
||||||
sar_stand_items AS a
|
sar_stand_items AS a
|
||||||
LEFT JOIN sar_interpretation_national_standard AS b ON a.STAND_ID = b.STAND_ID
|
|
||||||
<where>
|
<where>
|
||||||
|
|
||||||
<if test="standId!=null and standId!=''">
|
<if test="standId!=null and standId!=''">
|
||||||
|
|||||||
Reference in New Issue
Block a user