出入库扫码相关bug修改

pro
anthonywj 2 years ago
parent 10ffb1988f
commit c7005c89c1

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

@ -37,15 +37,19 @@
</el-col>
<el-col :span="8">
<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
v-for="item in fromInvOptions"
:key="item.erpId"
:label="item.name"
:value="item.erpId"
v-for="item in fromInvOptions"
:key="item.erpId"
:label="item.name"
:value="item.erpId"
>
<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-select>
</el-form-item>
@ -729,14 +733,13 @@ export default {
this.getResultDetailList();
},
findFromInvList(val) {
let cQuery = {
};
let cQuery = {};
selectCorpList(cQuery)
.then((response) => {
this.fromInvOptions = response.data || [];
})
.catch(() => {
});
.then((response) => {
this.fromInvOptions = response.data || [];
})
.catch(() => {
});
},
getResultDetailList() {
if (isBlank(this.currentRow.billNo)) {

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

Loading…
Cancel
Save