Browse Source

fix(商品成本):超管用户表单分类筛选不正确

snow 2 years ago
parent
commit
c95cb87280

+ 12 - 4
src/views/goodStore/goodsCost/components/baseForm.vue

@@ -29,7 +29,7 @@
 <!--                :isDetail="type !== 'add'"-->
 <!--                @searchChange="company_idsearchChange"-->
 <!--              />-->
-              <el-input :value="getCompanyWithCode(ruleForm.companyNo).name" disabled />
+              <el-input :value="type === 'add' ? getCompanyWithCode(ruleForm.companyNo).name : companyName" disabled />
             </el-form-item>
           </el-col>
           <el-col :span="12">
@@ -1103,6 +1103,7 @@ export default {
   },
   data() {
     return {
+      companyName: '',
       spec_tableData: [],
       is_support_stock: "",
       cat_id_name: "",
@@ -1144,7 +1145,9 @@ export default {
   },
   methods: {
     onCompanyChange(){
+     if(this.type === 'add'){
       this.ruleForm.company_id = this.currentCompany
+     }
     },
     async initForm() {
       this.loading = true;
@@ -1670,7 +1673,7 @@ export default {
         good_type: "0",
         is_stock: "0",
         supplierNo: [],
-        company_id: this.currentCompany || "",
+        company_id: "",
         is_auth: "",
         tax: "",
         good_name: "",
@@ -1727,6 +1730,7 @@ export default {
           this.old_ladder_tableData = [];
           const {
             id,
+            companyName,
             spuCode, //string	商品spuCode
             // good_code, //string	无
             good_name, //string	商品名称
@@ -1788,6 +1792,9 @@ export default {
             stock_moq,
             is_support_stock,
           } = this.sitem;
+          
+          this.companyName = companyName
+
           this.is_support_stock = is_support_stock || "1";
           let cat_id_name = "";
           let cat_id = [];
@@ -1846,7 +1853,7 @@ export default {
             good_type: good_type || "0",
             is_stock: is_stock || "0",
             supplierNo: supplierNo ? [supplierNo] : [],
-            company_id: companyNo || "",
+            company_id: companyNo,
             is_auth: is_auth || "",
             tax: tax ? tax + "%" : "",
             good_name: good_name || "",
@@ -1900,7 +1907,8 @@ export default {
           };
         }
 
-        this.ruleForm.company_id = this.currentCompany
+        if(this.type === 'add') this.ruleForm.company_id = this.currentCompany
+        console.log(this.ruleForm)
         await this.set_must_spec();
       });
     },

+ 2 - 1
src/views/goodStore/goodsCost/detail.vue

@@ -116,7 +116,7 @@
               </show-data-table>
             </el-collapse-item>
 
-            <el-collapse-item title="固定与阶梯成本" name="6" v-if="isDisplayPrivateField('1')">
+            <el-collapse-item title="固定与阶梯成本" name="2" v-if="isDisplayPrivateField('1')">
               <show-data-table :columns="ladderColumns" :sitem="sitem">
                 <template slot="demo_fee">{{sitem.demo_fee}}元</template>
                 <template slot="open_fee">{{sitem.open_fee}}元</template>
@@ -140,6 +140,7 @@
             </el-collapse-item>
 
             <el-collapse-item
+            name="3"
               title="采购部门审批"
               v-if="
                 ((status + '' === '0' && ppowers.some((i) => i == '0')) ||