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
f1e50a1f
Commit
f1e50a1f
authored
Mar 21, 2024
by
suhuiguang
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
1.代码格式化
parent
b1c58800
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
3 deletions
+12
-3
IdxBizJgRegisterInfoServiceImpl.java
.../jg/biz/service/impl/IdxBizJgRegisterInfoServiceImpl.java
+11
-2
JgChangeRegistrationReformServiceImpl.java
...z/service/impl/JgChangeRegistrationReformServiceImpl.java
+1
-1
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 @
f1e50a1f
...
...
@@ -150,8 +150,7 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
private
SuperviseInfoMapper
superviseInfoMapper
;
@Autowired
private
JgUseRegistrationMapper
jgUseRegistrationMapper
;
@Autowired
private
JgUseRegistrationEqServiceImpl
jgUseRegistrationEqServiceImpl
;
@Autowired
private
JgInstallationNoticeServiceImpl
jgInstallationNoticeService
;
...
...
@@ -162,6 +161,8 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
@Value
(
"${add.equip.dict.code.suffix:CATEGORY_LIST_ADD}"
)
private
String
equipAddDictCodeSuffix
;
public
static
String
[]
jsonFields
=
{
"insOtherAccessories"
,
"installContractAttachment"
,
"installProxyStatementAttachment"
};
/**
* 设备注册信息
...
...
@@ -312,9 +313,11 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
resultMap
.
put
(
EQUIP_PARAMS_FORM_ID
,
equipParamsMap
);
}
}
return
resultMap
;
}
@Override
public
Map
<
String
,
Object
>
getDetailByRecord
(
String
record
)
{
Map
<
String
,
Object
>
resultMap
=
new
HashMap
<>();
// 设备种类
...
...
@@ -338,6 +341,7 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
return
resultMap
;
}
@Override
public
Map
<
String
,
Object
>
getDetailFieldCamelCaseByRecord
(
String
record
)
{
Map
<
String
,
Object
>
resultMap
=
new
HashMap
<>();
// 设备种类
...
...
@@ -363,6 +367,11 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
resultMap
.
put
(
"orgBranchName"
,
superviseInfo
.
getOrgBranchName
());
}
resultMap
.
remove
(
"instanceId"
);
for
(
String
field
:
jsonFields
){
if
(
resultMap
.
get
(
field
)
!=
null
&&
resultMap
.
get
(
field
)
instanceof
String
){
resultMap
.
put
(
field
,
JSON
.
parse
(
resultMap
.
get
(
field
).
toString
()));
}
}
return
resultMap
;
}
...
...
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/JgChangeRegistrationReformServiceImpl.java
View file @
f1e50a1f
...
...
@@ -512,7 +512,7 @@ public class JgChangeRegistrationReformServiceImpl extends BaseService<JgChangeR
Map
<
String
,
Object
>
originalData
=
new
HashMap
<>();
Map
<
String
,
Object
>
originalDataOther
=
new
HashMap
<>();
if
((
jgChangeRegistrationReform
.
getStatus
().
equals
(
"已完成"
)
||
jgChangeRegistrationReform
.
getStatus
().
equals
(
"流程结束"
)))
{
if
((
"已完成"
.
equals
(
jgChangeRegistrationReform
.
getStatus
())
||
"流程结束"
.
equals
(
jgChangeRegistrationReform
.
getStatus
()
)))
{
// 完成时显示历史数据
JgRegistrationHistory
jgRegistrationHistory
=
jgRegistrationHistoryMapper
.
selectOne
(
new
QueryWrapper
<
JgRegistrationHistory
>()
.
eq
(
"equ_id"
,
equipId
)
...
...
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