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 9159b9a8
authored
Jul 06, 2023
by
丁伟峰
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'origin/develop' into develop
2 parents
8aaccd8e
8559feb4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
9 additions
and
8 deletions
project-order/src/main/java/com/dituhui/pea/order/controller/WorkbenchController.java
project-order/src/main/java/com/dituhui/pea/order/service/impl/WorkbenchServiceImpl.java
project-order/src/main/java/com/dituhui/pea/order/controller/WorkbenchController.java
View file @
9159b9a
...
...
@@ -36,7 +36,7 @@ public class WorkbenchController {
@GetMapping
(
"/workbench/summary"
)
public
Result
<?>
workbenchSummary
(
@RequestParam
String
levelType
,
@RequestParam
String
levelValue
,
@RequestParam
LocalDate
date
)
{
Result
<?>
res
=
null
;
try
{
try
{
res
=
workbenchService
.
getWorkbenchSummary
(
levelType
,
levelValue
,
date
);
}
catch
(
BusinessException
e
)
{
return
Result
.
failed
(
e
.
getMessage
());
...
...
project-order/src/main/java/com/dituhui/pea/order/service/impl/WorkbenchServiceImpl.java
View file @
9159b9a
...
...
@@ -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