|
@@ -501,11 +501,11 @@ public class CustomerApiController {
|
|
|
|
|
|
//概览投保时间和保费折线图
|
|
|
Map expectedData = new HashMap();
|
|
|
- String[] edata = new String[12];
|
|
|
+ String[] edata = new String[]{"0","0","0","0","0","0","0","0","0","0","0","0"};
|
|
|
expectedData.put("name","");
|
|
|
|
|
|
Map actaulData = new HashMap();
|
|
|
- String[] adata = new String[12];
|
|
|
+ String[] adata = new String[]{"0","0","0","0","0","0","0","0","0","0","0","0"};
|
|
|
actaulData.put("name","");
|
|
|
List xaxisData = new ArrayList();
|
|
|
xaxisData.add("1");
|
|
@@ -616,7 +616,7 @@ public class CustomerApiController {
|
|
|
map.put("insuranceclaimthread",insuranceclaimthread);
|
|
|
mpInfo.put("prem",df.format(prem));
|
|
|
mpInfo.put("insureDay",insureDay);
|
|
|
- mpInfo.put("guaranteeDay",guaranteeDay);
|
|
|
+ mpInfo.put("guaranteeDay",guaranteeDay>insureDay?insureDay:guaranteeDay);
|
|
|
map.put("custInfo",mpInfo);
|
|
|
map.put("majorCategorie",majorCategorie);
|
|
|
logger.info("出客户概览时间:"+DateUtils.getTime());
|