From ceb20126a370ca141df2b493ac3d1abdd68d24a9 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?=E9=BB=84=E6=B3=BD=E8=85=BE?= <1178634255@qq.com>
Date: Wed, 19 Jul 2023 14:10:22 +0800
Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E5=BE=80=E6=9D=A5=E5=8D=95?=
=?UTF-8?q?=E4=BD=8D=E6=9F=A5=E8=AF=A2?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/views/inventory/supInoutSearchOrder.vue | 57 +++++++++++++++++++++
1 file changed, 57 insertions(+)
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;