|
|
|
@ -73,6 +73,34 @@
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
<el-col :span="6">
|
|
|
|
|
<el-form-item class="query-form-item" label="供应商名称:" v-if="showSup">
|
|
|
|
|
<el-select
|
|
|
|
|
v-model="filterQuery.supId"
|
|
|
|
|
filterable
|
|
|
|
|
remote
|
|
|
|
|
clearable="true"
|
|
|
|
|
reserve-keyword
|
|
|
|
|
placeholder="请选择供应商名称"
|
|
|
|
|
:remote-method="findMethod"
|
|
|
|
|
size="mini"
|
|
|
|
|
:loading="corpLoading"
|
|
|
|
|
@change="corpChange"
|
|
|
|
|
style="width: 90%"
|
|
|
|
|
>
|
|
|
|
|
<el-option
|
|
|
|
|
v-for="item in fromOptions"
|
|
|
|
|
:key="item.name"
|
|
|
|
|
:label="item.name"
|
|
|
|
|
:value="item.erpId"
|
|
|
|
|
>
|
|
|
|
|
<span style="float: left">{{ item.name }}</span>
|
|
|
|
|
</el-option>
|
|
|
|
|
</el-select>
|
|
|
|
|
</el-form-item>
|
|
|
|
|
</el-col>
|
|
|
|
|
|
|
|
|
|
</el-row>
|
|
|
|
|
</el-form>
|
|
|
|
|
<div class="top-right-btn">
|
|
|
|
@ -158,7 +186,7 @@ import {getInvListByUser} from "@/api/system/invWarehouse";
|
|
|
|
|
import {getInvPreInProduct, deleteInvPreInProduct} from "@/api/inventory/invPreInSearch";
|
|
|
|
|
import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
|
|
|
|
|
import {isBlank} from "@/utils/strUtil";
|
|
|
|
|
import invPreProductsDetail from "@/views/inventory/InvPreProductsDetail.vue";
|
|
|
|
|
import invPreProductsDetail from "@/views/inventory/InvPreInProductsDetail.vue";
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
|
name: "InvPreProducts",
|
|
|
|
@ -173,7 +201,7 @@ export default {
|
|
|
|
|
supId: null,
|
|
|
|
|
zczbhhzbapzbh: null,
|
|
|
|
|
ylqxzcrbarmc: null,
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
invCode: null,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
},
|
|
|
|
@ -217,9 +245,9 @@ export default {
|
|
|
|
|
supId: null,
|
|
|
|
|
zczbhhzbapzbh: null,
|
|
|
|
|
ylqxzcrbarmc: null,
|
|
|
|
|
invCode: this.$store.getters.locInvCode,
|
|
|
|
|
page: 1,
|
|
|
|
|
limit: 10,
|
|
|
|
|
invCode: null,
|
|
|
|
|
};
|
|
|
|
|
this.getList();
|
|
|
|
|
},
|
|
|
|
|