出入库扫码相关bug修改

pro
anthonywj 2 years ago
parent 10ffb1988f
commit c7005c89c1

@ -468,6 +468,26 @@
></DialogSelectUnit> ></DialogSelectUnit>
</el-dialog> </el-dialog>
<!-- 绑定产品-->
<el-dialog
:title="selectRlTitle"
:visible.sync="selectRlVisible"
width="80%"
:close-on-click-modal="false"
:close-on-press-escape="false"
v-if="selectRlVisible"
append-to-body
>
<selectRlDialog
:curRow="codeFormData"
:type="1"
:fromCorp="orderFormData.fromCorp"
v-on:selectBindRl="selectBindRl"
></selectRlDialog>
</el-dialog>
<el-dialog <el-dialog
title="请指定当前产品所在货位" title="请指定当前产品所在货位"
:visible.sync="selectSpaceVisible" :visible.sync="selectSpaceVisible"
@ -510,6 +530,7 @@ import A from "../../plugins/KeyScaner";
import {findByInvUser} from "@/api/basic/busType"; import {findByInvUser} from "@/api/basic/busType";
import {getInvSpaceList} from "@/api/inventory/invSpace"; import {getInvSpaceList} from "@/api/inventory/invSpace";
import DialogSelectUnit from "./DialogSelectUnit"; import DialogSelectUnit from "./DialogSelectUnit";
import selectRlDialog from "./DialogSelectRl";
import DialogSelectSpace from "./DialogSelectSpace"; import DialogSelectSpace from "./DialogSelectSpace";
import {isBlank} from "@/utils/strUtil"; import {isBlank} from "@/utils/strUtil";
@ -625,6 +646,7 @@ export default {
fromStorageOptions: [], fromStorageOptions: [],
curRow: null, curRow: null,
dialogTableVisible: false, dialogTableVisible: false,
selectRlVisible: false,
selectSpaceVisible: false, selectSpaceVisible: false,
sitcomScan: false, sitcomScan: false,
selectRlTitle: "绑定产品", selectRlTitle: "绑定产品",
@ -654,7 +676,7 @@ export default {
bizDetailPanel, bizDetailPanel,
editCodeDialog, editCodeDialog,
DialogCreateOrderSelect, DialogCreateOrderSelect,
DialogSelectUnit, DialogSelectSpace DialogSelectUnit, DialogSelectSpace, selectRlDialog
}, },
methods: { methods: {
// //
@ -992,6 +1014,10 @@ export default {
} }
if (this.checkPreInArray != null) {
this.orderFormData.checkPreInOrders = this.checkPreInArray.join(",");
}
if (this.$isBlank(this.orderFormData.corpOrderId)) { if (this.$isBlank(this.orderFormData.corpOrderId)) {
let date = new Date(); let date = new Date();
this.orderFormData.corpOrderId = this.orderFormData.corpOrderId =
@ -1052,11 +1078,12 @@ export default {
this.refreshCodesPanel(); this.refreshCodesPanel();
this.$message.error(response.message); this.$message.error(response.message);
this.selectRlTitle = response.message; this.selectRlTitle = response.message;
this.selectRlVisible = true;
} else if (response.code == 503) { } else if (response.code == 503) {
// //
this.curRow = response.data; this.curRow = response.data;
this.orderFormData.billNo = this.curRow.orderId; this.orderFormData.billNo = this.curRow.orderId;
this.codeFormData.relId = this.curRow.relId, this.codeFormData.relId = this.curRow.relId;
this.refreshCodesPanel(); this.refreshCodesPanel();
this.selectUnitTitle = response.message; this.selectUnitTitle = response.message;
this.$message.error(response.message); this.$message.error(response.message);
@ -1310,6 +1337,13 @@ export default {
this.addCode(); this.addCode();
}, },
selectBindRl(row) {
this.selectRlVisible = false;
this.orderFormData.relId = row.id;
this.addCode();
},
selectSpaceBind(val) { selectSpaceBind(val) {
if (this.curAction.scanPreIn) { if (this.curAction.scanPreIn) {
this.orderFormData.checkPreInSpaceCode = val; this.orderFormData.checkPreInSpaceCode = val;

@ -37,7 +37,11 @@
</el-col> </el-col>
<el-col :span="8"> <el-col :span="8">
<el-form-item label="往来单位:"> <el-form-item label="往来单位:">
<el-select v-model="filterQuery.fromCorp" filterable placeholder="请选择往来仓库" clearable style="width: 90%"> <el-select v-model="filterQuery.fromCorp"
filterable
remote
reserve-keyword
placeholder="请选择往来单位" clearable style="width: 90%">
<el-option <el-option
v-for="item in fromInvOptions" v-for="item in fromInvOptions"
:key="item.erpId" :key="item.erpId"
@ -45,7 +49,7 @@
:value="item.erpId" :value="item.erpId"
> >
<span style="float: left">{{ item.name }}</span> <span style="float: left">{{ item.name }}</span>
<span style="float: right; color: #8492a6; font-size: 13px">{{item.code}}</span> <span style="float: right; color: #8492a6; font-size: 13px">{{ item.code }}</span>
</el-option> </el-option>
</el-select> </el-select>
</el-form-item> </el-form-item>
@ -729,8 +733,7 @@ export default {
this.getResultDetailList(); this.getResultDetailList();
}, },
findFromInvList(val) { findFromInvList(val) {
let cQuery = { let cQuery = {};
};
selectCorpList(cQuery) selectCorpList(cQuery)
.then((response) => { .then((response) => {
this.fromInvOptions = response.data || []; this.fromInvOptions = response.data || [];

@ -573,6 +573,7 @@ export default {
path: "", path: "",
}); });
this.filterQuery = { this.filterQuery = {
udiCode: null,
nameCode: null, nameCode: null,
unitFk: null, unitFk: null,
page: 1, page: 1,
@ -582,6 +583,7 @@ export default {
}, },
getList() { getList() {
this.loading = true; this.loading = true;
this.filterQuery.udiCode = this.curRow.code;
this.filterQuery.nameCode = this.curRow.nameCode; this.filterQuery.nameCode = this.curRow.nameCode;
this.filterQuery.bindRlIds = this.curRow.bindRlIds; this.filterQuery.bindRlIds = this.curRow.bindRlIds;
this.filterQuery.unitFk = this.fromCorp; this.filterQuery.unitFk = this.fromCorp;
@ -710,10 +712,8 @@ export default {
} }
, ,
bindId(val) { bindId(val) {
if (this.curRow.code != null || this.type == 1) { if (this.curRow.code != null || this.type == 1) {
this.$emit("selectBindRl", val); this.$emit("selectBindRl", val);
// this.$emit("closeBindDialog", true);
} else { } else {
let query = { let query = {
id: this.curRow.id, id: this.curRow.id,

Loading…
Cancel
Save