Commit 4b271bd0 by 陶光胜

门店导出修改

parent 50781f5f
......@@ -483,9 +483,9 @@ public class StoreApiServiceImpl implements StoreApiService {
for(int j =0 ;j< list.size(); j++){
JSONObject data = list.getJSONObject(j);
data.put("type", "data");
String compute = data.getString("compute");
String compute = data.getJSONObject("data").getString("compute");
if(OperateEnum.OPERATE_BETWEEN.getValue().equals(compute)){
data.put("value", data.getString("value").replaceAll(" ", ","));
data.getJSONObject("data").put("value", data.getJSONObject("data").getString("value").replaceAll(" ", ","));
}
jsonObjectList.add(data);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment