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
c0c3ef08
Commit
c0c3ef08
authored
Jul 15, 2024
by
麻笑宇
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改气瓶大屏bug
parent
937c2624
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
1 deletion
+3
-1
CylinderAreaDataServiceImpl.java
...der/flc/biz/service/impl/CylinderAreaDataServiceImpl.java
+1
-0
CylinderTagsDataUnitServiceImpl.java
...flc/biz/service/impl/CylinderTagsDataUnitServiceImpl.java
+2
-1
No files found.
amos-boot-system-tzs/amos-boot-module-cylinder/amos-boot-module-cylinder-biz/src/main/java/com/yeejoin/amos/boot/module/cylinder/flc/biz/service/impl/CylinderAreaDataServiceImpl.java
View file @
c0c3ef08
...
...
@@ -691,6 +691,7 @@ public class CylinderAreaDataServiceImpl extends BaseService<CylinderAreaDataDto
String
value
=
this
.
getLicenseEfficiencyByRegion
(
orgCode
);
if
(
NO_DATA_STR
.
equals
(
value
))
{
value
=
"0"
;
xuke
.
add
(
value
);
}
else
{
xuke
.
add
(
value
);
}
...
...
amos-boot-system-tzs/amos-boot-module-cylinder/amos-boot-module-cylinder-biz/src/main/java/com/yeejoin/amos/boot/module/cylinder/flc/biz/service/impl/CylinderTagsDataUnitServiceImpl.java
View file @
c0c3ef08
...
...
@@ -7,6 +7,7 @@ import com.yeejoin.amos.boot.module.cylinder.flc.api.service.ICylinderTagsDataUn
import
com.yeejoin.amos.boot.module.cylinder.flc.api.dto.CylinderTagsDataUnitDto
;
import
com.yeejoin.amos.feign.privilege.Privilege
;
import
com.yeejoin.amos.feign.privilege.model.CompanyModel
;
import
org.springframework.util.CollectionUtils
;
import
org.springframework.util.ObjectUtils
;
import
org.typroject.tyboot.core.rdbms.service.BaseService
;
import
org.springframework.stereotype.Service
;
...
...
@@ -58,7 +59,7 @@ public class CylinderTagsDataUnitServiceImpl extends BaseService<CylinderTagsDat
for
(
TagTypeEnums
enums
:
TagTypeEnums
.
values
())
{
Map
<
String
,
Object
>
item
=
new
HashMap
<>();
item
.
put
(
"name"
,
enums
.
getName
());
item
.
put
(
"value"
,
stringObjectMap
.
get
(
enums
.
getKey
()));
item
.
put
(
"value"
,
CollectionUtils
.
isEmpty
(
stringObjectMap
)?
0
:
stringObjectMap
.
get
(
enums
.
getKey
()));
result
.
add
(
item
);
}
return
result
;
...
...
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