Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
cloud-fb
Overview
Overview
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
王衍超
cloud-fb
Commits
9d7d9c42
Commit
9d7d9c42
authored
May 28, 2021
by
高晓磊
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
价格趋势图排序
parent
42423d5e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
PriceAdjustmentServiceImpl.java
...as/price/internal/service/PriceAdjustmentServiceImpl.java
+4
-2
No files found.
backend/xyst.dinas.price/src/main/java/com/xyst/dinas/price/internal/service/PriceAdjustmentServiceImpl.java
View file @
9d7d9c42
...
...
@@ -94,7 +94,9 @@ public class PriceAdjustmentServiceImpl implements PriceAdjustmentService {
e
.
printStackTrace
();
}
});
stationDetail
.
setTimeValues
(
timeValues2
);
List
<
TimeValue
>
timeValues21
=
timeValues2
;
timeValues21
=
timeValues21
.
stream
().
sorted
(
Comparator
.
comparing
(
TimeValue:
:
getTime
)).
collect
(
Collectors
.
toList
());
stationDetail
.
setTimeValues
(
timeValues21
);
}
}
return
detailsByFilter
;
...
...
@@ -167,7 +169,7 @@ public class PriceAdjustmentServiceImpl implements PriceAdjustmentService {
return
;
}
for
(
KObject
kObject
:
kObjects
)
{
if
(
kObject
.
getString
(
BaseConstants
.
ID
).
equals
(
k
O
bject
.
getString
(
BaseConstants
.
ID
))){
if
(
kObject
.
getString
(
BaseConstants
.
ID
).
equals
(
k
o
bject
.
getString
(
BaseConstants
.
ID
))){
continue
;
}
kObject
.
set
(
"adjustmentStatus"
,
PriceAdjustmentAdjustmentStatusEnum
.
ABOLITION
.
getValue
());
...
...
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