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
6b318c5e
Commit
6b318c5e
authored
Nov 12, 2025
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):移装变更没有更新老索引
parent
f2102a56
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
4 deletions
+11
-4
JgChangeRegistrationTransferServiceImpl.java
...service/impl/JgChangeRegistrationTransferServiceImpl.java
+11
-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/JgChangeRegistrationTransferServiceImpl.java
View file @
6b318c5e
...
...
@@ -1317,6 +1317,9 @@ public class JgChangeRegistrationTransferServiceImpl extends BaseService<JgChang
String
newAddress
=
""
;
String
newLongitudeLatitude
=
""
;
String
useSiteCode
=
""
;
//es中的编号信息
Map
<
String
,
Map
<
String
,
Object
>>
resultMap
=
new
HashMap
<>();
Map
<
String
,
Object
>
map1
=
new
HashMap
<>();
if
(!
ValidationUtil
.
isEmpty
(
newData
))
{
JSONObject
newPosition
=
JSON
.
parseObject
(
newData
.
getChangeData
());
String
province
=
newPosition
.
getString
(
"transferProvince"
);
...
...
@@ -1327,6 +1330,14 @@ public class JgChangeRegistrationTransferServiceImpl extends BaseService<JgChang
String
longitudeLatitude
=
newPosition
.
getString
(
"longitudeLatitude"
);
// 使用场所
useSiteCode
=
newPosition
.
getString
(
"transferUsePlace"
);
// es的使用地点信息名称、code、详情地址
String
orgBranchCodeName
=
newPosition
.
getString
(
"orgBranchCode"
);
String
orgBranchName
=
newPosition
.
getString
(
"orgBranchName"
);
String
[]
orgBranchArray
=
orgBranchCodeName
.
split
(
"_"
);
if
(
orgBranchArray
.
length
>
1
)
{
map1
.
put
(
"ORG_BRANCH_CODE"
,
orgBranchArray
[
0
]);
map1
.
put
(
"ORG_BRANCH_NAME"
,
StringUtil
.
isNotEmpty
(
orgBranchName
)
?
orgBranchName
:
orgBranchArray
[
1
]);
}
// 分割省市区街道字段
if
(!
ObjectUtils
.
isEmpty
(
province
))
{
String
[]
provinceList
=
province
.
split
(
"_"
);
...
...
@@ -1364,10 +1375,6 @@ public class JgChangeRegistrationTransferServiceImpl extends BaseService<JgChang
newLongitudeLatitude
=
longitudeLatitude
;
}
}
//es中的编号信息
Map
<
String
,
Map
<
String
,
Object
>>
resultMap
=
new
HashMap
<>();
Map
<
String
,
Object
>
map1
=
new
HashMap
<>();
// es的使用地点信息名称、code、详情地址
map1
.
put
(
"USE_PLACE"
,
newUsePlace
);
map1
.
put
(
"USE_PLACE_CODE"
,
newUsePlaceCode
);
map1
.
put
(
"ADDRESS"
,
newAddress
);
...
...
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