|
|
@ -127,7 +127,8 @@
|
|
|
|
<el-row type="flex" justify="end">
|
|
|
|
<el-row type="flex" justify="end">
|
|
|
|
<el-button-group style="display: flex">
|
|
|
|
<el-button-group style="display: flex">
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
|
|
|
|
<el-button-group style="display: flex;margin-bottom: 15px; margin-right: 50px">
|
|
|
|
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入</el-button>
|
|
|
|
<el-button type="primary" @click.native.stop="selectProductFunction()" :loading="loading">产品录入
|
|
|
|
|
|
|
|
</el-button>
|
|
|
|
<!-- <el-button type="primary" :loading="loading" @click.native.stop="selectApply()">选入采购单</el-button>-->
|
|
|
|
<!-- <el-button type="primary" :loading="loading" @click.native.stop="selectApply()">选入采购单</el-button>-->
|
|
|
|
</el-button-group>
|
|
|
|
</el-button-group>
|
|
|
|
|
|
|
|
|
|
|
@ -154,7 +155,21 @@
|
|
|
|
</el-table-column>
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
|
|
|
|
<el-table-column label="注册/备案号" prop="zczbhhzbapzbh"></el-table-column>
|
|
|
|
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
|
|
|
|
<el-table-column label="生产厂家" prop="manufactory"></el-table-column>
|
|
|
|
<el-table-column label="供应商" prop="supName"></el-table-column>
|
|
|
|
<el-table-column label="供应商" prop="supName">
|
|
|
|
|
|
|
|
<template slot-scope="scope">
|
|
|
|
|
|
|
|
<el-select size="mini"
|
|
|
|
|
|
|
|
@change='tableCountChange(scope.row)'
|
|
|
|
|
|
|
|
v-model="scope.row.supName" clearable
|
|
|
|
|
|
|
|
:disabled="scope.row.index !== selectedIndex"
|
|
|
|
|
|
|
|
placeholder="请选择">
|
|
|
|
|
|
|
|
<el-option v-for="item in suppliers"
|
|
|
|
|
|
|
|
:key="item.erpId"
|
|
|
|
|
|
|
|
:label="item.name"
|
|
|
|
|
|
|
|
:value="item.name">
|
|
|
|
|
|
|
|
</el-option>
|
|
|
|
|
|
|
|
</el-select>
|
|
|
|
|
|
|
|
</template>
|
|
|
|
|
|
|
|
</el-table-column>
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
<el-table-column label="操作" width="120">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<template slot-scope="scope">
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true"
|
|
|
|
<el-button type="text" size="small" :disabled="scope.row.index === selectedIndex" @click.stop="true"
|
|
|
@ -214,7 +229,8 @@ import {
|
|
|
|
listOrderDetail,
|
|
|
|
listOrderDetail,
|
|
|
|
addOrderId,
|
|
|
|
addOrderId,
|
|
|
|
selectOrderDetail,
|
|
|
|
selectOrderDetail,
|
|
|
|
updateDetail
|
|
|
|
updateDetail,
|
|
|
|
|
|
|
|
filterSupList
|
|
|
|
} from "@/api/purchase/purOrder";
|
|
|
|
} from "@/api/purchase/purOrder";
|
|
|
|
import {filterSubByInv} from "@/api/system/invSubWarehouse";
|
|
|
|
import {filterSubByInv} from "@/api/system/invSubWarehouse";
|
|
|
|
import SelectPlanListDialog from "@/views/purchase/purPlan/selectPlanListDialog";
|
|
|
|
import SelectPlanListDialog from "@/views/purchase/purPlan/selectPlanListDialog";
|
|
|
@ -267,6 +283,7 @@ export default {
|
|
|
|
formVisible: false,
|
|
|
|
formVisible: false,
|
|
|
|
deleteLoading: false,
|
|
|
|
deleteLoading: false,
|
|
|
|
orderNo: null,
|
|
|
|
orderNo: null,
|
|
|
|
|
|
|
|
suppliers: [],
|
|
|
|
statusMap: {
|
|
|
|
statusMap: {
|
|
|
|
1: "草稿",
|
|
|
|
1: "草稿",
|
|
|
|
2: "未审核",
|
|
|
|
2: "未审核",
|
|
|
@ -422,6 +439,13 @@ export default {
|
|
|
|
rowChange(val) {
|
|
|
|
rowChange(val) {
|
|
|
|
this.currentRow = val;
|
|
|
|
this.currentRow = val;
|
|
|
|
this.selectedIndex = val.index;
|
|
|
|
this.selectedIndex = val.index;
|
|
|
|
|
|
|
|
filterSupList({productId:val.productId}) //查找该单号下的所有条码
|
|
|
|
|
|
|
|
.then((response) => {
|
|
|
|
|
|
|
|
this.suppliers = response.data.list || [];
|
|
|
|
|
|
|
|
})
|
|
|
|
|
|
|
|
.catch(() => {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
},
|
|
|
|
},
|
|
|
|
tableCountChange(row) {
|
|
|
|
tableCountChange(row) {
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|
if (this.$isNotBlank(row)) {
|
|
|
|