|
|
|
@ -65,6 +65,8 @@ import {
|
|
|
|
|
} from "@/api/inventory/invPorduct";
|
|
|
|
|
import {addDetail} from "@/api/inout/receiveOrder";
|
|
|
|
|
import {addBizProduct} from "@/api/inout/orderDetailCode";
|
|
|
|
|
import {getInvPreInProduct} from "@/api/inventory/invPreInSearch";
|
|
|
|
|
import {getInvPreProduct} from "@/api/inventory/invPreProduct";
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
export default {
|
|
|
|
@ -162,19 +164,51 @@ export default {
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
getList() {
|
|
|
|
|
debugger
|
|
|
|
|
this.loading = true;
|
|
|
|
|
getInvProduct(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.showSup = response.data.showSup;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
//寄售
|
|
|
|
|
if(this.invQueryData.advanceType==3){
|
|
|
|
|
getInvPreProduct(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.showSup = response.data.showSup;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
//预验收
|
|
|
|
|
}else if(this.invQueryData.advanceType==2){
|
|
|
|
|
getInvPreInProduct(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.showSup = response.data.showSup;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
}else{
|
|
|
|
|
getInvProduct(this.filterQuery)
|
|
|
|
|
.then((response) => {
|
|
|
|
|
this.showSup = response.data.showSup;
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = response.data.list || [];
|
|
|
|
|
this.total = response.data.total || 0;
|
|
|
|
|
})
|
|
|
|
|
.catch(() => {
|
|
|
|
|
this.loading = false;
|
|
|
|
|
this.list = [];
|
|
|
|
|
this.total = 0;
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
hideSearch() {
|
|
|
|
|
this.showSearch = !this.showSearch;
|
|
|
|
|