snow 2 jaren geleden
bovenliggende
commit
c263ff46f2

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


+ 7 - 5
src/mixins/privateField.js

@@ -6,19 +6,21 @@ const privateField = {
   },
   methods: {
     /**
-     *  > 1 成本价 2 销售价 3 毛利率
+     *  @description 1 成本价 2 销售价 3 毛利率
      * 1. 超管可以查看所有
      * 2. 供应商(originLevel === '3') 可以查看成本(type === '1)
      * 3. 业务公司(originLevel === '2') 根据角色的private_field查看
     */
     isDisplayPrivateField(type) {
-      if (this.isSupertube) return true
-      if (this.originLevel === '3' && type === '1') return true
-      if (this.originLevel === '2' && privateField && privateField.includes(type)) return true
+      const vm = this
+      const { isSupertube, originLevel, private_field } = vm
+      if (isSupertube) return true
+      if (originLevel === '3' && type === '1') return true
+      if (originLevel === '2' && private_field && private_field.includes(type)) return true
       return false
     },
     displayPrivateField(isDisplay, value) {
-      return isDisplay ? value : '***'
+      return isDisplay ? value : '******'
     }
   }
 }

+ 1 - 1
src/views/sellOut/sellReturn/columns.js

@@ -34,7 +34,7 @@ export default [
     width: '150'
   },
   {
-    prop: 'customerName',
+    prop: 'customer_name',
     label: '客户名称',
     width: '160'
   },

+ 10 - 10
src/views/sellOut/zxDiffOrder/columns.js

@@ -39,16 +39,16 @@ const columns = [
     label: '商品类型',
     width: '145px'
   },
-  {
-    prop: 'customer_code',
-    label: '客户编码',
-    width: '155px'
-  },
-  {
-    prop: 'customer_name',
-    label: '客户名称',
-    width: '155px'
-  },
+  // {
+  //   prop: 'customer_code',
+  //   label: '客户编码',
+  //   width: '155px'
+  // },
+  // {
+  //   prop: 'customer_name',
+  //   label: '客户名称',
+  //   width: '155px'
+  // },
   {
     prop: 'companyNo',
     label: '业务公司编号',

+ 7 - 2
src/views/supplierPurchaseIn/supplierWorkbench/index.vue

@@ -121,7 +121,7 @@ export default {
     ...mapGetters(["tablebtnSize", "searchSize", "size"]),
     powers() {
       const { btnList } = this.$store.getters
-      const tran = btnList.find((i) => i.menu_route == "supplierRecovery") || {};
+      const tran = btnList.find((i) => i.menu_route == "supplierWorkbench") || {};
       const { action } = tran ?? {};
       return action ?? [];
     },
@@ -207,7 +207,12 @@ export default {
   methods: {
     wantTo(infoNo) {
       if (this.powers.some((i) => i == "007")) {
-        this.routeGoto("supplierWorkbenchDetail", { id: infoNo });
+        // this.routeGoto("supplierWorkbenchDetail", { id: infoNo });
+        console.log(1111)
+        this.$router.push({
+          path: '/supplierPurchaseIn/supplierWorkbenchDetail',
+          query: { id: infoNo }
+        })
       }
     },
     async well_timer() {

+ 1 - 1
src/views/supplierSellOut/supplierSellOutOrder/index.vue

@@ -159,7 +159,7 @@
                 <el-button
                   type="primary"
                   style="margin-left: 30px"
-                  @click="routeGoto('sendOutOrder', {})"
+                  @click="routeGoto('supplierSendOutOrder', {})"
                   :size="searchSize"
                   class="fr"
                 >

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