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
35900edf
Commit
35900edf
authored
May 21, 2024
by
liuzeheng
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
AWB文件上传
parent
2d7e0265
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
32 additions
and
1 deletion
+32
-1
BoxClearanceDocDO.java
...dao/module/shipment/dal/dataobject/BoxClearanceDocDO.java
+5
-1
BoxClearanceDocBackVO.java
...le/shipment/vo/boxClearanceDoc/BoxClearanceDocBackVO.java
+4
-0
BoxClearanceDocBaseVO.java
...le/shipment/vo/boxClearanceDoc/BoxClearanceDocBaseVO.java
+2
-0
BoxPreloadGoodsController.java
.../shipment/controller/admin/BoxPreloadGoodsController.java
+21
-0
No files found.
yudao-module-shipment/yudao-module-shipment-core/src/main/java/cn/iocoder/yudao/module/shipment/dal/dataobject/BoxClearanceDocDO.java
View file @
35900edf
package
cn
.
iocoder
.
yudao
.
module
.
shipment
.
dal
.
dataobject
;
import
io.swagger.annotations.ApiModelProperty
;
import
lombok.*
;
import
java.util.*
;
import
com.baomidou.mybatisplus.annotation.*
;
...
...
@@ -20,7 +21,7 @@ import cn.iocoder.yudao.framework.mybatis.core.dataobject.BaseDO;
public
class
BoxClearanceDocDO
extends
BaseDO
{
/**
*
*
*/
@TableId
private
Long
id
;
...
...
@@ -77,4 +78,7 @@ public class BoxClearanceDocDO extends BaseDO {
*/
private
String
docFiles
;
@ApiModelProperty
(
value
=
"awb文件路径"
)
private
String
cdAwbFile
;
}
yudao-module-shipment/yudao-module-shipment-core/src/main/java/cn/iocoder/yudao/module/shipment/vo/boxClearanceDoc/BoxClearanceDocBackVO.java
View file @
35900edf
...
...
@@ -82,4 +82,8 @@ public class BoxClearanceDocBackVO {
@ApiModelProperty
(
value
=
"空运清关文件列表"
)
private
String
docFiles
;
@ApiModelProperty
(
value
=
"awb文件路径"
)
private
String
cdAwbFile
;
}
yudao-module-shipment/yudao-module-shipment-core/src/main/java/cn/iocoder/yudao/module/shipment/vo/boxClearanceDoc/BoxClearanceDocBaseVO.java
View file @
35900edf
...
...
@@ -58,4 +58,6 @@ public class BoxClearanceDocBaseVO {
@ApiModelProperty
(
value
=
"空运清关文件列表"
)
private
String
docFiles
;
@ApiModelProperty
(
value
=
"awb文件路径"
)
private
String
cdAwbFile
;
}
yudao-module-shipment/yudao-module-shipment-rest/src/main/java/cn/iocoder/yudao/module/shipment/controller/admin/BoxPreloadGoodsController.java
View file @
35900edf
...
...
@@ -223,6 +223,23 @@ public class BoxPreloadGoodsController {
return
error
(
FILE_NOT_EXISTS
);
}
@GetMapping
(
"/cdAwbFile"
)
@ApiOperation
(
"下载AWB文件"
)
@ApiImplicitParam
(
name
=
"shipmentId"
,
value
=
"出货单ID"
,
required
=
true
,
example
=
"20"
,
dataTypeClass
=
Long
.
class
)
public
CommonResult
<
String
>
cdAwbFile
(
@RequestParam
(
"shipmentId"
)
Long
shipmentId
,
HttpServletResponse
response
)
throws
Exception
{
BoxClearanceDocQueryVO
queryVO
=
new
BoxClearanceDocQueryVO
();
queryVO
.
setShipmentId
(
shipmentId
);
List
<
BoxClearanceDocDO
>
boxClearanceDocList
=
boxClearanceDocService
.
getBoxClearanceDocList
(
queryVO
);
if
(!
CollectionUtil
.
isEmpty
(
boxClearanceDocList
))
{
BoxClearanceDocDO
boxClearanceDocDO
=
boxClearanceDocList
.
get
(
0
);
String
cdAwbFile
=
boxClearanceDocDO
.
getCdAwbFile
();
if
(
StringUtils
.
isNotBlank
(
cdAwbFile
))
{
return
success
(
cdAwbFile
);
}
}
return
error
(
FILE_NOT_EXISTS
);
}
// @NotNull
// private List<InputStream> getInputStreams(List<String> agentListFiles) {
// return agentListFiles.stream().map(item -> {
...
...
@@ -371,6 +388,10 @@ public class BoxPreloadGoodsController {
return
success
(
""
);
}
@GetMapping
(
"/loadGoodsList"
)
@ApiOperation
(
"获得装柜订单列表,卸柜页面数据use this"
)
@ApiImplicitParams
({
...
...
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