|
|
|
@ -274,6 +274,18 @@
|
|
|
|
|
clearable></el-input>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
<el-col :span="8">
|
|
|
|
|
<el-form-item class="query-form-item" label="过滤方式:">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterQuery.filterNoInv"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
clearable>
|
|
|
|
|
<el-option label="有库存" :value="1"></el-option>
|
|
|
|
|
<el-option label="零库存" :value="2"></el-option>
|
|
|
|
|
<el-option label="负库存" :value="3"></el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
@ -572,6 +584,10 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
saveChange(row) {
|
|
|
|
|
if (isBlank(row.countNum)) {
|
|
|
|
|
this.$message.error("请输入盘点数量");
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
updateCountOrderDetail(row)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|