Commit 7b3cfbef by guojx

目标跟进核心指标趋势分月/累计

parent 97ed66d3
...@@ -23,7 +23,9 @@ import org.springframework.web.bind.annotation.RequestMapping; ...@@ -23,7 +23,9 @@ import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestParam; import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.ResponseBody; import org.springframework.web.bind.annotation.ResponseBody;
import java.text.SimpleDateFormat;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Date;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.stream.Collectors; import java.util.stream.Collectors;
...@@ -130,6 +132,10 @@ public class TargetController { ...@@ -130,6 +132,10 @@ public class TargetController {
chartType = 1; chartType = 1;
} }
JSONObject jsonObject = getCommon(qo, false); JSONObject jsonObject = getCommon(qo, false);
if (StringUtils.isBlank(qo.getTime())) {
SimpleDateFormat df = new SimpleDateFormat("yyyy");
qo.setTime(df.format(new Date()));
}
jsonObject.put("targetYear", qo.getTime().substring(0, 4)); jsonObject.put("targetYear", qo.getTime().substring(0, 4));
Map<String, Object> res = DataTargetHttpUtils.http(DataTargetHttpUtils.getParamNoPage(jsonObject).toJSONString(), Map<String, Object> res = DataTargetHttpUtils.http(DataTargetHttpUtils.getParamNoPage(jsonObject).toJSONString(),
chartType == 1 ? "data_mbr_target_chart" : "data_mbr_target_cumulate_chart"); chartType == 1 ? "data_mbr_target_chart" : "data_mbr_target_cumulate_chart");
......
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