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
9ab0d89e
Commit
9ab0d89e
authored
Dec 26, 2023
by
litengwei
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
使用单位变更导出
parent
fdd23903
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
JgChangeRegistrationUnitServiceImpl.java
...biz/service/impl/JgChangeRegistrationUnitServiceImpl.java
+7
-7
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/JgChangeRegistrationUnitServiceImpl.java
View file @
9ab0d89e
...
@@ -704,11 +704,11 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
...
@@ -704,11 +704,11 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
throw
new
BadRequest
(
"使用登记证导出失败,请稍后重试!"
);
throw
new
BadRequest
(
"使用登记证导出失败,请稍后重试!"
);
}
}
//是否废弃
//是否废弃
exportParamsMap
.
put
(
"isInvalid"
,
jgChangeRegistrationUnitEq
.
getIsInvalid
());
exportParamsMap
.
put
(
"isInvalid"
,
ValidationUtil
.
isEmpty
(
jgChangeRegistrationUnitEq
.
getIsInvalid
())
?
"0"
:
jgChangeRegistrationUnitEq
.
getIsInvalid
());
//登记机关
//登记机关
exportParamsMap
.
put
(
"receiveOrgName"
,
transfer
.
getReceiveOrgName
());
exportParamsMap
.
put
(
"receiveOrgName"
,
transfer
.
getReceiveOrgName
());
//使用登记证编号
//使用登记证编号
exportParamsMap
.
put
(
"useRegistrationCode"
,
transfer
.
getUseRegistCode
());
exportParamsMap
.
put
(
"useRegistrationCode"
,
ValidationUtil
.
isEmpty
(
transfer
.
getUseRegistCode
())
?
""
:
transfer
.
getUseRegistCode
());
//使用单位名称
//使用单位名称
exportParamsMap
.
put
(
"useUnitName"
,
transfer
.
getUseUnitName
());
exportParamsMap
.
put
(
"useUnitName"
,
transfer
.
getUseUnitName
());
//监管码
//监管码
...
@@ -753,11 +753,11 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
...
@@ -753,11 +753,11 @@ public class JgChangeRegistrationUnitServiceImpl extends BaseService<JgChangeReg
exportParamsMap
.
put
(
"useInnerCode"
,
useInfo
.
getUseInnerCode
());
exportParamsMap
.
put
(
"useInnerCode"
,
useInfo
.
getUseInnerCode
());
String
fullAddress
=
""
;
String
fullAddress
=
""
;
String
province
=
useInfo
.
getProvinceName
();
String
province
=
ValidationUtil
.
isEmpty
(
useInfo
.
getProvinceName
())
?
""
:
useInfo
.
getProvinceName
();
String
city
=
useInfo
.
getCityName
();
String
city
=
ValidationUtil
.
isEmpty
(
useInfo
.
getCityName
())
?
""
:
useInfo
.
getCityName
();
String
county
=
useInfo
.
getCountyName
();
String
county
=
ValidationUtil
.
isEmpty
(
useInfo
.
getCountyName
())
?
""
:
useInfo
.
getCountyName
();
String
street
=
useInfo
.
getStreetName
();
String
street
=
ValidationUtil
.
isEmpty
(
useInfo
.
getStreetName
())
?
""
:
useInfo
.
getStreetName
();
String
address
=
useInfo
.
getAddress
();
String
address
=
ValidationUtil
.
isEmpty
(
useInfo
.
getAddress
())
?
""
:
useInfo
.
getAddress
();
fullAddress
=
province
+
city
+
county
+
street
+
address
;
fullAddress
=
province
+
city
+
county
+
street
+
address
;
exportParamsMap
.
put
(
"fullAddress"
,
fullAddress
);
exportParamsMap
.
put
(
"fullAddress"
,
fullAddress
);
}
}
...
...
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