add:出库管理添加批次查询

This commit is contained in:
zhangzhiqiang
2023-02-22 21:48:05 +08:00
parent 4781f3bb72
commit b3d7410833
4 changed files with 19 additions and 0 deletions

View File

@@ -125,6 +125,9 @@ public class CheckOutBillServiceImpl implements CheckOutBillService {
if (StrUtil.isNotEmpty(map.get("remark"))) {
map.put("remark", "%" + map.get("remark") + "%");
}
if (StrUtil.isNotEmpty(map.get("pcsn"))) {
map.put("pcsn", map.get("pcsn"));
}
String begin_time = map.get("begin_time");
String end_time = map.get("end_time");
if (StrUtil.isNotEmpty(begin_time)) {

View File

@@ -545,6 +545,9 @@
OPTION 输入.bill_code <> ""
qlmst.inspection_code like 输入.bill_code
ENDOPTION
OPTION 输入.pcsn <> ""
qldtl.pcsn = 输入.pcsn
ENDOPTION
OPTION 输入.begin_time <> ""
qlmst.biz_date >= 输入.begin_time
ENDOPTION

View File

@@ -1136,6 +1136,10 @@ export default {
this.tableDtl = res.tableDtl
this.form2.total_qty1 = 0
this.form2.add_qty1 = 0
this.ball_time = res.ball_time
if ((parseFloat(this.ball_time) > 0)) {
this.form.ball_time = parseFloat(this.ball_time)
}
for (let i = 0; i < this.tableDtl.length; i++) {
const row = this.tableDtl[i]
row.edit = true

View File

@@ -39,6 +39,15 @@
class="filter-item"
@keyup.enter.native="crud.toQuery"
/>
<el-input
v-model="query.pcsn"
clearable
size="mini"
placeholder="批次"
style="width: 200px;"
class="filter-item"
@keyup.enter.native="crud.toQuery"
/>
<rrOperation />
</div>
</div>