snow 2 years ago
parent
commit
221288c62c

File diff suppressed because it is too large
+ 0 - 0
dist/static/js/0.js


+ 0 - 1
src/views/goodStore/supplierGoodsCost/columns.js

@@ -250,7 +250,6 @@ const rules = {
   ],
   supplierNo: [
     {
-      type: 'array',
       required: true,
       message: '请选择供应商',
       trigger: 'change'

+ 3 - 5
src/views/goodStore/supplierGoodsCost/components/baseForm.vue

@@ -1145,7 +1145,7 @@ export default {
   },
   methods: {
     onCompanyChange(){
-      this.ruleForm.company_id = this.currentCompany
+      this.ruleForm.supplierNo = this.currentCompany
     },
     async initForm() {
       this.loading = true;
@@ -1204,9 +1204,6 @@ export default {
     async submitForm() {
       this.sch_is_noble();
       this.good_type_change();
-
-      console.log(this.ruleForm)
-
       await this.$refs.ruleForm.validate(async (valid) => {
         if (valid) {
           if (!this.loading) {
@@ -1671,7 +1668,7 @@ export default {
         good_type: "0",
         is_stock: "0",
         supplierNo: [],
-        company_id: this.currentCompany || "",
+        company_id:  "",
         is_auth: "",
         tax: "",
         good_name: "",
@@ -1902,6 +1899,7 @@ export default {
         }
 
         this.ruleForm.supplierNo = this.currentCompany
+        this.$refs.ruleForm.validateField('supplierNo');
         await this.set_must_spec();
       });
     },

+ 1 - 0
src/views/goodStore/supplierGoodsCost/index.vue

@@ -790,6 +790,7 @@ export default {
       item.company_name = this.select === "5" ? this.sinput : ""; // 部门
       item.cat_id = item.cat_id.length > 0 ? item.cat_id[item.cat_id.length - 1] : "";
       item.supplierNo = this.currentCompany
+      item.noRelation = true
 
       const res = await asyncRequest.list(item);
       if (res && res.code === 0 && res.data) {

+ 2 - 0
src/views/goodStore/supplierGoodsOffline/index.vue

@@ -249,6 +249,8 @@ export default {
         return;
       }
       this.parmValue.supplierNo = this.currentCompany
+      this.parmValue.noRelation = true
+      
       this.loading = true;
       const res = await asyncRequest.goodofflist(this.parmValue);
       if (res && res.code === 0 && res.data) {

+ 2 - 0
src/views/supplierPurchaseIn/purchaseDiffOrder/index.vue

@@ -368,6 +368,8 @@ export default {
       this.loading = true;
 
       this.parmValue.supplierNo = this.currentCompany
+      this.parmValue.noRelation = true
+
       const res = await asyncRequest.list(this.parmValue);
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;

+ 1 - 0
src/views/supplierPurchaseIn/purchaseOrder/index.vue

@@ -639,6 +639,7 @@ export default {
 
       this.parmValue.supplierNo = this.currentCompany
       // this.wsm_supplierNo = [];
+      this.parmValue.noRelation = true
       const res = await asyncRequest.list(this.parmValue);
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;

+ 2 - 0
src/views/supplierPurchaseIn/purchaseReturn/index.vue

@@ -371,6 +371,8 @@ export default {
       this.loading = true;
       let model = JSON.parse(JSON.stringify(this.parmValue));
       model.supplierNo = this.currentCompany;
+      model.noRelation = true
+
       
       const res = await asyncRequest.list(model);
       if (res && res.code === 0 && res.data) {

+ 1 - 0
src/views/supplierPurchaseIn/recovery/index.vue

@@ -272,6 +272,7 @@ export default {
     async searchList() {
       this.loading = true;
       this.parmValue.supplierNo = this.currentCompany
+      this.parmValue.noRelation = true
       const res = await asyncRequest.list(this.parmValue);
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;

+ 2 - 1
src/views/supplierPurchaseIn/workbench/index.vue

@@ -290,7 +290,8 @@ export default {
         this.loading = true;
         const { code, data } = await asyncRequest.list({
           ...this.parmValue,
-          supplierNo:this.currentCompany
+          supplierNo:this.currentCompany,
+          noRelation:true
         });
         if (code === 0) {
           const { list, count } = data;

+ 2 - 0
src/views/supplierPurchaseIn/wsmInOrder/index.vue

@@ -501,7 +501,9 @@ export default {
         page: model.page,
         size: model.size,
         company_name: model.company_name,
+        noRelation:true
       };
+      
       const res = await asyncRequest.list(_model);
       if (res && res.code === 0 && res.data) {
         this.tableData = res.data.list;

+ 1 - 0
src/views/supplierSellOut/returnOrder/index.vue

@@ -378,6 +378,7 @@ export default {
       let model = JSON.parse(JSON.stringify(this.parmValue));
       model.post_compay = model.post_compay.toString();
       model.supplierNo = this.currentCompany
+      model.noRelation = true
       
       const res = await asyncRequest.list(model);
       if (res && res.code === 0 && res.data) {

+ 1 - 0
src/views/supplierSellOut/sellAfterApply/index.vue

@@ -459,6 +459,7 @@ export default {
 
       let model = JSON.parse(JSON.stringify(this.parmValue));
       model.supplierNo = this.currentCompany
+      model.noRelation = true
       
       const res = await asyncRequest.list(model);
       if (res && res.code === 0 && res.data) {

+ 1 - 0
src/views/supplierSellOut/sellOutOrder/index.vue

@@ -563,6 +563,7 @@ export default {
       this.loading = true;
       let model = JSON.parse(JSON.stringify(this.parmValue));
       model.supplierNo = this.currentCompany
+      model.noRelation = true
 
 
       const res = await asyncRequest.list(model);

Some files were not shown because too many files changed in this diff