lilei il y a 2 ans
Parent
commit
744b53f2ad
3 fichiers modifiés avec 45 ajouts et 1 suppressions
  1. 1 1
      public/version.json
  2. 19 0
      src/api/reportData.js
  3. 25 0
      src/config/router.config.js

+ 1 - 1
public/version.json

@@ -1,5 +1,5 @@
 {
   "message": "发现有新版本发布,确定更新系统?",
   "vendorJsVersion": "",
-  "version": 1663128063126
+  "version": 1663725111927
 }

+ 19 - 0
src/api/reportData.js

@@ -679,4 +679,23 @@ export const reportStockImportDetailExport  = (params) => {
     method: 'post',
     responseType: 'blob'
   })
+}
+
+// 连锁销售退货合计报表  列表 不分页
+export const reportSalesReturnBillDetailTotalList = (params) => {
+  const url = `/report/reportSalesReturnBillDetailTotal/reportList`
+  return axios({
+    url: url,
+    data: params,
+    method: 'post'
+  })
+}
+// 连锁销售退货合计报表  导出
+export const reportSalesReturnBillDetailTotalExport = params => {
+  return axios.request({
+    url: `/report/reportSalesReturnBillDetailTotal/export`,
+    data: params,
+    method: 'post',
+    responseType: 'blob'
+  })
 }

+ 25 - 0
src/config/router.config.js

@@ -2325,6 +2325,31 @@ export const asyncRouterMap = [
               }
             ]
           },
+          {
+            path: '/chainReportData/chainSalesReturnDetailReport',
+            redirect: '/chainReportData/chainSalesReturnDetailReport/list',
+            name: 'chainSalesReturnDetailReport',
+            component: BlankLayout,
+            meta: {
+              title: '连锁销售退货合计报表',
+              icon: 'profile',
+              permission: 'M_chainSalesReturnDetailReport_list'
+            },
+            hideChildrenInMenu: true,
+            children: [
+              {
+                path: 'list',
+                name: 'chainSalesReturnDetailReportList',
+                component: () => import(/* webpackChunkName: "chainReportData" */ '@/views/chainReportData/chainSalesReturnDetailReport/list.vue'),
+                meta: {
+                  title: '连锁销售退货合计列表',
+                  icon: 'profile',
+                  hidden: true,
+                  permission: 'M_chainSalesReturnDetailReport_list'
+                }
+              }
+            ]
+          },
           {
             path: '/chainReportData/chainCustomerReport',
             redirect: '/chainReportData/chainCustomerReport/list',