Skip to content
项目
群组
代码片段
帮助
当前项目
正在载入...
登录 / 注册
切换导航面板
J
jiayanWMS
Project
Project
详情
活动
周期分析
仓库
仓库
文件
提交
分支
标签
贡献者
Graph
比较
统计图
议题
0
议题
0
列表
看板
标记
Milestones
合并请求
0
合并请求
0
CI / CD
CI / CD
流水线
作业
日程
统计图
Wiki
Wiki
代码片段
代码片段
成员
成员
折叠边栏
关闭边栏
活动
图像
聊天
创建新问题
作业
提交
问题看板
Open sidebar
李炎
jiayanWMS
Commits
ce203a3b
提交
ce203a3b
authored
9月 24, 2021
作者:
许俊
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
修改
上级
906efd30
隐藏空白字符变更
内嵌
并排
正在显示
2 个修改的文件
包含
50 行增加
和
6 行删除
+50
-6
HousePickingtableController.java
...iost/basedata/controller/HousePickingtableController.java
+26
-6
HousePickingtable.java
...jeecg/modules/iost/basedata/entity/HousePickingtable.java
+24
-0
没有找到文件。
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/basedata/controller/HousePickingtableController.java
浏览文件 @
ce203a3b
...
...
@@ -44,6 +44,12 @@ import org.jeecg.common.aspect.annotation.AutoLog;
public
class
HousePickingtableController
extends
JeecgController
<
HousePickingtable
,
HouseIPickingtableService
>
{
@Autowired
private
HouseIPickingtableService
pickingtableService
;
@Autowired
private
HousePickingReadyService
housePickingReadyService
;
@Autowired
private
HouseIPickingtableService
houseIPickingtableService
;
@Autowired
private
HousePickingFinshService
housePickingFinshService
;
/**
* 分页列表查询
...
...
@@ -67,6 +73,26 @@ public class HousePickingtableController extends JeecgController<HousePickingtab
return
Result
.
OK
(
pageList
);
}
@AutoLog
(
value
=
"待拣货产品明细-分页列表查询"
)
@ApiOperation
(
value
=
"待拣货产品明细-分页列表查询"
,
notes
=
"待拣货产品明细-分页列表查询"
)
@GetMapping
(
value
=
"/ReadyList"
)
public
Result
<?>
queryReadyList
(
@RequestParam
(
required
=
true
)
String
id
){
QueryWrapper
<
HousePickingReady
>
qw
=
new
QueryWrapper
<>();
qw
.
eq
(
"house_pickingtable_id"
,
id
);
List
<
HousePickingReady
>
housePickingReadies
=
housePickingReadyService
.
getBaseMapper
().
selectList
(
qw
);
return
Result
.
OK
(
housePickingReadies
);
}
@AutoLog
(
value
=
"已拣货产品明细-分页列表查询"
)
@ApiOperation
(
value
=
"已拣货产品明细-分页列表查询"
,
notes
=
"已拣货产品明细-分页列表查询"
)
@GetMapping
(
value
=
"/FinshList"
)
public
Result
<?>
queryFinshList
(
@RequestParam
(
required
=
true
)
String
id
){
QueryWrapper
<
HousePickingFinsh
>
qw
=
new
QueryWrapper
<>();
qw
.
eq
(
"house_pickingtable_id"
,
id
);
List
<
HousePickingFinsh
>
housePickingReadies
=
housePickingFinshService
.
getBaseMapper
().
selectList
(
qw
);
return
Result
.
OK
(
housePickingReadies
);
}
/**
* 添加
*
...
...
@@ -181,12 +207,6 @@ public class HousePickingtableController extends JeecgController<HousePickingtab
}
/*-------------------------------------------------PDA端口-----------------------------------------------------*/
@Autowired
private
HousePickingReadyService
housePickingReadyService
;
@Autowired
private
HouseIPickingtableService
houseIPickingtableService
;
@Autowired
private
HousePickingFinshService
housePickingFinshService
;
/**
* 测试专用
...
...
jeecg-boot-module-system/src/main/java/org/jeecg/modules/iost/basedata/entity/HousePickingtable.java
浏览文件 @
ce203a3b
...
...
@@ -58,6 +58,30 @@ public class HousePickingtable implements Serializable {
/**备注*/
@ApiModelProperty
(
value
=
"备注"
)
private
String
remarks
;
/**销售单单号*/
@ApiModelProperty
(
value
=
"销售单单号"
)
private
String
salesOrderId
;
/**领单时间*/
@ApiModelProperty
(
value
=
"领单时间"
)
private
Date
receivesTime
;
/**拣货员*/
@ApiModelProperty
(
value
=
"拣货员"
)
private
String
picker
;
/**扫描员*/
@ApiModelProperty
(
value
=
"扫描员"
)
private
String
scanner
;
/**打印次数*/
@ApiModelProperty
(
value
=
"打印次数"
)
private
Integer
printingNumber
;
/**打印时间*/
@ApiModelProperty
(
value
=
"打印时间"
)
private
Date
printingTime
;
/**拣货完成时间*/
@ApiModelProperty
(
value
=
"拣货完成时间"
)
private
Date
finishTime
;
}
编写
预览
Markdown
格式
0%
重试
或
添加新文件
添加附件
取消
您添加了
0
人
到此讨论。请谨慎行事。
请先完成此评论的编辑!
取消
请
注册
或者
登录
后发表评论