add:出库管理添加批次查询
This commit is contained in:
@@ -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)) {
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user