Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-biz
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
项目统一框架
amos-boot-biz
Commits
9a26c1af
Commit
9a26c1af
authored
Oct 16, 2025
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):处理使用登记流程结束,业务未结束单子问题接口修改
parent
58b6f1d2
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
12 additions
and
7 deletions
+12
-7
JgScrapCancelController.java
...oot/module/jg/biz/controller/JgScrapCancelController.java
+1
-1
JgUseRegistrationController.java
...module/jg/biz/controller/JgUseRegistrationController.java
+9
-4
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+2
-2
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/JgScrapCancelController.java
View file @
9a26c1af
...
@@ -161,7 +161,7 @@ public class JgScrapCancelController extends BaseController {
...
@@ -161,7 +161,7 @@ public class JgScrapCancelController extends BaseController {
* @return s
* @return s
*/
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@PostMapping
(
value
=
"/handle
Notice
WrongData"
)
@PostMapping
(
value
=
"/handle
ScrapCancel
WrongData"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"处理设备报废注销流程结束,业务未结束单子问题"
,
notes
=
"处理设备报废注销流程结束,业务未结束单子问题"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"处理设备报废注销流程结束,业务未结束单子问题"
,
notes
=
"处理设备报废注销流程结束,业务未结束单子问题"
)
public
ResponseModel
<
Object
>
handleScrapCancelWrongData
(
@RequestParam
(
"applyNo"
)
String
applyNo
)
{
public
ResponseModel
<
Object
>
handleScrapCancelWrongData
(
@RequestParam
(
"applyNo"
)
String
applyNo
)
{
jgScrapCancelService
.
handleScrapCancelWrongData
(
applyNo
);
jgScrapCancelService
.
handleScrapCancelWrongData
(
applyNo
);
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/controller/JgUseRegistrationController.java
View file @
9a26c1af
...
@@ -290,11 +290,16 @@ public class JgUseRegistrationController extends BaseController {
...
@@ -290,11 +290,16 @@ public class JgUseRegistrationController extends BaseController {
return
ResponseHelper
.
buildResponse
(
result
);
return
ResponseHelper
.
buildResponse
(
result
);
}
}
/**
* 处理使用登记流程结束,业务未结束单子问题
* @param applyNoList 申请单号集合
* @return s
*/
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@TycloudOperation
(
ApiLevel
=
UserType
.
AGENCY
)
@PostMapping
(
value
=
"/yunWei/
yuLin
"
)
@PostMapping
(
value
=
"/yunWei/
handleRegistrationWrongData
"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"
榆林使用登记错误数据处理"
,
notes
=
"榆林使用登记错误数据处理
"
)
@ApiOperation
(
httpMethod
=
"POST"
,
value
=
"
处理使用登记流程结束,业务未结束单子问题"
,
notes
=
"处理使用登记流程结束,业务未结束单子问题
"
)
public
ResponseModel
<
Object
>
yunWeiRegistrationWrongData
(
@RequestBody
List
<
String
>
appl
a
yNoList
)
{
public
ResponseModel
<
Object
>
yunWeiRegistrationWrongData
(
@RequestBody
List
<
String
>
applyNoList
)
{
jgUseRegistrationServiceImpl
.
correctWrongData
(
appl
a
yNoList
);
jgUseRegistrationServiceImpl
.
correctWrongData
(
applyNoList
);
return
ResponseHelper
.
buildResponse
(
"ok"
);
return
ResponseHelper
.
buildResponse
(
"ok"
);
}
}
...
...
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-biz/src/main/java/com/yeejoin/amos/boot/module/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
View file @
9a26c1af
...
@@ -3967,8 +3967,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -3967,8 +3967,8 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
commonServiceImpl
.
updateTaskModel
(
taskMap
);
commonServiceImpl
.
updateTaskModel
(
taskMap
);
}
}
public
void
correctWrongData
(
List
<
String
>
appl
a
yNoList
)
{
public
void
correctWrongData
(
List
<
String
>
applyNoList
)
{
List
<
JgUseRegistration
>
jgUseRegistrationList
=
jgUseRegistrationMapper
.
selectList
(
new
LambdaQueryWrapper
<
JgUseRegistration
>().
in
(
JgUseRegistration:
:
getApplyNo
,
appl
a
yNoList
));
List
<
JgUseRegistration
>
jgUseRegistrationList
=
jgUseRegistrationMapper
.
selectList
(
new
LambdaQueryWrapper
<
JgUseRegistration
>().
in
(
JgUseRegistration:
:
getApplyNo
,
applyNoList
));
jgUseRegistrationList
.
forEach
(
jgUseRegistration
->
{
jgUseRegistrationList
.
forEach
(
jgUseRegistration
->
{
WorkflowResultDto
workflowResultDto
=
new
WorkflowResultDto
();
WorkflowResultDto
workflowResultDto
=
new
WorkflowResultDto
();
workflowResultDto
.
setNextExecutorRoleIds
(
jgUseRegistration
.
getNextExecuteIds
());
workflowResultDto
.
setNextExecutorRoleIds
(
jgUseRegistration
.
getNextExecuteIds
());
...
...
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