diff --git a/klp-ui/src/api/wms/deliveryPlan.js b/klp-ui/src/api/wms/deliveryPlan.js
index 0851b121..c020cc0b 100644
--- a/klp-ui/src/api/wms/deliveryPlan.js
+++ b/klp-ui/src/api/wms/deliveryPlan.js
@@ -70,3 +70,14 @@ export function listSelectableCoils(planId) {
}
})
}
+
+/**
+ * 获取收货报表
+ */
+export function getReceiptReport(query) {
+ return request({
+ url: '/wms/deliveryPlan/receivingReport',
+ method: 'get',
+ params: query
+ })
+}
diff --git a/klp-ui/src/views/wms/receive/report/index.vue b/klp-ui/src/views/wms/receive/report/index.vue
new file mode 100644
index 00000000..9c785086
--- /dev/null
+++ b/klp-ui/src/views/wms/receive/report/index.vue
@@ -0,0 +1,220 @@
+
+
+
+
+
+ 查询
+ 重置
+
+
+
+
+
+
+
+
+
+ {{ summary.coilCount || 0 }}
+ {{ formatWeight(summary.totalWeight) }}
+
+ {{ formatDailyValue(summary.dailyCoilCount) }}
+ {{ formatWeight(summary.dailyWeight) }}
+ {{ summary.startTime || '-' }}
+ {{ summary.endTime || '-' }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+ {{ row.coilCount || 0 }}
+
+
+
+
+ {{ formatWeight(row.totalWeight) }}
+
+
+
+
+
+ {{ formatDailyValue(row.dailyCoilCount) }}
+
+
+
+
+ {{ formatWeight(row.dailyWeight) }}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file