|
@@ -429,7 +429,13 @@ public class CanteenOutsourcerBalanceController {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- map.put("recordTime",sdf.format(canteenDiningRecord.getRecordTime()));
|
|
|
+ if(canteenDiningRecord.getRecordTime()!=null){
|
|
|
+ map.put("recordTime",sdf.format(canteenDiningRecord.getRecordTime()));
|
|
|
+ }
|
|
|
+ else{
|
|
|
+ map.put("recordTime","");
|
|
|
+ }
|
|
|
+
|
|
|
map.put("categoryAmount",canteenDiningRecord.getCategoryAmount());
|
|
|
map.put("address",canteenDiningRecord.getAddress());
|
|
|
map.put("personName",personName);
|
|
@@ -505,7 +511,7 @@ public class CanteenOutsourcerBalanceController {
|
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("companyName"),""));
|
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("jobNumber"),""));
|
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("personName"),""));
|
|
|
- row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("createTime"),""));
|
|
|
+ row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("recordTime"),""));
|
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("categoryName"),""));
|
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("categoryAmount"),""));
|
|
|
row.createCell(colIndex++).setCellValue(com.jpsoft.shinestar.modules.common.utils.StringUtils.strValue(map.get("address"),""));
|