|
@@ -25,6 +25,7 @@ import com.jeeplus.modules.projectFilingBatch.entity.ProjectFilingbatchRelation;
|
|
|
import com.jeeplus.modules.projectcontentinfo.dao.ProjectReportDataDao;
|
|
|
import com.jeeplus.modules.projectcontentinfo.dao.ProjectcontentinfoDao;
|
|
|
import com.jeeplus.modules.projectcontentinfo.entity.ProjectReportData;
|
|
|
+import com.jeeplus.modules.projectcontentinfo.entity.ProjectReportDataTwo;
|
|
|
import com.jeeplus.modules.projectcontentinfo.entity.Projectcontentinfo;
|
|
|
import com.jeeplus.modules.projectcontentinfo.service.ProjectReportDataService;
|
|
|
import com.jeeplus.modules.projectcontentinfo.service.ProjectcontentinfoService;
|
|
@@ -2282,4 +2283,16 @@ public class RuralProjectRecordsService extends CrudService<RuralProjectRecordsD
|
|
|
public void updatePlanInfo(ProjectRecords projectRecord){
|
|
|
dao.updatePlanInfo(projectRecord);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 报告签发审批完成审批时间未同步处理
|
|
|
+ */
|
|
|
+ public void disposeProjectReportTwoInfo(){
|
|
|
+ //查询报告签发审批完成并且审批时间为null的数据的审批通过时间
|
|
|
+ List<ProjectReportDataTwo> projectReportTwoInfo = dao.getProjectReportTwoInfo();
|
|
|
+ //循环遍历修改报告签发对应数据的审核时间
|
|
|
+ for (ProjectReportDataTwo info : projectReportTwoInfo) {
|
|
|
+ dao.updateReportDataTwo(info);
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|