diff --git a/src/views/purchase/purOrder/purOrderEditDialog.vue b/src/views/purchase/purOrder/purOrderEditDialog.vue index 8f31ee49..ff3060a9 100644 --- a/src/views/purchase/purOrder/purOrderEditDialog.vue +++ b/src/views/purchase/purOrder/purOrderEditDialog.vue @@ -74,16 +74,44 @@ + - - + + + + {{ item.name }} + + - - + + + + + + + @@ -91,14 +119,16 @@ + + 产品录入 - + @@ -151,6 +181,7 @@ :closeDialog="closeDialogC2" :purType="1" :pId="pId" + :supId="formData.supId" :data="thisData" > @@ -187,6 +218,7 @@ import { import {filterSubByInv} from "@/api/system/invSubWarehouse"; import SelectPlanListDialog from "@/views/purchase/purPlan/selectPlanListDialog"; import {parseTime} from "@/utils/coTools"; +import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain"; export default { name: "idQuery", @@ -221,9 +253,11 @@ export default { deptCode: null, locStorageCode: null, invWarehouseCode: null, + supId: null, }, pId: null, formRules: {}, + fromOptions: [], codeArray: [], total: 0, loading: false, @@ -254,7 +288,9 @@ export default { storageList: [], invCodeList: [], invQueryData: {}, - selectApplyVisible: false + selectApplyVisible: false, + corpOrderIdDisabled: false, + }; }, watch: { @@ -341,6 +377,10 @@ export default { }) }, selectProductFunction() { + if (this.$isBlank(this.formData.supId)) { + this.$message.warning("请先选择供应商!"); + return; + } this.selectProductVisible = true; //当父id为空的时候生成id if (this.pId == null) { @@ -365,9 +405,11 @@ export default { } selectOrderDetail(this.query) //查找该单号下的所有条码 .then((response) => { - console.log(response) this.codeArray = response.data.list || []; this.total = response.data.total || 0; + if (this.total > 0) { + this.corpOrderIdDisabled = true; + } this.loading = false; }) .catch(() => { @@ -482,6 +524,28 @@ export default { }) } }, + + + //获取往来单位候选列表 + findMethod(query) { + this.fromOptions = []; + let cQuery = { + key: query, + corpType: 2, + outType: null, + page: 1, + limit: 20, + }; + getBasicUnitMaintains(cQuery) + .then((response) => { + this.loading = false; + this.fromOptions = response.data.list || []; + }) + .catch(() => { + this.loading = false; + }); + }, + }, filters: {}, mounted() { @@ -499,7 +563,9 @@ export default { this.formData = this.idQuery.formData; this.orderEditor = true; this.sValue = this.formData.corpName; + this.findMethod(this.formData.supId); this.getStockOrderDetailList(); + this.corpOrderIdDisabled = true; } else { var date = new Date(); this.formData = { diff --git a/src/views/purchase/purOrder/purOrderSelectProduct.vue b/src/views/purchase/purOrder/purOrderSelectProduct.vue index 8b9ff537..f73b0c90 100644 --- a/src/views/purchase/purOrder/purOrderSelectProduct.vue +++ b/src/views/purchase/purOrder/purOrderSelectProduct.vue @@ -1,115 +1,120 @@ @@ -377,10 +387,10 @@ export default { div /deep/ .el-table .warning-row { - background: #bebebe; + background: #bebebe; } div /deep/ .el-table .success-row { - background: #ffffff; + background: #ffffff; }