|
@@ -2027,7 +2027,8 @@ public class TaskServiceImpl extends BaseServiceImpl<TaskMapper, Task> implement
|
|
|
b = informationQueryService.update(new LambdaUpdateWrapper<InformationQuery>()
|
|
|
.eq(InformationQuery::getId, task.getFormDataId())
|
|
|
.set(InformationQuery::getEVisaPdfUrl, null)
|
|
|
- .set(InformationQuery::getPdfUrl, null));
|
|
|
+// .set(InformationQuery::getPdfUrl, null)
|
|
|
+ );
|
|
|
}else {
|
|
|
if(task.getApprovalType()==3){
|
|
|
b=contractLogService.update(new LambdaUpdateWrapper<ContractLog>()
|
|
@@ -2049,7 +2050,7 @@ public class TaskServiceImpl extends BaseServiceImpl<TaskMapper, Task> implement
|
|
|
//重新保存
|
|
|
long startTime_1 = System.currentTimeMillis();
|
|
|
//质检资料
|
|
|
- if(task.getApprovalType()==1){
|
|
|
+ if(task.getApprovalType()==1 || task.getApprovalType()== 9){
|
|
|
String sql="select type from u_information_query where id="+task.getFormDataId();
|
|
|
Integer InformationType = jdbcTemplate.queryForObject(sql, new SingleColumnRowMapper<>(Integer.class));
|
|
|
if(InformationType==1){
|