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
45c87c15
Commit
45c87c15
authored
Jan 17, 2024
by
LiuLin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(JG):改造告知,设备移交代码提交
parent
c54e0b20
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
9 deletions
+8
-9
JgEquipTransferServiceImpl.java
...odule/jg/biz/service/impl/JgEquipTransferServiceImpl.java
+0
-1
JgReformNoticeServiceImpl.java
...module/jg/biz/service/impl/JgReformNoticeServiceImpl.java
+8
-8
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/service/impl/JgEquipTransferServiceImpl.java
View file @
45c87c15
...
@@ -414,7 +414,6 @@ public class JgEquipTransferServiceImpl extends BaseService<JgEquipTransferDto,
...
@@ -414,7 +414,6 @@ public class JgEquipTransferServiceImpl extends BaseService<JgEquipTransferDto,
jsonObject
.
put
(
"taskType"
,
BusinessTypeEnum
.
JG_EQUIPMENT_HANDOVER
.
getCode
());
jsonObject
.
put
(
"taskType"
,
BusinessTypeEnum
.
JG_EQUIPMENT_HANDOVER
.
getCode
());
jsonObject
.
put
(
"flowStatus"
,
FlowStatusEnum
.
ROLLBACK
.
getCode
());
jsonObject
.
put
(
"flowStatus"
,
FlowStatusEnum
.
ROLLBACK
.
getCode
());
jsonObject
.
put
(
"flowStatusLabel"
,
FlowStatusEnum
.
ROLLBACK
.
getName
());
jsonObject
.
put
(
"flowStatusLabel"
,
FlowStatusEnum
.
ROLLBACK
.
getName
());
jsonObject
.
put
(
"sequenceNbr"
,
equipTransfer
.
getSequenceNbr
());
commonService
.
rollbackTask
(
equipTransfer
.
getInstanceId
(),
jsonObject
);
commonService
.
rollbackTask
(
equipTransfer
.
getInstanceId
(),
jsonObject
);
}
}
}
}
...
...
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/JgReformNoticeServiceImpl.java
View file @
45c87c15
...
@@ -667,14 +667,12 @@ public class JgReformNoticeServiceImpl extends BaseService<JgReformNoticeDto, Jg
...
@@ -667,14 +667,12 @@ public class JgReformNoticeServiceImpl extends BaseService<JgReformNoticeDto, Jg
notice
.
setNextTaskId
(
workflowResultDto
.
getNextTaskId
());
notice
.
setNextTaskId
(
workflowResultDto
.
getNextTaskId
());
baseMapper
.
updateById
(
notice
);
baseMapper
.
updateById
(
notice
);
commonService
.
rollbackTask
(
notice
.
getInstanceId
(),
new
JSONObject
(
MapBuilder
.<
String
,
Object
>
create
()
JSONObject
jsonObject
=
JSON
.
parseObject
(
JSON
.
toJSONString
(
notice
));
.
put
(
"nextTaskId"
,
notice
.
getNextTaskId
())
jsonObject
.
put
(
"nextExecuteUser"
,
notice
.
getNextExecuteIds
());
.
put
(
"nextExecuteUser"
,
notice
.
getNextExecuteIds
())
jsonObject
.
put
(
"taskType"
,
BusinessTypeEnum
.
JG_MODIFICATION_NOTIFICATION
.
getCode
());
.
put
(
"taskType"
,
BusinessTypeEnum
.
JG_MODIFICATION_NOTIFICATION
.
getCode
())
jsonObject
.
put
(
"flowStatus"
,
FlowStatusEnum
.
ROLLBACK
.
getCode
());
.
put
(
"flowStatus"
,
FlowStatusEnum
.
ROLLBACK
.
getCode
())
jsonObject
.
put
(
"flowStatusLabel"
,
FlowStatusEnum
.
ROLLBACK
.
getName
());
.
put
(
"flowStatusLabel"
,
FlowStatusEnum
.
ROLLBACK
.
getName
())
commonService
.
rollbackTask
(
notice
.
getInstanceId
(),
jsonObject
);
.
put
(
"pageType"
,
"edit"
)
.
build
()));
}
}
}
}
...
@@ -751,6 +749,8 @@ public class JgReformNoticeServiceImpl extends BaseService<JgReformNoticeDto, Jg
...
@@ -751,6 +749,8 @@ public class JgReformNoticeServiceImpl extends BaseService<JgReformNoticeDto, Jg
jgReformNotice
.
setSupervisoryCode
(
dto
.
getSupervisoryCode
());
jgReformNotice
.
setSupervisoryCode
(
dto
.
getSupervisoryCode
());
jgReformNotice
.
setEquList
(
dto
.
getEquList
());
jgReformNotice
.
setEquList
(
dto
.
getEquList
());
jgReformNotice
.
setNextTaskId
(
workflowResultDto
.
getNextTaskId
());
jgReformNotice
.
setNextTaskId
(
workflowResultDto
.
getNextTaskId
());
jgReformNotice
.
setInstanceId
(
workflowResultDto
.
getInstanceId
());
// 上个代办改为驳回
// 上个代办改为驳回
taskV2Model
=
this
.
updateLastTodo
(
jgReformNotice
,
FlowStatusEnum
.
REJECTED
);
taskV2Model
=
this
.
updateLastTodo
(
jgReformNotice
,
FlowStatusEnum
.
REJECTED
);
this
.
createNewTodo
(
jgReformNotice
,
workflowResultDto
,
taskV2Model
,
FlowStatusEnum
.
TO_BE_SUBMITTED
);
this
.
createNewTodo
(
jgReformNotice
,
workflowResultDto
,
taskV2Model
,
FlowStatusEnum
.
TO_BE_SUBMITTED
);
...
...
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