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 d9220f84
authored
Jun 15, 2023
by
wangli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改
1 parent
2e1e9e5d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/DispatchController.java
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/OrderServiceDetailController.java
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/ProductCategoryController.java
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/ScheduleController.java
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/DispatchController.java
View file @
d9220f8
...
...
@@ -24,7 +24,7 @@ public class DispatchController {
try
{
res
=
dispatchService
.
getDispatchOrderList
(
levelType
,
levelIds
,
date
,
groupTagId
);
}
catch
(
BusinessException
e
)
{
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
@@ -36,7 +36,7 @@ public class DispatchController {
try
{
res
=
dispatchService
.
getDispatchEngineerOrderList
(
levelType
,
levelIds
,
date
);
}
catch
(
BusinessException
e
)
{
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
@@ -48,7 +48,7 @@ public class DispatchController {
try
{
res
=
dispatchService
.
dispatchOrderConfirm
(
req
.
getEngineerCode
(),
req
.
getOrderIds
());
}
catch
(
BusinessException
e
){
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/OrderServiceDetailController.java
View file @
d9220f8
...
...
@@ -24,7 +24,7 @@ public class OrderServiceDetailController {
try
{
res
=
orderServiceDetail
.
getOrderServiceDetail
(
orderId
);
}
catch
(
BusinessException
e
)
{
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
@@ -37,7 +37,7 @@ public class OrderServiceDetailController {
try
{
res
=
orderServiceDetail
.
getOrderServiceDynamics
(
orderId
);
}
catch
(
BusinessException
e
)
{
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/ProductCategoryController.java
View file @
d9220f8
...
...
@@ -21,7 +21,7 @@ public class ProductCategoryController {
try
{
res
=
productCategoryService
.
getProductCategory
();
}
catch
(
BusinessException
e
)
{
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
project-order/src/main/java/com/alibaba/cloud/integration/order/controller/ScheduleController.java
View file @
d9220f8
...
...
@@ -25,7 +25,7 @@ public class ScheduleController {
try
{
res
=
scheduleService
.
getScheduleOverview
(
page
,
size
,
date
,
levelType
,
levelIds
);
}
catch
(
BusinessException
e
)
{
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
@@ -36,7 +36,7 @@ public class ScheduleController {
try
{
res
=
scheduleService
.
getScheduleEngineerOverview
(
date
,
engineerCode
);
}
catch
(
BusinessException
e
)
{
Result
.
failed
(
e
.
getMessage
());
return
Result
.
failed
(
e
.
getMessage
());
}
return
res
;
}
...
...
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