diff --git a/src/views/inventory/supInoutSearchOrder.vue b/src/views/inventory/supInoutSearchOrder.vue
index c71805d..b4fcc77 100644
--- a/src/views/inventory/supInoutSearchOrder.vue
+++ b/src/views/inventory/supInoutSearchOrder.vue
@@ -64,6 +64,33 @@
+
+
+
+
+ {{ item.name }}
+
+
+
+
@@ -110,6 +137,7 @@
import {getResultDetailList, getResultOrderList, verifyTemplateFile, printOrder} from '@/api/inout/orderDetailResult'
import {isBlank} from "@/utils/strUtil";
+import {getBasicUnitMaintains} from "@/api/basic/basicUnitMaintain";
export default {
name: "supInoutSearchOrder",
@@ -117,8 +145,10 @@ export default {
return {
showSearch: true,
list: {},
+ corpLoading: false,
filterQuery: {
id: "",
+ supId: "",
orderIdFk: null,
fromCorpName: null,
coName: null,
@@ -131,6 +161,7 @@ export default {
actionType: "norDetail",
},
loading: false,
+ fromOptions: [],
orderSelection: [],
total: 0,
showSup: false,
@@ -184,6 +215,7 @@ export default {
coName: null,
spec: null,
batchNo: null,
+ supId: null,
page: 1,
limit: 10,
startAduditTime: null,
@@ -211,6 +243,31 @@ export default {
hideSearch() {
this.showSearch = !this.showSearch;
},
+ findMethod(key) {
+ this.corpLoading = true;
+ this.fromOptions = [];
+ let params = {
+ key: key,
+ corpType: 2,
+ page: 1,
+ limit: 20
+ };
+ getBasicUnitMaintains(params).then((res) => {
+ this.corpLoading = false;
+ this.fromOptions = res.data.list || [];
+ }).catch(() => {
+ this.corpLoading = false;
+ })
+ },
+ corpChange(value) {
+ if (!isBlank(value)) {
+ this.findMethod(value);
+ }
+ },
+ clear(){
+ this.findMethod();
+ },
+
getList() {
this.loading = true;
this.filterQuery.actionType = this.actionType;