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
feac31c0
Commit
feac31c0
authored
Jul 31, 2024
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):气瓶提交验证修改
parent
40a0b08f
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
3 deletions
+4
-3
IdxBizJgRegisterInfoServiceImpl.java
.../jg/biz/service/impl/IdxBizJgRegisterInfoServiceImpl.java
+1
-1
JgInstallationNoticeServiceImpl.java
.../jg/biz/service/impl/JgInstallationNoticeServiceImpl.java
+3
-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/service/impl/IdxBizJgRegisterInfoServiceImpl.java
View file @
feac31c0
...
...
@@ -2525,7 +2525,7 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
.
eq
(
JgUseRegistration:
:
getProjectContraption
,
jsonObject
.
get
(
"projectContraption"
))
.
eq
(
JgUseRegistration:
:
getUseUnitCreditCode
,
useUnitCreditCode
)
.
eq
(
JgUseRegistration:
:
getIsAddEquip
,
"0"
)
.
ne
(
JgUseRegistration:
:
getStatus
,
"已作废"
)).
isEmpty
())
{
.
ne
(
JgUseRegistration:
:
getStatus
,
"已作废"
)).
isEmpty
()
&&
"0"
.
equals
(
jsonObject
.
get
(
"isAddEquip"
))
)
{
throw
new
BadRequest
(
"该工程装置已做过使用登记,再选择增补功能进行登记!"
);
}
return
jgUseRegistrationMapper
.
queryForUnitPipelineEquipmentPage
(
page
,
jsonObject
,
records
);
...
...
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/JgInstallationNoticeServiceImpl.java
View file @
feac31c0
...
...
@@ -1091,7 +1091,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
LambdaQueryWrapper
<
JgInstallationNoticeEq
>
queryWrapper
=
new
LambdaQueryWrapper
<>();
queryWrapper
.
eq
(
JgInstallationNoticeEq:
:
getEquipTransferId
,
dto
.
getSequenceNbr
());
List
<
JgInstallationNoticeEq
>
jgRelationEquips
=
jgInstallationNoticeEqMapper
.
selectList
(
queryWrapper
);
this
.
saveHisDataBeforeUpdate
(
jgInstallationNotice
);
jgInstallationNotice
.
setNoticeStatus
(
String
.
valueOf
(
FlowStatusEnum
.
TO_BE_FINISHED
.
getCode
()));
// 上个代办改为已办
HashMap
<
String
,
Object
>
taskMap
=
new
HashMap
<>();
...
...
@@ -1259,6 +1259,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
jgInstallationNotice
.
setNextExecuteUserIds
(
workflowResultDto
.
getNextExecutorUserIds
());
jgInstallationNotice
.
setNextExecuteIds
(
workflowResultDto
.
getNextExecutorRoleIds
());
this
.
updateById
(
jgInstallationNotice
);
this
.
saveHisDataBeforeUpdate
(
jgInstallationNotice
);
commonService
.
saveExecuteFlowData2Redis
(
instanceId
,
this
.
buildInstanceRuntimeData
(
jgInstallationNotice
));
}
catch
(
InterruptedException
e
)
{
e
.
printStackTrace
();
...
...
@@ -1349,7 +1350,7 @@ public class JgInstallationNoticeServiceImpl extends BaseService<JgInstallationN
// 更新注册信息表的设备代码字段
String
equCode
=
this
.
getEquCode
(
registerInfo
,
receiveCompanyCode
);
registerInfo
.
setEquCode
(
equCode
);
updateHisDataEquCode
(
registerInfo
,
jgInstallationNotice
,
equCode
);
//
updateHisDataEquCode(registerInfo, jgInstallationNotice, equCode);
}
}
...
...
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