|
@@ -178,7 +178,7 @@ public class TenantInfoServiceImpl extends ServiceImpl<TenantInfoDao, TenantInfo
|
|
|
setIdByApply(tenantId, dto.getConfig(), dto.getConfig()::setTenantId, tenantConfigService::addConfig);
|
|
|
//查询机构入驻表如果公司全称和联系电话相同则把入驻表修改为已入驻
|
|
|
TenantPreJoin preJoin = tenantPreJoinService.getOne(new QueryWrapper<TenantPreJoin>()
|
|
|
- .eq("phone_", dto.getPhone())
|
|
|
+ .eq("tsign_code_", dto.getTsignCode())
|
|
|
.eq("state_", 0));
|
|
|
if (Objects.nonNull(preJoin)) {
|
|
|
preJoin.setState(1);
|
|
@@ -561,7 +561,7 @@ public class TenantInfoServiceImpl extends ServiceImpl<TenantInfoDao, TenantInfo
|
|
|
throw new BizException("读取产品协议出错");
|
|
|
} finally {
|
|
|
//删除文件
|
|
|
- FileUtils.deleteQuietly(srcFile);
|
|
|
+// FileUtils.deleteQuietly(srcFile);
|
|
|
}
|
|
|
}
|
|
|
|