diff --git a/docs/databases/table_create_customer-cashed.sql b/docs/databases/table_create_customer-cashed.sql
index 80bb23c6..202fa9d6 100644
--- a/docs/databases/table_create_customer-cashed.sql
+++ b/docs/databases/table_create_customer-cashed.sql
@@ -1,3 +1,17 @@
+DROP TABLE IF EXISTS `csm_cash_log`;
+CREATE TABLE `csm_cash_log` (
+ `id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
+ `sid` VARCHAR(64) NOT NULL COMMENT 'sid',
+ `createTime` timestamp NULL DEFAULT CURRENT_TIMESTAMP COMMENT '记录创建时间',
+ `remarks` varchar(255) DEFAULT NULL COMMENT '备注信息',
+ `status` INT(11) NOT NULL DEFAULT '0' COMMENT '状态:0=f未核对,1=已核对(核对后数据不可再更改)',
+
+ `dataDate` varchar(100) DEFAULT NULL COMMENT '日期',
+ `accountName` varchar(100) DEFAULT NULL COMMENT '账户名称',
+ `accountAmount` double(12,2) DEFAULT 0 COMMENT '金额',
+ PRIMARY KEY (`id`) USING BTREE
+) ENGINE=InnoDB COMMENT='每日回款核对日志' ;
+
DROP TABLE IF EXISTS `csm_cash_gd`;
CREATE TABLE `csm_cash_gd` (
`id` BIGINT(32) NOT NULL AUTO_INCREMENT COMMENT 'ID,唯一编号',
diff --git a/supervise-customer-ui/src/router/modules/codemenu.js b/supervise-customer-ui/src/router/modules/codemenu.js
index 9abefacd..4241721a 100644
--- a/supervise-customer-ui/src/router/modules/codemenu.js
+++ b/supervise-customer-ui/src/router/modules/codemenu.js
@@ -342,11 +342,11 @@ const codemenu = [{
noCache: true
}
},{
- path: '/purchaserequisition/listofcheck',
- component: () => import('@/views/purchaserequisition/listofcheck/index.vue'),
- name: 'purchaserequisitionlistofcheck',
+ path: '/daydataupload/cash',
+ component: () => import('@/views/daydataupload/cash/index.vue'),
+ name: 'DaydatauploadCash',
meta: {
- title: '采购申请',
+ title: '每日回款核对',
noCache: true
}
}]
diff --git a/supervise-customer-ui/src/views/daydataupload/cash/index.vue b/supervise-customer-ui/src/views/daydataupload/cash/index.vue
new file mode 100644
index 00000000..e8d22204
--- /dev/null
+++ b/supervise-customer-ui/src/views/daydataupload/cash/index.vue
@@ -0,0 +1,335 @@
+
+ 文件上传结果
+ 库存汇总数据
+