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
162d0079
Commit
162d0079
authored
Mar 06, 2025
by
hezhuozhi
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
气瓶数据项调整 / 发起页调整
parent
495f5050
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
IdxBizJqEquipmentRegisterController.java
...g/biz/controller/IdxBizJqEquipmentRegisterController.java
+2
-2
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/controller/IdxBizJqEquipmentRegisterController.java
View file @
162d0079
...
...
@@ -161,11 +161,11 @@ public class IdxBizJqEquipmentRegisterController extends BaseController {
List
<
DictionarieValueModel
>
dictionarieValueModels
=
idxBizJgRegisterInfoService
.
equCategoryListByCompanyType
(
getSelectedOrgInfo
(),
equList
,
businessScenarios
,
dataSource
,
type
);
//bug 24467 新增历史设备--有移动式压力容器,需禁用或者删除 (历史设备录入(有证-his,无证-black))
if
(
"his"
.
equals
(
dataSource
)
&&
"2000"
.
equals
(
equList
)
&&
"SB_XZ"
.
equals
(
type
)
&&
"0"
.
equals
(
businessScenarios
))
{
if
(
"his"
.
equals
(
dataSource
)
&&
"2000"
.
equals
(
equList
)
&&
(
"SB_XZ"
.
equals
(
type
)
||
"DW_LR"
.
equals
(
type
)
)
&&
"0"
.
equals
(
businessScenarios
))
{
dictionarieValueModels
=
dictionarieValueModels
.
stream
().
filter
(
dictionarieValueModel
->
!
dictionarieValueModel
.
getDictDataValue
().
equals
(
"移动式压力容器"
)).
collect
(
Collectors
.
toList
());
}
// 历史无证设备录入(有证-his,无证-black))
if
(
"black"
.
equals
(
dataSource
)
&&
"2000"
.
equals
(
equList
)
&&
"SB_XZ"
.
equals
(
type
)
&&
"0"
.
equals
(
businessScenarios
))
{
if
(
"black"
.
equals
(
dataSource
)
&&
"2000"
.
equals
(
equList
)
&&
(
"SB_XZ"
.
equals
(
type
)
||
"DW_LR"
.
equals
(
type
)
)
&&
"0"
.
equals
(
businessScenarios
))
{
dictionarieValueModels
=
dictionarieValueModels
.
stream
().
filter
(
dictionarieValueModel
->
!
dictionarieValueModel
.
getDictDataValue
().
equals
(
"移动式压力容器"
)).
collect
(
Collectors
.
toList
());
}
return
ResponseHelper
.
buildResponse
(
dictionarieValueModels
);
...
...
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