From 7c4e0e7521d8f1545b15dfc5ccb07436fef47269 Mon Sep 17 00:00:00 2001 From: zhengyongxing Date: Fri, 25 Dec 2020 09:16:11 +0800 Subject: [PATCH] =?UTF-8?q?12.18=E5=8A=9F=E8=83=BD=E6=8F=90=E4=BA=A4?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../View/MarketPercentage/addcoefficient.html | 461 ++++++++++++++++++ .../View/MarketPercentage/coefficient.html | 160 ++++++ Data/update.sql | 14 +- 3 files changed, 634 insertions(+), 1 deletion(-) create mode 100644 Application/Admin/View/MarketPercentage/addcoefficient.html create mode 100644 Application/Admin/View/MarketPercentage/coefficient.html diff --git a/Application/Admin/View/MarketPercentage/addcoefficient.html b/Application/Admin/View/MarketPercentage/addcoefficient.html new file mode 100644 index 000000000..15f0f19e1 --- /dev/null +++ b/Application/Admin/View/MarketPercentage/addcoefficient.html @@ -0,0 +1,461 @@ + + + + + + + + + + + + + + + + +
+ +
+ +
+ + + + + + + + + + + + +
本次批次号: +
+
+ 用于检索使用 +
*文件上传: +
+ +
+ 暂只支持.xls .xlsx 格式文件 +
+
+
+ + + 返回 + +
+
+ + +
+
+
+ 文件格式参考:请严格按此格式,文件的第一行必须是字段名,且字段名不允许修改 +
+ + + + + + + + + + + + + + + + + + +
序号时间市场专员绩效系数
12020-09林某某1
+
+ + +
+ + + + + + if(C('COLOR_STYLE')=='blue_color') echo ''; + + + + + + + \ No newline at end of file diff --git a/Application/Admin/View/MarketPercentage/coefficient.html b/Application/Admin/View/MarketPercentage/coefficient.html new file mode 100644 index 000000000..818057622 --- /dev/null +++ b/Application/Admin/View/MarketPercentage/coefficient.html @@ -0,0 +1,160 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + +
+
+
+ + + + + + + + + + + + + + + + + +
aOh! 暂时还没有内容!
{$data['real_name']}%
+ +
+
+
+ + + + diff --git a/Data/update.sql b/Data/update.sql index 262a70009..1442ce2d8 100644 --- a/Data/update.sql +++ b/Data/update.sql @@ -2756,4 +2756,16 @@ ADD COLUMN `site_config` varchar(255) NOT NULL DEFAULT '' COMMENT '推广后台 ALTER TABLE `tab_market_altogether` ADD COLUMN `coefficient_check` tinyint(2) NULL DEFAULT 0 COMMENT '绩效确认 0 未确认 1 确认' AFTER `finance_check_detail`, -ADD COLUMN `coefficient_check_detail` varchar(100) NULL DEFAULT '' COMMENT '绩效确认详情' AFTER `coefficient_check`; \ No newline at end of file +ADD COLUMN `coefficient_check_detail` varchar(100) NULL DEFAULT '' COMMENT '绩效确认详情' AFTER `coefficient_check`; + +CREATE TABLE `tab_coefficient` ( + `id` int(11) NOT NULL AUTO_INCREMENT, + `pay_time` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL DEFAULT '' COMMENT '时间月份记录', + `real_name` varchar(50) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL DEFAULT '' COMMENT '市场专员姓名', + `admin_id` int(11) NOT NULL DEFAULT 0 COMMENT '市场专员id', + `nickname` varchar(50) CHARACTER SET latin1 COLLATE latin1_swedish_ci NOT NULL COMMENT '市场专员账号', + `coefficient` decimal(11, 2) NOT NULL DEFAULT 100.00 COMMENT '绩效系数', + `update_time` int(11) NOT NULL DEFAULT 0 COMMENT '更新时间', + `create_time` int(11) NOT NULL DEFAULT 0 COMMENT '创建时间', + PRIMARY KEY (`id`) USING BTREE +) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; \ No newline at end of file