Commit 0eb828b1 authored by huyuchen's avatar huyuchen

huych-含风险项目商险不购买申请提交

parent 89fcbc77
......@@ -104,9 +104,9 @@ public class TInsuranceUnpurchaseApplyController {
*/
@Operation(summary = "通过id删除含风险项目不购买申请表", description = "通过id删除含风险项目不购买申请表:hasPermission('insurances_tinsuranceunpurchaseapply_del')")
@SysLog("通过id删除含风险项目不购买申请表")
@PostMapping("/id")
@DeleteMapping("/{id}")
@PreAuthorize("@pms.hasPermission('insurances_tinsuranceunpurchaseapply_del')")
public R removeById(@RequestParam String id) {
public R removeById(@PathVariable String id) {
return tInsuranceUnpurchaseApplyService.deleteById(id);
}
......
......@@ -193,9 +193,13 @@ public class TInsuranceUnpurchaseApplyServiceImpl extends ServiceImpl<TInsurance
}
//更新附件
updateFileId(tInsuranceUnpurchaseApply);
//先删除明细表数据再重新生成
if (Common.isNotNull(tInsuranceUnpurchaseApply.getId())) {
personService.remove(Wrappers.<TInsuranceUnpurchasePerson>lambdaQuery()
.eq(TInsuranceUnpurchasePerson::getParnetId, tInsuranceUnpurchaseApply.getId()));
}
List<TInsuranceUnpurchasePerson> personList = new ArrayList<>();
if (Common.isNotNull(tInsuranceUnpurchaseApply.getPersonList())) {
if (Common.isNotNull(tInsuranceUnpurchaseApply.getPersonList()) && !tInsuranceUnpurchaseApply.getPersonList().isEmpty()) {
for (TInsuranceUnpurchasePersonAddVo vo : tInsuranceUnpurchaseApply.getPersonList()) {
TInsuranceUnpurchasePerson person = new TInsuranceUnpurchasePerson();
person.setEmpIdcardNo(vo.getEmpIdcardNo());
......@@ -285,6 +289,7 @@ public class TInsuranceUnpurchaseApplyServiceImpl extends ServiceImpl<TInsurance
a.setAttaUrl(url.toString());
}
}
apply.setAttaInfoList(attaInfo);
return R.ok(apply);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment