소스 검색

仓库报表

3254194295 2 년 전
부모
커밋
d7d023d008

+ 8 - 2
src/views/dashboard/StoreReport1.vue

@@ -162,12 +162,18 @@ export default {
         {
           title: '入库金额',
           width: 120,
-          dataIndex: 'inStorePrice'
+          dataIndex: 'inStorePrice',
+          customRender: (text, record, index) => {
+            return this.BaseTool.Amount.formatter(text)
+          }
         },
         {
           title: '出库金额',
           width: 120,
-          dataIndex: 'outStorePrice'
+          dataIndex: 'outStorePrice',
+          customRender: (text, record, index) => {
+            return this.BaseTool.Amount.formatter(text)
+          }
         },
         {
           title: '操作',

+ 0 - 9
src/views/dashboard/modules/DetailInStoreReport.vue

@@ -129,15 +129,6 @@ export default {
           dataIndex: 'createdTime',
           checked: true,
           width: '200px'
-        },
-        {
-          title: '入库仓库',
-          dataIndex: 'storeId',
-          checked: true,
-          width: '150px',
-          customRender: (text, record, index) => {
-            return record.storeName
-          }
         }
       ],
       // 下拉框map

+ 0 - 9
src/views/dashboard/modules/DetailOutStoreReport.vue

@@ -129,15 +129,6 @@ export default {
           dataIndex: 'createdTime',
           checked: true,
           width: '200px'
-        },
-        {
-          title: '出库仓库',
-          dataIndex: 'storeId',
-          checked: true,
-          width: '150px',
-          customRender: (text, record, index) => {
-            return record.storeName
-          }
         }
       ],
       // 下拉框map