From 9a87d6c66b29030e694281d29dcb4fb5c4d345a3 Mon Sep 17 00:00:00 2001
From: qb <1191961160@qq.com>
Date: Wed, 11 Dec 2024 09:51:53 +0800
Subject: [PATCH 1/3] =?UTF-8?q?=E6=96=B0=E5=A2=9E=E6=94=B6=E8=B4=A7?=
=?UTF-8?q?=E5=8D=95=E4=BD=8D=E6=94=B6=E5=85=A5=E6=8A=A5=E8=A1=A8?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/reportforms/ConsigneeReport.js | 28 +
src/option/reportforms/ConsigneeReport.js | 297 ++++++++++
.../SalesDepartmentIncomeReport.js | 15 +-
src/views/reportforms/ConsigneeReport.vue | 522 ++++++++++++++++++
4 files changed, 860 insertions(+), 2 deletions(-)
create mode 100644 src/api/reportforms/ConsigneeReport.js
create mode 100644 src/option/reportforms/ConsigneeReport.js
create mode 100644 src/views/reportforms/ConsigneeReport.vue
diff --git a/src/api/reportforms/ConsigneeReport.js b/src/api/reportforms/ConsigneeReport.js
new file mode 100644
index 00000000..b0563337
--- /dev/null
+++ b/src/api/reportforms/ConsigneeReport.js
@@ -0,0 +1,28 @@
+import request from '@/axios';
+/** 报表列表 */
+export const postDeptIncomingPage = params => {
+ return request({
+ url: '/api/logpm-report/reportIncoming/consigineeIncomingPage',
+ method: 'get',
+ params,
+ });
+};
+
+/** 查询事业线 */
+export const postFindbusinessLine = () => {
+ return request({
+ url: '/api/logpm-basicdata/warehouse/findBusunessLineList',
+ method: 'get',
+ params: {},
+ });
+};
+
+/** 报表导出 */
+export const postDeptIncomingExport = params => {
+ return request({
+ url: '/api/logpm-report/reportIncoming/consigineeIncomingExport',
+ method: 'get',
+ params,
+ responseType: 'blob',
+ });
+};
diff --git a/src/option/reportforms/ConsigneeReport.js b/src/option/reportforms/ConsigneeReport.js
new file mode 100644
index 00000000..be309c6b
--- /dev/null
+++ b/src/option/reportforms/ConsigneeReport.js
@@ -0,0 +1,297 @@
+export const columnList = [
+ {
+ prop: '',
+ label: '复选框',
+ type: 0,
+ width: 55,
+ fixed: true,
+ },
+ {
+ prop: '',
+ label: '序号',
+ type: 12,
+ values: '',
+ width: 55,
+ fixed: true,
+ },
+ {
+ prop: 'consignee',
+ label: '收货单位',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'businessLine',
+ label: '事业线',
+ type: 1,
+ values: '',
+ width: '180',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'departureWarehouseName',
+ label: '始发仓',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'destinationWarehouseName',
+ label: '目的仓',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'brand',
+ label: '品牌',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'waybillNum',
+ label: '运单数',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'num',
+ label: '件数',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'weight',
+ label: '重量',
+ type: 1,
+ values: '',
+ width: '200',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'volume',
+ label: '体积',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'stockNum',
+ label: '到货件数',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'signNum',
+ label: '签收件数',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'pickupFee',
+ label: '提货费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'freightFee',
+ label: '运费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'deliveryFee',
+ label: '送货费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'warehouseManagementFee',
+ label: '仓库管理费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'storageFee',
+ label: '仓储费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'nian',
+ label: '年',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'yue',
+ label: '月',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'timeStr',
+ label: '时间周期',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'handlingFee',
+ label: '仓储操作费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'sortingFee',
+ label: '仓储分拣费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'installFee',
+ label: '安装费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'otherFee',
+ label: '其他费',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+ {
+ prop: 'totalFee',
+ label: '总费用',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ isshowSummary: true, //开启统计
+ },
+];
diff --git a/src/option/reportforms/SalesDepartmentIncomeReport.js b/src/option/reportforms/SalesDepartmentIncomeReport.js
index 2e30d079..bab766bf 100644
--- a/src/option/reportforms/SalesDepartmentIncomeReport.js
+++ b/src/option/reportforms/SalesDepartmentIncomeReport.js
@@ -191,8 +191,19 @@ export const columnList = [
isshowSummary: true, //开启统计
},
{
- prop: 'startWareOutTime',
- label: '始发仓发货日期',
+ prop: 'nian',
+ label: '年',
+ type: 1,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
+ {
+ prop: 'yue',
+ label: '月',
type: 1,
values: '',
width: '150',
diff --git a/src/views/reportforms/ConsigneeReport.vue b/src/views/reportforms/ConsigneeReport.vue
new file mode 100644
index 00000000..f78127d1
--- /dev/null
+++ b/src/views/reportforms/ConsigneeReport.vue
@@ -0,0 +1,522 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
From 6483b20edc601a9b746694ba872823d45383a243 Mon Sep 17 00:00:00 2001
From: xzg <4727863@qq.com>
Date: Wed, 11 Dec 2024 18:09:33 +0800
Subject: [PATCH 2/3] =?UTF-8?q?=E4=BB=93=E5=BA=93=E5=A2=9E=E5=8A=A0?=
=?UTF-8?q?=E5=B9=B2=E7=BA=BF=E9=85=8D=E7=BD=AE=EF=BC=8C=E9=A6=96=E9=A1=B5?=
=?UTF-8?q?=E5=A2=9E=E5=8A=A0=E5=85=AC=E5=91=8A=EF=BC=8C=E7=BB=93=E7=AE=97?=
=?UTF-8?q?=E5=A2=9E=E5=8A=A0=E6=89=B9=E9=87=8F=E7=BB=93=E7=AE=97=EF=BC=8C?=
=?UTF-8?q?=E4=BF=AE=E5=A4=8D=E5=B7=B2=E7=9F=A5bug?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
src/api/bulletinboard/index.js | 9 +
.../reportforms/DeliveryStatisticsReport.js | 22 +-
src/router/views/index.js | 1 +
.../warehouse/basicdataWarehouse.vue | 46 ++-
src/views/finance/CustomerSettlement.vue | 40 ++-
src/views/wel/bulletinboard/bulletinboard.vue | 296 ++++++++++++++++++
src/views/wel/index.vue | 46 ++-
7 files changed, 440 insertions(+), 20 deletions(-)
create mode 100644 src/api/bulletinboard/index.js
create mode 100644 src/views/wel/bulletinboard/bulletinboard.vue
diff --git a/src/api/bulletinboard/index.js b/src/api/bulletinboard/index.js
new file mode 100644
index 00000000..cb93b44f
--- /dev/null
+++ b/src/api/bulletinboard/index.js
@@ -0,0 +1,9 @@
+import request from '@/axios';
+
+export const $_homeList = params => {
+ return request({
+ url: '/api/logpm-basic/notice/homeList',
+ method: 'get',
+ params,
+ });
+};
diff --git a/src/option/reportforms/DeliveryStatisticsReport.js b/src/option/reportforms/DeliveryStatisticsReport.js
index 7a830e9f..44feeda8 100644
--- a/src/option/reportforms/DeliveryStatisticsReport.js
+++ b/src/option/reportforms/DeliveryStatisticsReport.js
@@ -155,17 +155,6 @@ export const columnList = [
sortable: true,
head: false,
},
- {
- prop: 'reviewOnTimeRate',
- label: '复核及时率',
- type: 6,
- values: '',
- width: '150',
- checkarr: [],
- fixed: false,
- sortable: true,
- head: false,
- },
{
prop: 'exceptionNum',
@@ -225,6 +214,17 @@ export const columnList = [
sortable: true,
head: false,
},
+ {
+ prop: 'reviewOnTimeRate',
+ label: '复核及时率',
+ type: 6,
+ values: '',
+ width: '150',
+ checkarr: [],
+ fixed: false,
+ sortable: true,
+ head: false,
+ },
{
prop: 'createUserName',
label: '操作',
diff --git a/src/router/views/index.js b/src/router/views/index.js
index d2c50dd2..87571050 100644
--- a/src/router/views/index.js
+++ b/src/router/views/index.js
@@ -12,6 +12,7 @@ export default [
name: '首页',
meta: {
i18n: 'dashboard',
+ keepAlive: true,
},
component: () => import(/* webpackChunkName: "views" */ '@/views/wel/index.vue'),
},
diff --git a/src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue b/src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
index 8e800c2d..604f0af6 100644
--- a/src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
+++ b/src/views/basicdata/warehouse/warehouse/basicdataWarehouse.vue
@@ -513,6 +513,45 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+