|  | @@ -155,7 +155,6 @@ public class ResumptionServiceImpl implements ResumptionService {
 | 
	
		
			
				|  |  |          resumptionDelService.delResumptionData(taskId);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          //保存新的数据
 | 
	
		
			
				|  |  |          AppResumptionData data = null;
 | 
	
		
			
				|  |  |          List<ResumptionItemVo> checks = taskDetailVo.getChecks();
 | 
	
	
		
			
				|  | @@ -216,15 +215,15 @@ public class ResumptionServiceImpl implements ResumptionService {
 | 
	
		
			
				|  |  |                              .reformDeadline(DateUtil.endOfDay(DateUtil.offsetDay(new Date(), Integer.parseInt(point.getRectificationDeadline()))))
 | 
	
		
			
				|  |  |                              .build();
 | 
	
		
			
				|  |  |                      IdWorker.getId(question);
 | 
	
		
			
				|  |  | -                    if (ObjectUtil.equal(question.getOrgId(),SecurityUtils.getLoginUser().getOrgId())) {
 | 
	
		
			
				|  |  | +                    if (ObjectUtil.equal(question.getOrgId(), SecurityUtils.getLoginUser().getOrgId())) {
 | 
	
		
			
				|  |  |                          question.setConfirmStatus(QuestionConfirmEnum.Confirmed.getValue());
 | 
	
		
			
				|  |  |                          question.setReformStatus(QuestionReformEnum.Unreform.getValue());
 | 
	
		
			
				|  |  |                      } else {
 | 
	
		
			
				|  |  |                          question.setConfirmStatus(QuestionConfirmEnum.Unconfirm.getValue());
 | 
	
		
			
				|  |  |                          question.setReformStatus(null);
 | 
	
		
			
				|  |  |                      }
 | 
	
		
			
				|  |  | -                    questions.add(question);
 | 
	
		
			
				|  |  | -                    questionService.insertQuestion(question);
 | 
	
		
			
				|  |  | +                    questions.add(questionService.handleQuestion(question));
 | 
	
		
			
				|  |  | +//                    questionService.insertQuestion(question);
 | 
	
		
			
				|  |  |                  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |                  if (ObjectUtil.equal(point.getResValue(), 1)) {
 | 
	
	
		
			
				|  | @@ -267,23 +266,22 @@ public class ResumptionServiceImpl implements ResumptionService {
 | 
	
		
			
				|  |  |           */
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          //1.批量插入 履职数据。
 | 
	
		
			
				|  |  | -        if(ards.size() > 0){
 | 
	
		
			
				|  |  | +        if (ards.size() > 0) {
 | 
	
		
			
				|  |  |              resumptionMapper.batchInsertResumptionData(ards);
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          //2.批量插入 问题数据。
 | 
	
		
			
				|  |  | -        if(questions.size() > 0){
 | 
	
		
			
				|  |  | +        if (questions.size() > 0) {
 | 
	
		
			
				|  |  |              resumptionMapper.batchInsertResumptionQuestion(questions);
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          //3.批量插入 图片数据。
 | 
	
		
			
				|  |  | -        if(adImgs.size() > 0){
 | 
	
		
			
				|  |  | +        if (adImgs.size() > 0) {
 | 
	
		
			
				|  |  |              resumptionMapper.batchInsertResumptionImg(adImgs);
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          //3.批量插入 扫描数据。
 | 
	
		
			
				|  |  | -        if(dataNfcs.size() > 0){
 | 
	
		
			
				|  |  | +        if (dataNfcs.size() > 0) {
 | 
	
		
			
				|  |  |              resumptionMapper.batchInsertResumptionNfc(dataNfcs);
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | -
 | 
	
		
			
				|  |  |          resumptionMapper.updateById(sysResumption);
 | 
	
		
			
				|  |  |          if (ObjectUtil.equal(taskDetailVo.getSubType(), 2)) {
 | 
	
		
			
				|  |  |              TransactionSynchronizationManager.registerSynchronization(new TransactionSynchronization() {
 |