|
@@ -343,7 +343,7 @@ public class EVDataServiceImpl implements EVDataService {
|
|
|
}
|
|
|
}
|
|
|
//电签成功后需要将check_status改为1,进行电签检测
|
|
|
- String updateCheckStatus="update u_information_query set check_status=1 where id='" + taskApp.getFormDataId() + "' and check_status!=0 ";
|
|
|
+ String updateCheckStatus="update u_information_query set chek_status=1 where id='" + taskApp.getFormDataId() + "' and chek_status!=0 ";
|
|
|
jdbcTemplate.execute(updateCheckStatus);
|
|
|
updateSql = "update u_information_query set pdf_trial_url_position='" + pdfTrialUrlPosition + "',business_time='" + taskApp.getPdfDate() + "',node_pdf_url='" + nodePdfUrl + "',e_visa_pdf_page=" + pdfPage + ",e_visa_pdf_size=" + pdfSize + ",e_visa_pdf_url='" + taskApp.getLastFilePdfUrl() + "',status='" + taskApp.getSigType() + "',update_time=SYSDATE() where id='" + taskApp.getFormDataId() + "' ";
|
|
|
//修改 计量 需要引用的 附件信息
|
|
@@ -378,6 +378,7 @@ public class EVDataServiceImpl implements EVDataService {
|
|
|
this.jdbcTemplate.execute("update u_task set status=1 ,update_time=SYSDATE() where id='" + taskApp.getTaskId() + "'");
|
|
|
if (totalCount >= 3) {
|
|
|
this.jdbcTemplate.execute("delete from u_task_batch where id in(" + taskApp.getId()+")");
|
|
|
+ this.jdbcTemplate.execute("update u_information_query set status=1 where id=" + taskApp.getFormDataId());
|
|
|
}
|
|
|
}
|
|
|
RedisTemplate.delete("sign-" + taskApp.getFormDataId());
|