|
|
|
@ -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;
|
|
|
|
|