Skip to content
Toggle navigation
Projects
Groups
Snippets
Help
yangxiujun
/
paidan_demo
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Settings
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit ff0203d6
authored
Jul 06, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
合并代码
1 parent
e4422c37
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
project-order/src/main/java/com/dituhui/pea/order/service/impl/WorkbenchServiceImpl.java
project-order/src/main/java/com/dituhui/pea/order/service/impl/WorkbenchServiceImpl.java
View file @
ff0203d
...
...
@@ -28,9 +28,6 @@ import java.util.Map;
public
class
WorkbenchServiceImpl
implements
WorkbenchService
{
@Autowired
private
OrderChangeDao
orderChangeDao
;
@Autowired
private
OrderRequestDao
orderRequestDao
;
@Autowired
...
...
@@ -43,6 +40,10 @@ public class WorkbenchServiceImpl implements WorkbenchService {
private
CapacityEngineerStatDao
capacityEngineerStatDao
;
@Autowired
private
OrderEventDao
orderEventDao
;
@Autowired
private
OrderRequestMPDao
orderRequestMPDao
;
@Override
...
...
@@ -52,11 +53,11 @@ public class WorkbenchServiceImpl implements WorkbenchService {
String
levelType
=
reqDTO
.
getLevelType
();
String
levelValue
=
reqDTO
.
getLevelValue
();
if
(
"cluster"
.
equals
(
levelType
))
{
changes
=
order
ChangeDao
.
findAllByClusterId
(
levelValue
,
reqDTO
.
getDate
(),
pageable
);
changes
=
order
EventDao
.
findAllByClusterId
(
levelValue
,
reqDTO
.
getDate
(),
pageable
);
}
else
if
(
"branch"
.
equals
(
levelType
))
{
changes
=
order
Change
Dao
.
findAllByBranchId
(
levelValue
,
reqDTO
.
getDate
(),
pageable
);
changes
=
order
Event
Dao
.
findAllByBranchId
(
levelValue
,
reqDTO
.
getDate
(),
pageable
);
}
else
{
changes
=
order
Change
Dao
.
findAllByGroupId
(
levelValue
,
reqDTO
.
getDate
(),
pageable
);
changes
=
order
Event
Dao
.
findAllByGroupId
(
levelValue
,
reqDTO
.
getDate
(),
pageable
);
}
List
<
OrderChangeListRespDTO
.
Content
>
contents
=
new
ArrayList
<>();
for
(
Object
e1
:
changes
.
getContent
())
{
...
...
@@ -68,7 +69,7 @@ public class WorkbenchServiceImpl implements WorkbenchService {
.
setOperator
(
e
.
getOperator
())
.
setDescription
(
e
.
getContent
())
.
setMemo
(
e
.
getMemo
())
.
setUpdateTime
(
e
.
getUpdateTime
()
.
toString
()
);
.
setUpdateTime
(
e
.
getUpdateTime
());
contents
.
add
(
content
);
}
OrderChangeListRespDTO
respDTO
=
new
OrderChangeListRespDTO
();
...
...
Write
Preview
Markdown
is supported
Attach a file
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 post a comment