Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
Y
yifu-mvp
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
fangxinjiang
yifu-mvp
Commits
0eb828b1
Commit
0eb828b1
authored
Jan 16, 2025
by
huyuchen
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
huych-含风险项目商险不购买申请提交
parent
89fcbc77
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
4 deletions
+9
-4
TInsuranceUnpurchaseApplyController.java
...alary/controller/TInsuranceUnpurchaseApplyController.java
+2
-2
TInsuranceUnpurchaseApplyServiceImpl.java
...ry/service/impl/TInsuranceUnpurchaseApplyServiceImpl.java
+7
-2
No files found.
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/controller/TInsuranceUnpurchaseApplyController.java
View file @
0eb828b1
...
...
@@ -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
);
}
...
...
yifu-salary/yifu-salary-biz/src/main/java/com/yifu/cloud/plus/v1/yifu/salary/service/impl/TInsuranceUnpurchaseApplyServiceImpl.java
View file @
0eb828b1
...
...
@@ -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
);
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment