|
@@ -1140,7 +1140,6 @@ public class WorkFullManageController extends BaseController {
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
-
|
|
|
//约定作业期处理
|
|
|
String promiseTime = "";
|
|
|
if(null!= ruralProjectRecords.getStartDate() && null != ruralProjectRecords.getEndingDate()){
|
|
@@ -1280,6 +1279,19 @@ public class WorkFullManageController extends BaseController {
|
|
|
data.put("technicistMonth","");
|
|
|
data.put("technicistDay","");
|
|
|
}
|
|
|
+ //获取报告发起时间
|
|
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy年 MM月 dd日");
|
|
|
+ Date ziDate=projectReportData.getCreateDate();
|
|
|
+ String str = sdf.format(ziDate);
|
|
|
+ data.put("ziDate",str);
|
|
|
+ //报告状态
|
|
|
+ String dataStatus=projectReportData.getStatus();
|
|
|
+ if (dataStatus.equals("5")){
|
|
|
+ String ss = sdf.format(projectReportData.getAuditPassDate());
|
|
|
+ data.put("shenDate",ss);
|
|
|
+ }else{
|
|
|
+ data.put("shenDate"," 年 月 日");
|
|
|
+ }
|
|
|
return data;
|
|
|
}
|
|
|
|