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
f0a95987
Commit
f0a95987
authored
Jun 12, 2025
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(大编辑):bug修复
1.使用登记审批完成时按照json更新技术参数、设计信息、安装信息 2管道es增加使用登记证编号
parent
ac0d7738
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
+5
-4
JgUseRegistrationServiceImpl.java
...ule/jg/biz/service/impl/JgUseRegistrationServiceImpl.java
+5
-4
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/JgUseRegistrationServiceImpl.java
View file @
f0a95987
...
@@ -1295,10 +1295,11 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
...
@@ -1295,10 +1295,11 @@ public class JgUseRegistrationServiceImpl extends BaseService<JgUseRegistrationD
idxBizJgDesignInfoService
.
update
(
lambdaDes
);
idxBizJgDesignInfoService
.
update
(
lambdaDes
);
// 安装信息修改
// 安装信息修改
if
(
item
.
getString
(
"constructionInfoSeq"
)
!=
null
)
{
if
(
item
.
getString
(
"constructionInfoSeq"
)
!=
null
)
{
IdxBizJgConstructionInfo
constructionInfo
=
idxBizJgConstructionInfoService
.
getById
(
item
.
getString
(
"constructionInfoSeq"
));
LambdaUpdateWrapper
<
IdxBizJgConstructionInfo
>
updateWrapper1
=
new
LambdaUpdateWrapper
<>();
constructionInfo
.
setUscUnitName
(
item
.
getString
(
"uscUnitName"
));
updateWrapper1
.
eq
(
TzsBaseEntity:
:
getSequenceNbr
,
item
.
getString
(
"constructionInfoSeq"
));
constructionInfo
.
setUscDate
(
ValidationUtil
.
isEmpty
(
item
.
getString
(
"uscDate"
))
?
null
:
DateUtil
.
parse
(
item
.
getString
(
"uscDate"
),
DatePattern
.
NORM_MONTH_FORMAT
));
updateWrapper1
.
set
(
IdxBizJgConstructionInfo:
:
getUscUnitName
,
item
.
getString
(
"uscUnitName"
));
idxBizJgConstructionInfoService
.
getBaseMapper
().
updateById
(
constructionInfo
);
updateWrapper1
.
set
(
IdxBizJgConstructionInfo:
:
getUscDate
,
ValidationUtil
.
isEmpty
(
item
.
getString
(
"uscDate"
))
?
null
:
DateUtil
.
parse
(
item
.
getString
(
"uscDate"
),
DatePattern
.
NORM_MONTH_FORMAT
));
idxBizJgConstructionInfoService
.
update
(
updateWrapper1
);
}
}
}
}
}
}
...
...
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