Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
amos-boot-zx-biz
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
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
Jobs
Commits
Open sidebar
项目统一框架
一体化_户用光伏项目代码
amos-boot-zx-biz
Commits
4df48449
Commit
4df48449
authored
Aug 29, 2024
by
chenzhao
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/developer_bw' into developer_bw
parents
48b30d7a
9fa3c646
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
4 deletions
+3
-4
HygfRectificationOrderController.java
...hygf/biz/controller/HygfRectificationOrderController.java
+0
-1
AcceptanceCheckServiceImpl.java
...ule/hygf/biz/service/impl/AcceptanceCheckServiceImpl.java
+2
-2
BasicGridAcceptanceServiceImpl.java
...hygf/biz/service/impl/BasicGridAcceptanceServiceImpl.java
+1
-1
No files found.
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/controller/HygfRectificationOrderController.java
View file @
4df48449
...
...
@@ -109,7 +109,6 @@ public class HygfRectificationOrderController extends BaseController {
@ApiOperation
(
httpMethod
=
"GET"
,
value
=
"根据sequenceNbr查询单个审核单"
,
notes
=
"根据sequenceNbr查询单个审核单"
)
public
ResponseModel
<
HygfRectificationOrder
>
selectOne
(
@PathVariable
Long
sequenceNbr
)
{
HygfRectificationOrder
hygfRectificationOrder
=
hygfRectificationOrderServiceImpl
.
getBaseMapper
().
selectById
(
sequenceNbr
);
RectificationRoleEnum
enums
=
RectificationRoleEnum
.
getNodeByName
(
hygfRectificationOrder
.
getRectificationSource
());
hygfRectificationOrder
.
setRectificationSourceName
(
enums
!=
null
?
enums
.
name
():
null
);
return
ResponseHelper
.
buildResponse
(
hygfRectificationOrder
);
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/AcceptanceCheckServiceImpl.java
View file @
4df48449
...
...
@@ -484,9 +484,9 @@ public class AcceptanceCheckServiceImpl extends BaseService<AcceptanceCheckDto,A
}
}
else
{
//驳回的时候 也需根据 工程或者设计 整改单状态修改并网状态
LambdaUpdateWrapper
<
AcceptanceCheck
>
qu
=
new
LambdaUpdateWrapper
();
LambdaUpdateWrapper
<
AcceptanceCheck
>
qu
=
new
LambdaUpdateWrapper
<
AcceptanceCheck
>
();
qu
.
eq
(
AcceptanceCheck:
:
getPeasantHouseholdId
,
hygfRectificationOrder
.
getPeasantHouseholeId
());
if
(
CollectionUtil
.
isEmpty
(
list
))
{
if
(
!
CollectionUtil
.
isEmpty
(
list
))
{
List
<
String
>
collect
=
list
.
stream
().
map
(
HygfRectificationOrder:
:
getRectificationStatus
).
collect
(
Collectors
.
toList
());
qu
.
set
(
AcceptanceCheck:
:
getAcceptanceCheckStatus
,
collect
.
contains
(
WorkOrderEnum
.
待审核
.
getCode
())?
GridStatusEnum
.
ZGDSH
.
getCode
():
GridStatusEnum
.
DZG
.
getCode
());
}
else
{
...
...
amos-boot-system-jxiop/amos-boot-module-hygf-biz/src/main/java/com/yeejoin/amos/boot/module/hygf/biz/service/impl/BasicGridAcceptanceServiceImpl.java
View file @
4df48449
...
...
@@ -768,7 +768,7 @@ public class BasicGridAcceptanceServiceImpl
//驳回的时候 也需根据 工程或者设计 整改单状态修改并网状态
LambdaUpdateWrapper
<
BasicGridRecord
>
qu
=
new
LambdaUpdateWrapper
();
qu
.
eq
(
BasicGridRecord:
:
getPeasantHouseholdId
,
hygfRectificationOrder
.
getPeasantHouseholeId
());
if
(
CollectionUtil
.
isEmpty
(
list
))
{
if
(
!
CollectionUtil
.
isEmpty
(
list
))
{
List
<
String
>
collect
=
list
.
stream
().
map
(
HygfRectificationOrder:
:
getRectificationStatus
).
collect
(
Collectors
.
toList
());
qu
.
set
(
BasicGridRecord:
:
getGridStatus
,
collect
.
contains
(
WorkOrderEnum
.
待审核
.
getCode
())?
GridStatusEnum
.
ZGDSH
.
getCode
():
GridStatusEnum
.
DZG
.
getCode
());
}
else
{
...
...
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