BUG修复
This commit is contained in:
parent
7fc2aa9e78
commit
4340e57d98
@ -475,6 +475,15 @@ export default {
|
|||||||
quantityCheck: [
|
quantityCheck: [
|
||||||
{ required: true, message: "检测数量不能为空", trigger: "blur" }
|
{ required: true, message: "检测数量不能为空", trigger: "blur" }
|
||||||
],
|
],
|
||||||
|
|
||||||
|
quantityUnqualified: [
|
||||||
|
{ required: true, message: "不合格品数量不能为空", trigger: "blur" }
|
||||||
|
],
|
||||||
|
|
||||||
|
quantityQualified: [
|
||||||
|
{ required: true, message: "合格品数量不能为空", trigger: "blur" }
|
||||||
|
]
|
||||||
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
@ -88,7 +88,7 @@
|
|||||||
<el-button slot="append" @click="handleSelectStock" icon="el-icon-search"></el-button>
|
<el-button slot="append" @click="handleSelectStock" icon="el-icon-search"></el-button>
|
||||||
</el-input>
|
</el-input>
|
||||||
</el-form-item>
|
</el-form-item>
|
||||||
<StockSelect ref="stockSelect" :batchCode="batchCdoe" :vendorId="vendorId" @onSelected="onStockSelected"></StockSelect>
|
<StockSelect ref="stockSelect" :batchCode="form.batchCode" :vendorId="form.vendorId" @onSelected="onStockSelected"></StockSelect>
|
||||||
</el-col>
|
</el-col>
|
||||||
<el-col :span="8">
|
<el-col :span="8">
|
||||||
<el-form-item label="产品物料名称" prop="itemName">
|
<el-form-item label="产品物料名称" prop="itemName">
|
||||||
@ -302,10 +302,8 @@ export default {
|
|||||||
this.reset();
|
this.reset();
|
||||||
const lineId = row.lineId || this.ids
|
const lineId = row.lineId || this.ids
|
||||||
getIssueline(lineId).then(response => {
|
getIssueline(lineId).then(response => {
|
||||||
|
debugger;
|
||||||
this.form = response.data;
|
this.form = response.data;
|
||||||
this.warehouseInfo[0] = response.data.warehouseId;
|
|
||||||
this.warehouseInfo[1] = response.data.locationId;
|
|
||||||
this.warehouseInfo[2] = response.data.areaId;
|
|
||||||
this.open = true;
|
this.open = true;
|
||||||
this.title = "修改生产领料单行";
|
this.title = "修改生产领料单行";
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user