Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
jiedao-api-boot-master
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
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
lanbaoming
jiedao-api-boot-master
Commits
b26b1078
Commit
b26b1078
authored
Mar 01, 2025
by
332784038@qq.com
Committed by
wux
Mar 20, 2025
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加批量加价页面出货单订单列表查询业务
parent
3c93444f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
BoxController.java
...yudao/module/shipment/controller/admin/BoxController.java
+19
-0
No files found.
yudao-module-shipment/yudao-module-shipment-rest/src/main/java/cn/iocoder/yudao/module/shipment/controller/admin/BoxController.java
View file @
b26b1078
...
@@ -282,6 +282,25 @@ public class BoxController {
...
@@ -282,6 +282,25 @@ public class BoxController {
return
success
(
orderList
);
return
success
(
orderList
);
}
}
@GetMapping
(
"/shipment/batch/markup/order/list"
)
@ApiOperation
(
"获得批量加价页面出货单订单列表"
)
public
CommonResult
<
List
<
OrderMarkupVO
>>
shipmentBatchMarkupOrderList
(
OrderQueryVO
query
)
{
if
((
query
.
getShipmentId
()
==
null
||
query
.
getShipmentId
()
==
0L
)
&&
StringUtils
.
isBlank
(
query
.
getContainerNumber
()))
{
return
error
(
PARAM_SHIPMENT_NOT_NULL
);
}
if
(
StringUtils
.
isBlank
(
query
.
getContainerNumber
())){
BoxDO
boxDO
=
boxService
.
getBox
(
query
.
getShipmentId
());
if
(
Objects
.
isNull
(
boxDO
)){
return
error
(
PARAM_SHIPMENT_NOT_NULL
);
}
query
.
setContainerNumber
(
boxDO
.
getSelfNo
());
}
List
<
OrderMarkupVO
>
list
=
boxService
.
shipmentBatchMarkupOrderList
(
query
);
return
success
(
list
);
}
@GetMapping
(
"/export-excel"
)
@GetMapping
(
"/export-excel"
)
@ApiOperation
(
"导出出货 Excel"
)
@ApiOperation
(
"导出出货 Excel"
)
@PreAuthorize
(
"@ss.hasPermission('shipment:box:export')"
)
@PreAuthorize
(
"@ss.hasPermission('shipment:box:export')"
)
...
...
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