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
e3197b6c
Commit
e3197b6c
authored
Jun 28, 2024
by
刘林
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix(jg):修改生产环境车用气瓶Bug
parent
ad4717b4
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
4 deletions
+13
-4
JgVehicleInformationDto.java
.../amos/boot/module/jg/api/dto/JgVehicleInformationDto.java
+0
-2
JgVehicleInformationServiceImpl.java
.../jg/biz/service/impl/JgVehicleInformationServiceImpl.java
+13
-2
No files found.
amos-boot-system-tzs/amos-boot-module-jg/amos-boot-module-jg-api/src/main/java/com/yeejoin/amos/boot/module/jg/api/dto/JgVehicleInformationDto.java
View file @
e3197b6c
...
@@ -50,7 +50,6 @@ public class JgVehicleInformationDto extends BaseDto {
...
@@ -50,7 +50,6 @@ public class JgVehicleInformationDto extends BaseDto {
@ApiModelProperty
(
value
=
"终审通过时间"
)
@ApiModelProperty
(
value
=
"终审通过时间"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonSerialize
(
using
=
BizCustomDateSerializer
.
class
)
private
String
auditPassDate
;
private
String
auditPassDate
;
@ApiModelProperty
(
value
=
"登记类别"
)
@ApiModelProperty
(
value
=
"登记类别"
)
...
@@ -58,7 +57,6 @@ public class JgVehicleInformationDto extends BaseDto {
...
@@ -58,7 +57,6 @@ public class JgVehicleInformationDto extends BaseDto {
@ApiModelProperty
(
value
=
"注册登记日期"
)
@ApiModelProperty
(
value
=
"注册登记日期"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonFormat
(
pattern
=
"yyyy-MM-dd"
)
@JsonSerialize
(
using
=
BizCustomDateSerializer
.
class
)
private
String
regDate
;
private
String
regDate
;
@ApiModelProperty
(
value
=
"注册登记人员ID"
)
@ApiModelProperty
(
value
=
"注册登记人员ID"
)
...
...
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/JgVehicleInformationServiceImpl.java
View file @
e3197b6c
...
@@ -139,6 +139,8 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -139,6 +139,8 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
private
ESEquipmentCategory
esEquipmentCategory
;
private
ESEquipmentCategory
esEquipmentCategory
;
@Autowired
@Autowired
private
JgResumeInfoServiceImpl
jgResumeInfoService
;
private
JgResumeInfoServiceImpl
jgResumeInfoService
;
@Autowired
private
TzBaseEnterpriseInfoMapper
tzBaseEnterpriseInfoMapper
;
private
Map
<
String
,
Object
>
fillingMediumMap
;
private
Map
<
String
,
Object
>
fillingMediumMap
;
...
@@ -513,8 +515,17 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
...
@@ -513,8 +515,17 @@ public class JgVehicleInformationServiceImpl extends BaseService<JgVehicleInform
vo
.
setSafetyManagerId
(
dto
.
getSafetyManagerId
()
+
"_"
+
dto
.
getSafetyManagerName
());
vo
.
setSafetyManagerId
(
dto
.
getSafetyManagerId
()
+
"_"
+
dto
.
getSafetyManagerName
());
}
}
//产权单位
//产权单位
if
(!
ValidationUtil
.
isEmpty
(
dto
.
getEstateUnitCreditCode
())
&&
!
ValidationUtil
.
isEmpty
(
dto
.
getEstateUnitName
()))
{
//if (!ValidationUtil.isEmpty(dto.getEstateUnitCreditCode()) && !ValidationUtil.isEmpty(dto.getEstateUnitName())) {
vo
.
setEstateUnitName
(
dto
.
getEstateUnitCreditCode
()
+
"_"
+
dto
.
getEstateUnitName
());
// vo.setEstateUnitName(dto.getEstateUnitCreditCode() + "_" + dto.getEstateUnitName());
//}
TzBaseEnterpriseInfo
useCodeResult
=
tzBaseEnterpriseInfoMapper
.
selectOne
(
new
QueryWrapper
<
TzBaseEnterpriseInfo
>()
.
eq
(
"use_unit_code"
,
dto
.
getEstateUnitCreditCode
())
);
if
(
useCodeResult
!=
null
)
{
String
result
=
dto
.
getEstateUnitCreditCode
()
+
"_"
+
dto
.
getEstateUnitName
()
+
(
"个人主体"
.
equals
(
useCodeResult
.
getUnitType
())
?
"_"
+
dto
.
getEstateUnitCreditCode
().
substring
(
dto
.
getEstateUnitCreditCode
().
length
()
-
4
):
""
);
vo
.
setEstateUnitName
(
result
);
}
}
vo
.
setIdCardFront
(
ObjectUtils
.
isEmpty
(
dto
.
getIdCardFront
())
?
null
:
JSON
.
parseArray
(
dto
.
getIdCardFront
()));
vo
.
setIdCardFront
(
ObjectUtils
.
isEmpty
(
dto
.
getIdCardFront
())
?
null
:
JSON
.
parseArray
(
dto
.
getIdCardFront
()));
...
...
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