Compare commits
No commits in common. "develop" and "feature-rewards" have entirely different histories.
develop
...
feature-re
|
@ -1,18 +0,0 @@
|
|||
SELECT *
|
||||
FROM BI部门渗透率续保率统计表;
|
||||
|
||||
SELECT *
|
||||
FROM BI电销坐席车非渗透统计表;
|
||||
|
||||
SELECT *
|
||||
FROM BI坐席续保率统计表;
|
||||
|
||||
/*
|
||||
truncate table BI电销坐席车非渗透统计表;
|
||||
|
||||
BEGIN
|
||||
telsale_bi_utils.清理BI电销坐席车非渗透统计表;
|
||||
telsale_bi_utils.清理BI电销坐席续保率统计表;
|
||||
telsale_bi_utils.清理BI部门业绩统计表;
|
||||
END;
|
||||
*/
|
|
@ -28,7 +28,6 @@ CREATE OR REPLACE PACKAGE telsale_archievement_pkg IS
|
|||
a_attaching_rate OUT VARCHAR2,
|
||||
a_renewal_rate OUT VARCHAR2,
|
||||
a_total OUT INTEGER,
|
||||
a_present_month OUT NUMBER,
|
||||
a_mensual_cur OUT cur_type
|
||||
);
|
||||
|
||||
|
@ -53,18 +52,18 @@ CREATE OR REPLACE PACKAGE BODY TELSALE_ARCHIEVEMENT_PKG IS
|
|||
A_TOTAL OUT INTEGER,
|
||||
A_MENSUAL_CUR OUT CUR_TYPE
|
||||
) IS
|
||||
--L_THIS_MONTH VARCHAR2(4);
|
||||
--L_THIS_YEAR VARCHAR2(4);
|
||||
L_THIS_MONTH VARCHAR2(4);
|
||||
L_THIS_YEAR VARCHAR2(4);
|
||||
L_FIRSTDAY DATE;
|
||||
L_DEPARTMENT_NAME VARCHAR2(100);
|
||||
BEGIN
|
||||
/*L_THIS_MONTH := TO_CHAR(SYSDATE,
|
||||
L_THIS_MONTH := TO_CHAR(SYSDATE,
|
||||
'mm');
|
||||
L_THIS_YEAR := TO_CHAR(SYSDATE,
|
||||
'yyyy');*/
|
||||
L_FIRSTDAY := TO_DATE(TO_CHAR(SYSDATE,
|
||||
'yyyy') || '-01-01 00:00:00',
|
||||
'yyyy-mm-dd hh24:mi:ss');
|
||||
'yyyy');
|
||||
L_FIRSTDAY := TO_DATE(TO_CHAR(SYSDATE,
|
||||
'yyyy') || '-01-01 00:00:00',
|
||||
'yyyy-mm-dd hh24:mi:ss');
|
||||
-- 获取部门名称
|
||||
BEGIN
|
||||
SELECT DEPARTMENT_NAME
|
||||
|
@ -78,35 +77,25 @@ CREATE OR REPLACE PACKAGE BODY TELSALE_ARCHIEVEMENT_PKG IS
|
|||
DEPARTMENTCODE_EXCEPTION_MSG);
|
||||
END;
|
||||
--车非渗透率
|
||||
/*SELECT DECODE(SUM(CF.车险个人客户保费),
|
||||
0,
|
||||
0,
|
||||
ROUND((SUM(CF.车非融合保费) / SUM(CF.车险个人客户保费) * 100),
|
||||
2))
|
||||
INTO A_ATTACHING_RATE
|
||||
FROM 坐席车非每日保费 CF
|
||||
WHERE CF.月份 = L_THIS_MONTH
|
||||
AND CF.年份 = L_THIS_YEAR
|
||||
AND 部门代码 = A_DEPARTMENT_CODE;*/
|
||||
SELECT round(dept.当月保费渗透率,
|
||||
2)
|
||||
SELECT DECODE(SUM(CF.车险个人客户保费),
|
||||
0,
|
||||
0,
|
||||
ROUND((SUM(CF.车非融合保费) / SUM(CF.车险个人客户保费) * 100),
|
||||
2))
|
||||
INTO A_ATTACHING_RATE
|
||||
FROM desktop_archievement_admin.BI机构渗透率跟踪表 dept
|
||||
WHERE dept.部门 = L_DEPARTMENT_NAME;
|
||||
FROM 坐席车非每日保费 CF
|
||||
WHERE CF.月份 = L_THIS_MONTH
|
||||
AND CF.年份 = L_THIS_YEAR
|
||||
AND 部门代码 = A_DEPARTMENT_CODE;
|
||||
--续保率
|
||||
/*SELECT DECODE(SUM(到期数),
|
||||
0,
|
||||
0,
|
||||
ROUND(SUM(已续保累计) / SUM(到期数) * 100,
|
||||
2))
|
||||
INTO A_RENEWAL_RATE
|
||||
FROM 坐席续保统计
|
||||
WHERE 部门 = L_DEPARTMENT_NAME;*/
|
||||
SELECT round(t."个车续保率(全月)(%)",
|
||||
2)
|
||||
SELECT DECODE(SUM(到期数),
|
||||
0,
|
||||
0,
|
||||
ROUND(SUM(已续保累计) / SUM(到期数) * 100,
|
||||
2))
|
||||
INTO A_RENEWAL_RATE
|
||||
FROM BI机构当月个车续保率跟踪表 t
|
||||
WHERE t.责任部门 = L_DEPARTMENT_NAME;
|
||||
FROM 坐席续保统计
|
||||
WHERE 部门 = L_DEPARTMENT_NAME;
|
||||
--总业绩
|
||||
SELECT ROUND(NVL(SUM(CF.车险个人客户保费 + CF.车非融合保费),
|
||||
0),
|
||||
|
@ -142,32 +131,19 @@ CREATE OR REPLACE PACKAGE BODY TELSALE_ARCHIEVEMENT_PKG IS
|
|||
a_attaching_rate OUT VARCHAR2,
|
||||
a_renewal_rate OUT VARCHAR2,
|
||||
a_total OUT INTEGER,
|
||||
a_present_month OUT NUMBER,
|
||||
a_mensual_cur OUT cur_type
|
||||
) IS
|
||||
l_caller_name VARCHAR2(100);
|
||||
l_department_name VARCHAR2(100);
|
||||
--l_this_month VARCHAR2(4);
|
||||
l_this_year VARCHAR2(4);
|
||||
--l_firstday DATE;
|
||||
l_rownum INTEGER;
|
||||
l_caller_name VARCHAR2(100);
|
||||
l_this_month VARCHAR2(4);
|
||||
l_this_year VARCHAR2(4);
|
||||
l_firstday DATE;
|
||||
BEGIN
|
||||
--查询坐席名称,和部门名称,验证代码
|
||||
--查询坐席名称,验证代码
|
||||
BEGIN
|
||||
SELECT zx.saler_name,
|
||||
bm.department_name
|
||||
INTO l_caller_name,
|
||||
l_department_name
|
||||
FROM tele_saler zx,
|
||||
tele_saler_team team,
|
||||
idst0.bm_t bm
|
||||
WHERE zx.saler_code = a_caller_code
|
||||
AND zx.team_code = team.team_code
|
||||
AND team.department_code = bm.department_code;
|
||||
/* SELECT saler_name
|
||||
INTO l_caller_name
|
||||
FROM tele_saler
|
||||
WHERE saler_code = a_caller_code;*/
|
||||
SELECT saler_name
|
||||
INTO l_caller_name
|
||||
FROM tele_saler
|
||||
WHERE saler_code = a_caller_code;
|
||||
EXCEPTION
|
||||
-- 如果没有查询到坐席名称,说明代码有误,抛出异常
|
||||
WHEN no_data_found THEN
|
||||
|
@ -175,12 +151,12 @@ CREATE OR REPLACE PACKAGE BODY TELSALE_ARCHIEVEMENT_PKG IS
|
|||
CALLERCODE_EXCEPTION_MSG);
|
||||
END;
|
||||
|
||||
--l_this_month := to_char(SYSDATE,
|
||||
-- 'mm');
|
||||
l_this_year := to_char(SYSDATE,
|
||||
'yyyy');
|
||||
--l_firstday := to_date(l_this_year || '-01-01 00:00:00',
|
||||
-- 'yyyy-mm-dd hh24:mi:ss');
|
||||
l_this_month := to_char(SYSDATE,
|
||||
'mm');
|
||||
l_this_year := to_char(SYSDATE,
|
||||
'yyyy');
|
||||
l_firstday := to_date(l_this_year || '-01-01 00:00:00',
|
||||
'yyyy-mm-dd hh24:mi:ss');
|
||||
|
||||
--总车险保费
|
||||
SELECT round(nvl(SUM(cf.车险个人客户保费),
|
||||
|
@ -188,44 +164,41 @@ CREATE OR REPLACE PACKAGE BODY TELSALE_ARCHIEVEMENT_PKG IS
|
|||
2) bf
|
||||
INTO a_total
|
||||
FROM 坐席车非每日保费 cf
|
||||
WHERE cf.坐席名称 = l_caller_name
|
||||
AND cf.部门 = l_department_name
|
||||
WHERE cf.坐席工号 = a_caller_code
|
||||
AND cf.年份 = l_this_year;
|
||||
|
||||
--渗透率
|
||||
SELECT rownum,
|
||||
round(nvl(t.当月保费渗透率,
|
||||
0),
|
||||
2),
|
||||
round(nvl(t."车险保费(万)" * 10000,
|
||||
0),
|
||||
2)
|
||||
INTO l_rownum,
|
||||
a_attaching_rate,
|
||||
a_present_month
|
||||
FROM BI电销坐席车非渗透率跟踪表 t
|
||||
WHERE t.经办 = l_caller_name
|
||||
AND rownum = 1;
|
||||
SELECT decode(nvl(SUM(cf.车险个人客户保费),
|
||||
0),
|
||||
0,
|
||||
0,
|
||||
round(SUM(cf.车非融合保费) / SUM(cf.车险个人客户保费) * 100,
|
||||
2))
|
||||
INTO a_attaching_rate
|
||||
FROM 坐席车非每日保费 cf
|
||||
WHERE cf.坐席工号 = a_caller_code
|
||||
AND cf.年份 = l_this_year
|
||||
AND cf.月份 = l_this_month;
|
||||
|
||||
--续保率
|
||||
SELECT rownum,
|
||||
round(nvl(t."个车续保率(全月)(%)",
|
||||
0),
|
||||
2)
|
||||
INTO l_rownum,
|
||||
a_renewal_rate
|
||||
FROM BI电销坐席续保率跟踪表 t
|
||||
WHERE t.责任人 = l_caller_name
|
||||
AND rownum = 1;
|
||||
SELECT decode(nvl(SUM(xb.到期数),
|
||||
0),
|
||||
0,
|
||||
0,
|
||||
round(SUM(xb.已续保累计) / SUM(xb.到期数) * 100,
|
||||
2)) xbl
|
||||
INTO a_renewal_rate
|
||||
FROM 坐席续保统计 xb
|
||||
WHERE xb.坐席工号 = a_caller_code;
|
||||
|
||||
--每月业绩
|
||||
OPEN A_MENSUAL_CUR FOR
|
||||
SELECT CF.月份 MM,
|
||||
ROUND(NVL(SUM(CF.车险个人客户保费),
|
||||
ROUND(NVL(SUM(CF.车险个人客户保费 + CF.车非融合保费),
|
||||
0),
|
||||
0) BF
|
||||
FROM 坐席车非每日保费 CF
|
||||
WHERE cf.坐席名称 = l_caller_name
|
||||
AND cf.部门 = l_department_name
|
||||
WHERE cf.坐席工号 = a_caller_code
|
||||
AND 签单日期 >= TO_DATE(TO_CHAR(SYSDATE,
|
||||
'yyyy') || '-01-01 00:00:00',
|
||||
'yyyy-mm-dd hh24:mi:ss')
|
||||
|
@ -260,54 +233,38 @@ CREATE OR REPLACE PACKAGE BODY TELSALE_ARCHIEVEMENT_PKG IS
|
|||
END;
|
||||
-- 车非融合率排行榜
|
||||
OPEN A_ATTACHING_RANKING_LIST FOR
|
||||
SELECT rownum,
|
||||
paihang.经办 AS caller_name,
|
||||
paihang.attaching_rate
|
||||
FROM (SELECT DISTINCT *
|
||||
FROM (SELECT t.经办,
|
||||
round(t.当月保费渗透率,
|
||||
2) attaching_rate,
|
||||
zuoxi.department_name
|
||||
FROM BI电销坐席车非渗透率跟踪表 t,
|
||||
(SELECT DISTINCT t.saler_code,
|
||||
t.saler_name,
|
||||
t.team_code,
|
||||
team.team,
|
||||
bm.department_name
|
||||
FROM tele_saler t,
|
||||
tele_saler_team team,
|
||||
idst0.bm_t bm
|
||||
WHERE t.team_code = team.team_code
|
||||
AND team.department_code = bm.department_code
|
||||
AND bm.department_name = L_DEPARTMENT_NAME) zuoxi
|
||||
WHERE t.经办 = zuoxi.saler_name) st
|
||||
ORDER BY st.department_name,
|
||||
st.attaching_rate DESC) paihang;
|
||||
SELECT ROWNUM,
|
||||
坐席名称 AS CALLER_NAME,
|
||||
车非渗透率 AS ATTACHING_RATE
|
||||
FROM (SELECT 坐席名称,
|
||||
ROUND(DECODE(nvl(SUM(车险个人客户保费),
|
||||
0),
|
||||
0,
|
||||
0,
|
||||
(SUM(车非融合保费) / SUM(车险个人客户保费)) * 100),
|
||||
2) 车非渗透率
|
||||
FROM 坐席车非每日保费
|
||||
WHERE 月份 = A_MONTH
|
||||
AND 年份 = A_YEAR
|
||||
AND 部门代码 = A_DEPARTMENT_CODE
|
||||
GROUP BY 坐席名称
|
||||
ORDER BY 车非渗透率 DESC);
|
||||
-- 续保率排行榜
|
||||
OPEN A_RENEWAL_RANKING_LIST FOR
|
||||
SELECT rownum,
|
||||
paihang.责任人 AS CALLER_NAME,
|
||||
paihang.xbl AS RENEWAL_RATE
|
||||
FROM (SELECT DISTINCT *
|
||||
FROM (SELECT t.责任人,
|
||||
round(t."个车续保率(全月)(%)",
|
||||
2) xbl,
|
||||
zuoxi.department_name
|
||||
FROM BI电销坐席续保率跟踪表 t,
|
||||
(SELECT DISTINCT t.saler_code,
|
||||
t.saler_name,
|
||||
t.team_code,
|
||||
team.team,
|
||||
bm.department_name
|
||||
FROM tele_saler t,
|
||||
tele_saler_team team,
|
||||
idst0.bm_t bm
|
||||
WHERE t.team_code = team.team_code
|
||||
AND team.department_code = bm.department_code
|
||||
AND bm.department_name = L_DEPARTMENT_NAME) zuoxi
|
||||
WHERE t.责任人 = zuoxi.saler_name) xb
|
||||
ORDER BY xb.department_name,
|
||||
xb.xbl DESC) paihang;
|
||||
SELECT ROWNUM,
|
||||
坐席名称 AS CALLER_NAME,
|
||||
续保率 AS RENEWAL_RATE
|
||||
FROM (SELECT 坐席名称,
|
||||
decode(nvl(SUM(xb.到期数),
|
||||
0),
|
||||
0,
|
||||
0,
|
||||
round(SUM(xb.已续保累计) / SUM(xb.到期数) * 100,
|
||||
2)) 续保率
|
||||
FROM 坐席续保统计 XB
|
||||
WHERE XB.部门 = L_DEPARTMENT_NAME
|
||||
GROUP BY 坐席名称
|
||||
ORDER BY 续保率 DESC);
|
||||
END;
|
||||
BEGIN
|
||||
NULL;
|
||||
|
|
|
@ -1,43 +0,0 @@
|
|||
CREATE OR REPLACE PACKAGE telsale_bi_utils IS
|
||||
|
||||
-- Author : WANGWEI-202
|
||||
-- Created : 2023/10/12 15:31:13
|
||||
-- Purpose : bi数据报表相关的工具
|
||||
|
||||
PROCEDURE 清理BI电销坐席车非渗透率跟踪表;
|
||||
|
||||
PROCEDURE 清理BI电销坐席续保率跟踪表;
|
||||
|
||||
PROCEDURE 清理BI部门渗透率跟踪表;
|
||||
|
||||
PROCEDURE 清理BI部门续保率跟踪表;
|
||||
|
||||
END telsale_bi_utils;
|
||||
/
|
||||
CREATE OR REPLACE PACKAGE BODY telsale_bi_utils IS
|
||||
|
||||
PROCEDURE 清理BI电销坐席车非渗透率跟踪表 IS
|
||||
BEGIN
|
||||
EXECUTE IMMEDIATE 'truncate table BI电销坐席车非渗透率跟踪表';
|
||||
END;
|
||||
|
||||
PROCEDURE 清理BI电销坐席续保率跟踪表 IS
|
||||
BEGIN
|
||||
EXECUTE IMMEDIATE 'truncate table BI电销坐席续保率跟踪表';
|
||||
END;
|
||||
|
||||
PROCEDURE 清理BI部门渗透率跟踪表 IS
|
||||
BEGIN
|
||||
EXECUTE IMMEDIATE 'truncate table BI机构渗透率跟踪表';
|
||||
END;
|
||||
|
||||
PROCEDURE 清理BI部门续保率跟踪表 IS
|
||||
BEGIN
|
||||
EXECUTE IMMEDIATE 'truncate table BI机构当月个车续保率跟踪表';
|
||||
END;
|
||||
|
||||
BEGIN
|
||||
-- Initialization
|
||||
NULL;
|
||||
END telsale_bi_utils;
|
||||
/
|
|
@ -52,7 +52,7 @@ SELECT
|
|||
GROUP BY 月份,
|
||||
部门代码,
|
||||
坐席名称
|
||||
HAVING 月份 = '10月'
|
||||
HAVING 月份 = '06月'
|
||||
ORDER BY 部门代码,
|
||||
车非渗透率 DESC;
|
||||
|
||||
|
@ -61,7 +61,7 @@ SELECT
|
|||
2) 车非渗透率
|
||||
FROM 坐席车非每日保费
|
||||
WHERE 部门代码 = 'QDI'
|
||||
AND 月份 = '10'
|
||||
AND 月份 = '05'
|
||||
AND 年份 = '2023'
|
||||
GROUP BY 坐席名称
|
||||
ORDER BY 车非渗透率 DESC;
|
||||
|
@ -75,30 +75,3 @@ SELECT
|
|||
WHERE xb.部门 = '续保业务部'
|
||||
GROUP BY 坐席名称
|
||||
ORDER BY 坐席名称 DESC;
|
||||
-------------------------------------
|
||||
SELECT zx.saler_name,
|
||||
bm.department_name
|
||||
FROM tele_saler zx,
|
||||
tele_saler_team team,
|
||||
idst0.bm_t bm
|
||||
WHERE zx.saler_name = '张楚沂'
|
||||
AND zx.team_code = team.team_code
|
||||
AND team.department_code = bm.department_code;
|
||||
----------------------------------------
|
||||
/*
|
||||
truncate table BI机构渗透率跟踪表;
|
||||
*/
|
||||
|
||||
SELECT *
|
||||
FROM BI电销坐席车非渗透率跟踪表 t
|
||||
WHERE t.经办 = '张楚沂';
|
||||
|
||||
SELECT *
|
||||
FROM BI电销坐席续保率跟踪表
|
||||
WHERE 责任人 = '张楚沂';
|
||||
|
||||
SELECT *
|
||||
FROM BI机构渗透率跟踪表;
|
||||
|
||||
SELECT *
|
||||
FROM BI机构当月个车续保率跟踪表;
|
||||
|
|
|
@ -1,14 +0,0 @@
|
|||
drop table BI机构当月个车续保率跟踪表;
|
||||
create table BI机构当月个车续保率跟踪表
|
||||
(
|
||||
"责任部门" varchar2(100),
|
||||
"机构目标值1(%)" number,
|
||||
"到期数-全月" integer,
|
||||
"序时到期数占比(%)" number,
|
||||
"个车续保率(序时)(%)" number,
|
||||
"个车续保率(全月)(%)" number,
|
||||
"环比昨日(%)" number,
|
||||
"环比上月(%)" number,
|
||||
"平均提前签单天数" integer,
|
||||
"环比" number
|
||||
);
|
|
@ -1,15 +0,0 @@
|
|||
drop table BI电销坐席续保率跟踪表;
|
||||
create table BI电销坐席续保率跟踪表
|
||||
(
|
||||
"责任部门" varchar2(100),
|
||||
"责任人" varchar2(30),
|
||||
"机构目标值1(%)" number default 0,
|
||||
"到期数-全月" integer default 0,
|
||||
"序时到期数占比(%)" number default 0,
|
||||
"个车续保率(序时)(%)" number default 0,
|
||||
"个车续保率(全月)(%)" number default 0,
|
||||
"环比昨日(%)" number default 0,
|
||||
"环比上月(%)" number default 0,
|
||||
"平均提前签单天数" integer default 0,
|
||||
"环比" number
|
||||
)
|
|
@ -1,14 +0,0 @@
|
|||
--drop table BI坐席续保率统计表;
|
||||
create table BI坐席续保率统计表
|
||||
(
|
||||
summary_date date default sysdate not null,
|
||||
责任人 varchar2(20) not null,
|
||||
机构目标值 NUMBER default 0 not null,
|
||||
到期数全月 NUMBER default 0 not null,
|
||||
序时到期数占比 NUMBER default 0 not null,
|
||||
个车续保率序时 NUMBER default 0 not null,
|
||||
个车续保率全月 NUMBER default 0 not null,
|
||||
环比昨日 NUMBER default 0 not null,
|
||||
环比上月 NUMBER default 0 not null
|
||||
);
|
||||
comment on table BI坐席续保率统计表 is '用于存放BI导出电销坐席全月续保率数据。';
|
|
@ -1,14 +0,0 @@
|
|||
create table BI电销坐席车非渗透率跟踪表
|
||||
(
|
||||
"部门" varchar2(100),
|
||||
"经办" varchar2(100) not null,
|
||||
"车险保费(万)" number default 0,
|
||||
"车险保费占比" number default 0,
|
||||
"非车保费(万)" number default 0,
|
||||
"当月保费渗透率" number default 0,
|
||||
"保费渗透率环比上月" number default 0,
|
||||
"当月客户渗透率" number default 0,
|
||||
"客户渗透率环比上月" number default 0,
|
||||
"当月车非客均保费" number default 0,
|
||||
"客均保费环比上月" number default 0
|
||||
);
|
|
@ -1,17 +0,0 @@
|
|||
drop table BI部门渗透率续保率统计表;
|
||||
create table BI部门渗透率续保率统计表
|
||||
(
|
||||
部门 varchar2(100) not null,
|
||||
"目标值-机构" number default 0 not null,
|
||||
目标差距 number default 0 not null,
|
||||
"车险保费" number default 0 not null,
|
||||
车险保费占比 number default 0 not null,
|
||||
"非车保费" number default 0 not null,
|
||||
当月保费渗透率 number default 0 not null,
|
||||
保费渗透率环比上月 number default 0 not null,
|
||||
当月客户渗透率 number default 0 not null,
|
||||
客户渗透率环比上月 number default 0 not null,
|
||||
当月车非客均保费 number default 0 not null,
|
||||
客均保费环比上月 number default 0 not null
|
||||
);
|
||||
comment on table BI部门渗透率续保率统计表 is '存放BI系统导出部门渗透率续保率';
|
File diff suppressed because it is too large
Load Diff
|
@ -1,40 +1,40 @@
|
|||
{
|
||||
"name": "task_schedule",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.1.0",
|
||||
"echarts": "^5.4.3",
|
||||
"element-plus": "^2.4.1",
|
||||
"mitt": "^3.0.1",
|
||||
"moment": "^2.29.4",
|
||||
"sass-loader": "^13.3.2",
|
||||
"vue": "^3.3.6",
|
||||
"vue-router": "^4.2.5",
|
||||
"vuex": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/eslint-parser": "^7.22.15",
|
||||
"@rushstack/eslint-patch": "^1.5.1",
|
||||
"@typescript-eslint/eslint-plugin": "^6.8.0",
|
||||
"@vitejs/plugin-vue": "^4.4.0",
|
||||
"@vue/cli-plugin-eslint": "^5.0.8",
|
||||
"@vue/eslint-config-typescript": "^12.0.0",
|
||||
"axios": "^1.5.1",
|
||||
"babel": "^6.23.0",
|
||||
"eslint-config-recommended": "^4.1.0",
|
||||
"eslint-config-standard-with-typescript": "^39.1.1",
|
||||
"eslint-plugin-vue": "^9.17.0",
|
||||
"node-sass": "^9.0.0",
|
||||
"sass": "^1.69.4",
|
||||
"style-loader": "^3.3.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"vue-eslint-parser": "^9.3.2"
|
||||
}
|
||||
"name": "task_schedule",
|
||||
"private": true,
|
||||
"version": "0.0.0",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
"dev": "vite",
|
||||
"build": "vite build",
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@element-plus/icons-vue": "^2.1.0",
|
||||
"echarts": "^5.4.3",
|
||||
"element-plus": "^2.3.14",
|
||||
"mitt": "^3.0.1",
|
||||
"moment": "^2.29.4",
|
||||
"sass-loader": "^13.3.2",
|
||||
"vue": "^3.3.4",
|
||||
"vue-router": "^4.2.5",
|
||||
"vuex": "^4.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/eslint-parser": "^7.22.15",
|
||||
"@rushstack/eslint-patch": "^1.4.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.7.2",
|
||||
"@vitejs/plugin-vue": "^4.3.4",
|
||||
"@vue/cli-plugin-eslint": "^5.0.8",
|
||||
"@vue/eslint-config-typescript": "^12.0.0",
|
||||
"axios": "^1.5.0",
|
||||
"babel": "^6.23.0",
|
||||
"eslint-config-recommended": "^4.1.0",
|
||||
"eslint-config-standard-with-typescript": "^39.1.0",
|
||||
"eslint-plugin-vue": "^9.17.0",
|
||||
"node-sass": "^9.0.0",
|
||||
"sass": "^1.68.0",
|
||||
"style-loader": "^3.3.3",
|
||||
"ts-node": "^10.9.1",
|
||||
"vue-eslint-parser": "^9.3.1"
|
||||
}
|
||||
}
|
||||
|
|
|
@ -2,28 +2,18 @@
|
|||
* @Author: Kane
|
||||
* @Date: 2023-02-28 19:25:30
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/assets/css/public/variables.scss
|
||||
* @FilePath: /task_schedule/src/assets/css/public/global.scss
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
// color
|
||||
/*
|
||||
$color-bg-01: #fecb96;
|
||||
$color-bg-02: #f7954e;
|
||||
$color-bg-03: #f27620;
|
||||
$color-bg-04: #da3703;
|
||||
$color-bg-05: #ba1800;
|
||||
*/
|
||||
|
||||
$color-bg-01: #00b2f8;
|
||||
$color-bg-02: #00b0fb;
|
||||
$color-bg-03: #0279ea;
|
||||
$color-bg-04: #046ed6;
|
||||
$color-bg-05: #033eb6;
|
||||
|
||||
$color-title-font: #046ed6;
|
||||
|
||||
$color-charts-bg: #ffffff9f;
|
||||
$color-honorlist-bg: rgba(255, 255, 255, 0.3);
|
||||
|
|
|
@ -12,7 +12,6 @@
|
|||
<el-progress
|
||||
type="circle"
|
||||
:percentage="ui.percentage"
|
||||
status="success"
|
||||
>
|
||||
<template #default>
|
||||
<span class="percentage-label">{{ ui.indicator }}</span>
|
||||
|
|
|
@ -15,13 +15,10 @@
|
|||
alt=""
|
||||
>
|
||||
<div class="title-wrapper">
|
||||
<span>“消 8 灭 6 突围战”</span>
|
||||
<span>指标落后入营坐席</span>
|
||||
<span>"消8灭70"突围战</span>
|
||||
<span>{{ props.month }}月入营坐席</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="telsaler-list-wrapper">
|
||||
<span>开发中……</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
@ -49,8 +46,6 @@ export default {
|
|||
|
||||
<style scoped lang="scss">
|
||||
.dishonorlist-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 240px;
|
||||
width: 360px;
|
||||
border-radius: 5px;
|
||||
|
@ -60,16 +55,10 @@ export default {
|
|||
|
||||
padding: 10px;
|
||||
|
||||
>*+* {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
.banner-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: stretch;
|
||||
height: 65px;
|
||||
flex-grow: 0;
|
||||
|
||||
img {
|
||||
// width: 70px;
|
||||
|
@ -91,24 +80,4 @@ export default {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
.telsaler-list-wrapper {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
span {
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: rgb(101, 140, 194);
|
||||
margin-top: 0px;
|
||||
|
||||
font: {
|
||||
size: 2rem;
|
||||
family: "FZ-ZHUOHEI";
|
||||
weight: 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -9,17 +9,38 @@
|
|||
-->
|
||||
<template>
|
||||
<div class="honorlist-wrapper">
|
||||
<div class="banner-wrapper">
|
||||
<img
|
||||
src="@/assets/img/ranking/medal.png"
|
||||
alt=""
|
||||
>
|
||||
<div class="title-wrapper">
|
||||
<span>“90俱乐部”标杆坐席</span>
|
||||
<span class="title">“90俱乐部”{{ $props.month }}月入围坐席</span>
|
||||
<div class="reward-wrapper">
|
||||
<div class="leading-reward-wrapper">
|
||||
<div class="banner-wrapper">
|
||||
<img
|
||||
src="@/assets/img/ranking/medal.png"
|
||||
alt="领跑奖"
|
||||
>
|
||||
<span>领跑奖</span>
|
||||
</div>
|
||||
<div class="gainer-wrapper">
|
||||
<span
|
||||
v-for="gainer in ui.leadingReward"
|
||||
:key="gainer"
|
||||
>{{ gainer }}</span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="advance-reward-wrapper">
|
||||
<div class="banner-wrapper">
|
||||
<img
|
||||
src="@/assets/img/ranking/copper_medal.png"
|
||||
alt="飞跃奖"
|
||||
>
|
||||
<span>飞跃奖</span>
|
||||
</div>
|
||||
<div class="gainer-wrapper">
|
||||
<span
|
||||
v-for="gainer in ui.advanceReward"
|
||||
:key="gainer"
|
||||
>{{ gainer }}</span>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="telsaler-list-wrapper">
|
||||
<span>开发中……</span>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -60,8 +81,6 @@ export default {
|
|||
|
||||
<style scoped lang="scss">
|
||||
.honorlist-wrapper {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 240px;
|
||||
width: 360px;
|
||||
border-radius: 5px;
|
||||
|
@ -74,54 +93,78 @@ export default {
|
|||
>*+* {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.banner-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 65px;
|
||||
flex-grow: 0;
|
||||
.title {
|
||||
display: block;
|
||||
text-align: center;
|
||||
|
||||
img {
|
||||
width: 65px;
|
||||
height: 65px;
|
||||
font: {
|
||||
family: "FZ-ZHUOHEI";
|
||||
size: 1.4rem;
|
||||
}
|
||||
|
||||
color: goldenrod;
|
||||
}
|
||||
|
||||
.title-wrapper {
|
||||
.reward-wrapper {
|
||||
width: 100%;
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: stretch;
|
||||
|
||||
>*+* {
|
||||
margin-left: 10px;
|
||||
}
|
||||
|
||||
.leading-reward-wrapper {
|
||||
width: 165px;
|
||||
height: 100%;
|
||||
|
||||
}
|
||||
|
||||
.advance-reward-wrapper {
|
||||
width: 165px;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
span {
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: rgb(245, 178, 11);
|
||||
margin-top: 0px;
|
||||
|
||||
font: {
|
||||
size: 1.65rem;
|
||||
family: "FZ-ZHUOHEI";
|
||||
weight: 100;
|
||||
margin-top: 5px;
|
||||
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
|
||||
font: {
|
||||
size: 2rem;
|
||||
family: "FZ-ZHUOHEI";
|
||||
weight: 100;
|
||||
}
|
||||
}
|
||||
|
||||
.banner-wrapper {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
img {
|
||||
width: 30px;
|
||||
height: 30px;
|
||||
}
|
||||
|
||||
span {
|
||||
display: inline-block;
|
||||
text-align: center;
|
||||
color: #fff;
|
||||
|
||||
font: {
|
||||
size: 1.5rem;
|
||||
family: "FZ-ZHUOHEI";
|
||||
weight: 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.telsaler-list-wrapper {
|
||||
flex-grow: 1;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
span {
|
||||
display: block;
|
||||
text-align: center;
|
||||
color: rgb(101, 140, 194);
|
||||
margin-top: 0px;
|
||||
|
||||
font: {
|
||||
size: 2rem;
|
||||
family: "FZ-ZHUOHEI";
|
||||
weight: 100;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -9,9 +9,6 @@
|
|||
-->
|
||||
<template>
|
||||
<div class="rankinglist-wrapper">
|
||||
<div class="rankinglist-title">
|
||||
<span>{{ props.title }}</span>
|
||||
</div>
|
||||
<el-table
|
||||
:data="topFive"
|
||||
stripe
|
||||
|
@ -28,7 +25,7 @@
|
|||
</template>
|
||||
</el-table-column>
|
||||
<el-table-column
|
||||
label="名称"
|
||||
label="名次"
|
||||
width="160"
|
||||
align="center"
|
||||
>
|
||||
|
@ -42,7 +39,7 @@
|
|||
align="center"
|
||||
>
|
||||
<template #default="ranking">
|
||||
<span class="rankinglist-index">{{ ranking.row.appraiseValue }}%</span>
|
||||
<span class="rankinglist-index">{{ ranking.row.appraiseValue }}</span>
|
||||
</template>
|
||||
</el-table-column>
|
||||
</el-table>
|
||||
|
@ -106,14 +103,7 @@ export default {
|
|||
// border: 1px solid red;
|
||||
border-radius: 5px;
|
||||
width: 300px;
|
||||
height: 270px;
|
||||
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
margin-bottom: 15px;
|
||||
height: 260px;
|
||||
}
|
||||
|
||||
.rankinglist-index {
|
||||
|
@ -123,7 +113,7 @@ export default {
|
|||
|
||||
:deep(.el-table)
|
||||
{
|
||||
border-radius: 0px 0px 5px 5px;
|
||||
border-radius: 5px;
|
||||
}
|
||||
|
||||
:deep(.el-table__header-wrapper) {
|
||||
|
@ -139,28 +129,4 @@ export default {
|
|||
}
|
||||
}
|
||||
|
||||
.rankinglist-title {
|
||||
color: #da3703;
|
||||
background-color: #fecc96;
|
||||
|
||||
width: 100%;
|
||||
border-radius: 5px 5px 0px 0px;
|
||||
|
||||
height: 1.5rem;
|
||||
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
|
||||
padding-top: 10px;
|
||||
padding-bottom: 0px;
|
||||
|
||||
span {
|
||||
font: {
|
||||
size: 1rem;
|
||||
weight: 700;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
</style>
|
||||
|
|
|
@ -92,7 +92,7 @@ export default {
|
|||
align-items: start;
|
||||
|
||||
font: {
|
||||
size: 0.75rem;
|
||||
size: 0.5rem;
|
||||
}
|
||||
|
||||
>*+* {
|
||||
|
|
|
@ -11,7 +11,7 @@
|
|||
* @Author: Kane
|
||||
* @Date: 2023-01-04 11:40:03
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-09-27 11:19:05
|
||||
* @LastEditTime: 2023-03-27 18:19:35
|
||||
* @FilePath: /it-console/src/layout/components/Main.vue
|
||||
* @Description:
|
||||
*
|
||||
|
@ -37,6 +37,6 @@ export default {
|
|||
.el-scrollbar {
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
/* background-color: #ecf2f9; */
|
||||
background-color: #ecf2f9;
|
||||
}
|
||||
</style>
|
||||
|
|
|
@ -62,13 +62,13 @@ const routes = [
|
|||
component: ()=> import( "../layout/Index.vue" ),
|
||||
children:[
|
||||
{
|
||||
path:"/telsaler_data",
|
||||
name:"TelsalerManagement",
|
||||
path:"/staff_data",
|
||||
name:"StaffDataManagement",
|
||||
meta: {
|
||||
title:"坐席管理",
|
||||
icon: "user",
|
||||
},
|
||||
component: ()=> import( "../views/telsaler/TelsalerManagementView.vue" ),
|
||||
component: ()=> import( "../views/StaffManagement.vue" ),
|
||||
},
|
||||
{
|
||||
path: "/data_management",
|
||||
|
@ -77,7 +77,7 @@ const routes = [
|
|||
title: "数据管理",
|
||||
icon: "document",
|
||||
},
|
||||
component: ()=> import( "../views/data/DataManagement.vue" ),
|
||||
component: ()=> import( "../views/DataManagement.vue" ),
|
||||
},
|
||||
{
|
||||
path:"/reward_management",
|
||||
|
|
|
@ -1,79 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-17 11:18:19
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/utils/BIReport.ts
|
||||
* @Description: BI报表相关的代码
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
import { service as instance } from "./api/request.js";
|
||||
import { API_URL } from "./api/config.js";
|
||||
import { type AxiosResponse } from "axios";
|
||||
interface BIReportType
|
||||
{
|
||||
reportTypeCode: number;
|
||||
reportTypeName: string;
|
||||
}
|
||||
|
||||
interface ImportBIReportRequest
|
||||
{
|
||||
filePath: string,
|
||||
reportType: number,
|
||||
firstRow: number,
|
||||
sheetIndex: number,
|
||||
}
|
||||
|
||||
interface ImportBIReportResponse
|
||||
{
|
||||
success: boolean,
|
||||
message: string,
|
||||
importedCount: number,
|
||||
}
|
||||
|
||||
type ImportBIReportResponseHandler = ( response: ImportBIReportResponse, error?: any ) => void;
|
||||
|
||||
/**
|
||||
*
|
||||
* @param request 请求参数
|
||||
* @param handler 调用者提供的请求结果处理函数
|
||||
*/
|
||||
function importBIReport( request: ImportBIReportRequest, handler: any ): void
|
||||
{
|
||||
const importResponse: ImportBIReportResponse = {
|
||||
success: false,
|
||||
message: "",
|
||||
importedCount: 0,
|
||||
};
|
||||
|
||||
instance.request({
|
||||
url: API_URL.URL_IMPORT_REPORT,
|
||||
method: "post",
|
||||
data: request,
|
||||
})
|
||||
.then(( response: AxiosResponse<any, any> ): any =>
|
||||
{
|
||||
const data: ImportBIReportResponse = response.data;
|
||||
|
||||
importResponse.success = data.success ?? false;
|
||||
importResponse.message = data.message ?? "";
|
||||
importResponse.importedCount = data.importedCount ?? 0;
|
||||
|
||||
handler( importResponse, null );
|
||||
})
|
||||
.catch(( error: any ): any =>
|
||||
{
|
||||
importResponse.message = "请求导入报表错误,请查看控制台!";
|
||||
console.log( error );
|
||||
|
||||
handler( importResponse, error );
|
||||
});
|
||||
}
|
||||
|
||||
export {
|
||||
type BIReportType,
|
||||
type ImportBIReportRequest,
|
||||
type ImportBIReportResponse,
|
||||
type ImportBIReportResponseHandler,
|
||||
importBIReport
|
||||
};
|
|
@ -44,12 +44,7 @@ const API_URL = {
|
|||
// 删除获奖人员
|
||||
URL_DEL_REWARD_TELSALER: "http://10.39.0.41:8081/desktop_archievement_backend/rewards/delete_telsaler_reward.do",
|
||||
// URL_ADD_REWARD_TELSALER: "http://222.76.244.118:11101/desktop_archievement_backend/rewards/delete_telsaler_reward.do",
|
||||
// 上传文件
|
||||
URL_UPLOAD_FILE: "http://10.39.0.41:8081/desktop_archievement_backend/file/file-upload.do",
|
||||
// URL_UPLOAD_FILE: "http://222.76.244.118:11101/desktop_archievement_backend/file/file-upload.do",
|
||||
// 导入报表
|
||||
URL_IMPORT_REPORT: "http://10.39.0.41:8081/desktop_archievement_backend/import_bi_data/excel.do",
|
||||
// URL_IMPORT_REPORT: "http://222.76.244.118:11101/desktop_archievement_backend/import_bi_data/excel.do",
|
||||
|
||||
};
|
||||
|
||||
export { API_URL };
|
||||
|
|
|
@ -31,7 +31,6 @@ interface CallerArchievement // 坐席业绩对象
|
|||
success: boolean;
|
||||
message: string;
|
||||
total_archievement: number;
|
||||
moto_premium_present_month: number;
|
||||
mensual_archievement_list: number[];
|
||||
insurance_renewal_rate: string;
|
||||
attaching_rate: string;
|
||||
|
@ -135,7 +134,6 @@ function queryCallerArchievement( callerInfo: TelSaler, render: any ): void
|
|||
success: false,
|
||||
message: "",
|
||||
total_archievement: 0,
|
||||
moto_premium_present_month: 0,
|
||||
mensual_archievement_list: [],
|
||||
insurance_renewal_rate: "0.0",
|
||||
attaching_rate: "0.0",
|
||||
|
@ -152,12 +150,9 @@ function queryCallerArchievement( callerInfo: TelSaler, render: any ): void
|
|||
{
|
||||
const data = response.data ?? {};
|
||||
|
||||
console.log( "个人业绩数据", data );
|
||||
|
||||
callArchievement.success = data.success ?? false;
|
||||
callArchievement.message = data.message ?? "服务器没有返回调用结果消息,请检查日志!";
|
||||
callArchievement.total_archievement = data.total_archievement ?? 0;
|
||||
callArchievement.moto_premium_present_month = data.motoPremiumPresentMonth ?? 0;
|
||||
callArchievement.mensual_archievement_list = [];
|
||||
callArchievement.insurance_renewal_rate = data.insurance_renewal_rate ?? "0.0";
|
||||
callArchievement.attaching_rate = data.attaching_rate ?? "0.0";
|
||||
|
|
|
@ -1,20 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-09-27 14:13:47
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/utils/fileUpload.ts
|
||||
* @Description: 文件上传相关
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
interface FileUploadResponse
|
||||
{
|
||||
success: boolean;
|
||||
message: string;
|
||||
fileList: string[];
|
||||
}
|
||||
|
||||
export {
|
||||
type FileUploadResponse
|
||||
};
|
|
@ -0,0 +1,40 @@
|
|||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-09-25 09:48:25
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/DataManagement.vue
|
||||
* @Description: 数据管理view
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<div class="data_management_wrapper">
|
||||
数据管理
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { ref, reactive } from "vue";
|
||||
|
||||
export default {
|
||||
name: "DataManagement",
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
showUI: false,
|
||||
});
|
||||
|
||||
return { ui, };
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss">
|
||||
.data_management_wrapper {
|
||||
margin: 10px;
|
||||
|
||||
min-width: 800px;
|
||||
|
||||
>*+* {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -54,16 +54,34 @@
|
|||
:attaching-rate="ui.callerAttachingRate"
|
||||
:renewal-rate="ui.callerRenewalRate"
|
||||
/>
|
||||
|
||||
<RankingListComponent
|
||||
title="渗透率"
|
||||
:ranking-list="ui.attachingRankingList"
|
||||
/>
|
||||
|
||||
<RankingListComponent
|
||||
title="续保率"
|
||||
:ranking-list="ui.renewalRankingList"
|
||||
/>
|
||||
<div class="carousel-item">
|
||||
<el-carousel
|
||||
arrow="never"
|
||||
indicator-position="none"
|
||||
:interval="4000"
|
||||
>
|
||||
<el-carousel-item :key="1">
|
||||
<RankingListComponent :ranking-list="ui.attachingRankingList" />
|
||||
</el-carousel-item>
|
||||
<el-carousel-item :key="2">
|
||||
<RankingListComponent :ranking-list="ui.renewalRankingList" />
|
||||
</el-carousel-item>
|
||||
</el-carousel>
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<el-carousel
|
||||
arrow="never"
|
||||
indicator-position="none"
|
||||
:interval="4000"
|
||||
>
|
||||
<el-carousel-item :key="1">
|
||||
<RankingListComponent :ranking-list="ui.attachingRankingList" />
|
||||
</el-carousel-item>
|
||||
<el-carousel-item :key="2">
|
||||
<RankingListComponent :ranking-list="ui.renewalRankingList" />
|
||||
</el-carousel-item>
|
||||
</el-carousel>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
@ -238,10 +256,10 @@ export default {
|
|||
ui.totalArchievement = data.total_archievement;
|
||||
ui.callerAttachingRate = data.attaching_rate;
|
||||
ui.callerRenewalRate = data.insurance_renewal_rate;
|
||||
ui.callerPersentMonthPremium = data.moto_premium_present_month;
|
||||
// ui.callerPersentMonthPremium = data.mensual_archievement_list[thisMonth];
|
||||
ui.callerPersentMonthPremium = data.mensual_archievement_list[thisMonth];
|
||||
|
||||
console.log( "业绩清单", data );
|
||||
// console.log( "业绩清单", ui.chartData );
|
||||
// console.log( "当月", data.mensual_archievement_list );
|
||||
|
||||
ui.showUI = false;
|
||||
setTimeout(() =>
|
||||
|
@ -384,7 +402,7 @@ export default {
|
|||
size: 90px;
|
||||
}
|
||||
|
||||
color: $color-title-font;
|
||||
color: $color-bg-04;
|
||||
text-shadow: #feebb1 0px 0px,
|
||||
#feebb1 5px 0px,
|
||||
#feebb1 -5px -0px,
|
||||
|
|
|
@ -260,12 +260,10 @@ export default {
|
|||
}
|
||||
else
|
||||
{
|
||||
ElMessageBox({
|
||||
ElMessage({
|
||||
message: response.message,
|
||||
type: "error",
|
||||
})
|
||||
.then(() => {})
|
||||
.catch(() => {});
|
||||
});
|
||||
}
|
||||
|
||||
refresh();
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: Kane
|
||||
* @Date: 2023-03-23 16:05:08
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/telsaler/TelsalerManagement.vue
|
||||
* @FilePath: /task_schedule/src/views/StaffManagement.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
|
@ -107,7 +107,7 @@
|
|||
<script lang="ts">
|
||||
import { reactive, computed } from "vue";
|
||||
export default {
|
||||
name: "TelsalerManagement",
|
||||
name: "StaffManagement",
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
|
@ -150,9 +150,16 @@ export default {
|
|||
@import "@/assets/css/public/_public.scss";
|
||||
|
||||
.wrapper {
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
|
||||
background-color: #fff;
|
||||
border-radius: 5px;
|
||||
box-shadow: $box-shadow;
|
||||
|
||||
&:hover {
|
||||
box-shadow: $box-shadow-hover;
|
||||
}
|
||||
|
||||
min-width: 800px;
|
||||
|
|
@ -1,115 +0,0 @@
|
|||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-09-25 09:48:25
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/data/DataManagement.vue
|
||||
* @Description: 数据管理view
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<div class="data_management_wrapper">
|
||||
<!-- <div class="telsaler-dataupload-wrapper">
|
||||
<el-upload
|
||||
v-model="ui.fileList"
|
||||
drag
|
||||
action="http://localhost:8080/desktop_archievement_backend/file/file-upload.do"
|
||||
:on-preview="handlePreview"
|
||||
:on-remove="handleRemove"
|
||||
:on-success="handleUploadSuccess"
|
||||
:before-remove="beforeRemove"
|
||||
:limit="1"
|
||||
:on-exceed="handleExceed"
|
||||
:data="ui.uploadData"
|
||||
name="files"
|
||||
>
|
||||
<el-button type="primary">
|
||||
上传
|
||||
</el-button>
|
||||
<template #tip>
|
||||
<div class="el-upload__tip">
|
||||
文件不能大于100MB。
|
||||
</div>
|
||||
</template>
|
||||
</el-upload>
|
||||
</div> -->
|
||||
<el-tabs>
|
||||
<el-tab-pane label="坐席车非渗透率">
|
||||
<TelsalerAttachingRateView />
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="坐席续保率">
|
||||
坐席车非渗透率
|
||||
</el-tab-pane>
|
||||
<el-tab-pane label="机构">
|
||||
坐席车非渗透率
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { ref, reactive } from "vue";
|
||||
import { ElMessage, ElMessageBox, type UploadFile, type UploadFiles, type UploadProps, type UploadUserFile } from "element-plus";
|
||||
import TelsalerAttachingRateView from "@/views/data/bi/TelsalerAttachingRateView.vue";
|
||||
export default {
|
||||
name: "DataManagement",
|
||||
components: { TelsalerAttachingRateView, },
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
showUI: false,
|
||||
fileList: ref<UploadUserFile[]>([]),
|
||||
uploadData: {
|
||||
"task-name": "1234",
|
||||
},
|
||||
});
|
||||
|
||||
const handleRemove: UploadProps["onRemove"] = ( file, uploadFile ) =>
|
||||
{
|
||||
console.log( file, uploadFile );
|
||||
};
|
||||
|
||||
const handlePreview: UploadProps["onPreview"] = ( uploadFile ) =>
|
||||
{
|
||||
console.log( uploadFile );
|
||||
};
|
||||
|
||||
const handleExceed: UploadProps["onExceed"] = ( files, uploadFiles ) =>
|
||||
{
|
||||
ElMessage.warning( "一次只能上传三个文件!" );
|
||||
};
|
||||
|
||||
const beforeRemove: UploadProps["beforeRemove"] = async ( uploadFile, uploadFiles ) =>
|
||||
{
|
||||
return await ElMessageBox.confirm(
|
||||
`放弃上传${uploadFile.name}`
|
||||
)
|
||||
.then(() => true, () => false );
|
||||
};
|
||||
|
||||
const handleUploadSuccess = ( response: any, uploadFile: UploadFile, uploadFiles: UploadFiles ): void =>
|
||||
{
|
||||
console.log( response );
|
||||
};
|
||||
|
||||
return {
|
||||
ui,
|
||||
handleRemove,
|
||||
handlePreview,
|
||||
handleExceed,
|
||||
beforeRemove,
|
||||
handleUploadSuccess,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss">
|
||||
.data_management_wrapper {
|
||||
margin: 10px;
|
||||
|
||||
min-width: 800px;
|
||||
|
||||
>*+* {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -1,238 +0,0 @@
|
|||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-17 10:56:43
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/data/bi/BiDataUploadView.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<div class="bi-dataupload-wrapper">
|
||||
<div class="query-box-wrapper">
|
||||
<el-row :gutter="10">
|
||||
<el-col :span="4">
|
||||
<span>报表类型</span>
|
||||
</el-col>
|
||||
<el-col :span="9">
|
||||
<el-select v-model="ui.selectedReportType">
|
||||
<el-option
|
||||
v-for="item in ui.reportType"
|
||||
:key="item.reportTypeCode"
|
||||
:label="item.reportTypeName"
|
||||
:value="item.reportTypeCode"
|
||||
width="100%"
|
||||
/>
|
||||
</el-select>
|
||||
</el-col>
|
||||
<el-col :span="4">
|
||||
<span>sheet编号</span>
|
||||
</el-col>
|
||||
<el-col :span="6">
|
||||
<el-input v-model.lazy.number="ui.sheetIndex" />
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-row :gutter="10">
|
||||
<el-col :span="4">
|
||||
<span>起始行</span>
|
||||
</el-col>
|
||||
<el-col :span="9">
|
||||
<el-input v-model.lazy.number="ui.firstRow" />
|
||||
</el-col>
|
||||
<el-col :span="11">
|
||||
<span style="text-align:left;color:red;">*从0开始计数</span>
|
||||
</el-col>
|
||||
</el-row>
|
||||
</div>
|
||||
<el-upload
|
||||
drag
|
||||
action="http://222.76.244.118:11101/desktop_archievement_backend/file/file-upload.do"
|
||||
name="files"
|
||||
:show-file-list="false"
|
||||
:data="ui.uploadParameters"
|
||||
:on-success="onUploadSuccess"
|
||||
>
|
||||
<el-icon class="el-icon--upload">
|
||||
<upload-filled />
|
||||
</el-icon>
|
||||
<div class="el-upload__text">
|
||||
将文件拖到此处,或<em>点击上传</em>
|
||||
</div>
|
||||
</el-upload>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { reactive, ref } from "vue";
|
||||
import {
|
||||
type BIReportType,
|
||||
type ImportBIReportRequest,
|
||||
type ImportBIReportResponse,
|
||||
type ImportBIReportResponseHandler,
|
||||
importBIReport
|
||||
} from "@/utils/BIReport.js";
|
||||
import { type FileUploadResponse } from "@/utils/fileUpload.js";
|
||||
// import { UploadFilled } from "@element-plus/icons-vue";
|
||||
import { type UploadProps, type UploadFile, type UploadFiles, ElMessage, ElMessageBox } from "element-plus";
|
||||
|
||||
interface UI
|
||||
{
|
||||
showUI: boolean,
|
||||
selectedReportType: number,
|
||||
reportType: BIReportType[],
|
||||
sheetIndex: number,
|
||||
firstRow: number,
|
||||
hasCaption: boolean,
|
||||
uploadParameters: any,
|
||||
showFileList: boolean,
|
||||
}
|
||||
|
||||
export default {
|
||||
name: "BiDataUploadView",
|
||||
props: {
|
||||
reportType: {
|
||||
type: Number,
|
||||
require: true,
|
||||
default: (): number => -9999,
|
||||
},
|
||||
},
|
||||
setup()
|
||||
{
|
||||
const ui: UI = reactive({
|
||||
showUI: false,
|
||||
selectedReportType: 0,
|
||||
reportType: [
|
||||
{
|
||||
reportTypeCode: 0,
|
||||
reportTypeName: "坐席车非渗透率",
|
||||
},
|
||||
{
|
||||
reportTypeCode: 1,
|
||||
reportTypeName: "坐席续保率",
|
||||
},
|
||||
{
|
||||
reportTypeCode: 2,
|
||||
reportTypeName: "部门车非渗透率",
|
||||
},
|
||||
{
|
||||
reportTypeCode: 3,
|
||||
reportTypeName: "当月个车续保率跟踪报表【机构】",
|
||||
},],
|
||||
sheetIndex: 0,
|
||||
firstRow: 2,
|
||||
hasCaption: true,
|
||||
uploadParameters: {
|
||||
"task-name": "1234",
|
||||
},
|
||||
showFileList: false,
|
||||
});
|
||||
|
||||
/**
|
||||
* 文件上传成功响应函数
|
||||
* @param response 响应结果参数
|
||||
* @param uploadFile
|
||||
* @param uploadFiles
|
||||
*/
|
||||
const onUploadSuccess: UploadProps["onSuccess"] = ( response: FileUploadResponse, uploadFile: UploadFile, uploadFiles: UploadFiles ): void =>
|
||||
{
|
||||
// 先判断成功标志位
|
||||
if ( response.success )
|
||||
{
|
||||
// 成功,发出导入报表请求
|
||||
if ( response.fileList.length === 0 )
|
||||
{
|
||||
// 上传文件路径有问题,提示一下
|
||||
ElMessageBox.confirm(
|
||||
"上传文件的保存路径有误,请联系开发人员。",
|
||||
"上传文件错误",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
}
|
||||
|
||||
const request: ImportBIReportRequest = {
|
||||
filePath: response.fileList[0],
|
||||
reportType: ui.selectedReportType,
|
||||
firstRow: ui.firstRow,
|
||||
sheetIndex: ui.sheetIndex,
|
||||
};
|
||||
|
||||
console.log( "请求参数", request );
|
||||
|
||||
// 发出请求
|
||||
importBIReport( request, importResponseHandler );
|
||||
}
|
||||
else
|
||||
{
|
||||
// 失败了,提示一下
|
||||
ElMessageBox.confirm(
|
||||
response.message,
|
||||
"上传文件错误",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
}
|
||||
};
|
||||
|
||||
/**
|
||||
* handler函数
|
||||
* @param response
|
||||
* @param error
|
||||
*/
|
||||
const importResponseHandler: ImportBIReportResponseHandler = ( response: ImportBIReportResponse, error?: any ): void =>
|
||||
{
|
||||
if ( response.success )
|
||||
{
|
||||
ElMessage({
|
||||
type: "success",
|
||||
message: response.message,
|
||||
});
|
||||
}
|
||||
else
|
||||
{
|
||||
ElMessageBox.confirm(
|
||||
response.message,
|
||||
"导入错误",
|
||||
{
|
||||
confirmButtonText: "确定",
|
||||
type: "warning",
|
||||
center: true,
|
||||
}
|
||||
)
|
||||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
console.log( error );
|
||||
}
|
||||
};
|
||||
|
||||
return {
|
||||
ui,
|
||||
onUploadSuccess,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
@import "@/assets/css/public/_public.scss";
|
||||
|
||||
.bi-dataupload-wrapper {
|
||||
// max-width: 600px;
|
||||
width: 100%;
|
||||
>*+* {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.query-box-wrapper {
|
||||
@include query-box-wrap;
|
||||
}
|
||||
</style>
|
|
@ -1,31 +0,0 @@
|
|||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-17 14:53:17
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/data/bi/DepartmentArchievementView.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
-->
|
||||
|
||||
<template>
|
||||
<div class="wrapper" />
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { reactive } from "vue";
|
||||
|
||||
export default {
|
||||
name: "DepartmentArchievementView",
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
showUI: true,
|
||||
});
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.wrapper {
|
||||
margin: 10px;
|
||||
}
|
||||
</style>
|
|
@ -1,142 +0,0 @@
|
|||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-17 14:41:39
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/data/bi/TelsalerAttachingRateView.vue
|
||||
* @Description: BI坐席车非渗透率数据管理界面
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<div class="wrapper">
|
||||
<el-row :gutter="10">
|
||||
<el-col :span="8">
|
||||
<el-button
|
||||
type="warning"
|
||||
icon="upload"
|
||||
@click="showUploadFileDialog"
|
||||
>
|
||||
上传
|
||||
</el-button>
|
||||
</el-col>
|
||||
</el-row>
|
||||
<el-table
|
||||
border
|
||||
stripe
|
||||
style="width:100%;"
|
||||
>
|
||||
<el-table-column
|
||||
type="selection"
|
||||
align="center"
|
||||
/>
|
||||
<el-table-column
|
||||
label="部门"
|
||||
align="center"
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
label="名称"
|
||||
align="center"
|
||||
width="200"
|
||||
/>
|
||||
<el-table-column
|
||||
label="车险保费(万)"
|
||||
align="center"
|
||||
/>
|
||||
<el-table-column
|
||||
label="非车险保费(万)"
|
||||
align="center"
|
||||
/>
|
||||
<el-table-column
|
||||
label="当月保费渗透率"
|
||||
align="center"
|
||||
/>
|
||||
<el-table-column
|
||||
label="渗透率环比上月"
|
||||
align="center"
|
||||
/>
|
||||
</el-table>
|
||||
<div class="pagination_wrapper">
|
||||
<el-pagination
|
||||
v-model="ui.tableCurrentPageIndex"
|
||||
class="pull_left"
|
||||
size="small"
|
||||
background
|
||||
:page-size="ui.tablePageSize"
|
||||
:page-sizes="[10, 20, 50, 100]"
|
||||
layout="total, sizes, prev, pager, next, jumper"
|
||||
:total="0"
|
||||
@current-change="onCurrentPageIndexChange"
|
||||
@size-change="onTablePageSizeChange"
|
||||
/>
|
||||
</div>
|
||||
<div
|
||||
class="upload-dialog-wrapper"
|
||||
>
|
||||
<el-dialog
|
||||
v-model="ui.showUploadDialog"
|
||||
title="上传报表"
|
||||
width="600px"
|
||||
:close-on-click-modal="false"
|
||||
:close-on-press-escape="false"
|
||||
:show-close="true"
|
||||
>
|
||||
<BiDataUploadView />
|
||||
</el-dialog>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { reactive } from "vue";
|
||||
import BiDataUploadView from "@/views/data/bi/BiDataUploadView.vue";
|
||||
|
||||
export default {
|
||||
name: "TelsalerAttachingRateView",
|
||||
components: { BiDataUploadView, },
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
showUI: true,
|
||||
showUploadDialog: false,
|
||||
tableCurrentPageIndex: 1,
|
||||
tablePageSize: 10,
|
||||
});
|
||||
|
||||
const showUploadFileDialog = (): void =>
|
||||
{
|
||||
ui.showUploadDialog = true;
|
||||
};
|
||||
|
||||
const onCurrentPageIndexChange = ( index: number ): void =>
|
||||
{
|
||||
ui.tableCurrentPageIndex = index;
|
||||
};
|
||||
|
||||
const onTablePageSizeChange = ( pageSize: number ): void =>
|
||||
{
|
||||
ui.tablePageSize = pageSize;
|
||||
};
|
||||
|
||||
return {
|
||||
ui,
|
||||
showUploadFileDialog,
|
||||
onCurrentPageIndexChange,
|
||||
onTablePageSizeChange,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.wrapper {
|
||||
margin: 10px;
|
||||
|
||||
>*+* {
|
||||
margin-top: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
.pagination_wrapper {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
</style>
|
|
@ -1,30 +0,0 @@
|
|||
src/views/data/bi/TelsalerAttachingRateView.vue<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-17 14:41:39
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/data/TelsalerAttachingRateView.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<div class="wrapper" />
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { reactive } from "vue";
|
||||
|
||||
export default {
|
||||
name: "TelsalerAttachingRateView",
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
showUI: true,
|
||||
});
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style lang="scss" scoped>
|
||||
.wrapper {
|
||||
margin: 10px;
|
||||
}
|
||||
</style>
|
|
@ -61,13 +61,17 @@ import { ElMessage, ElMessageBox } from "element-plus";
|
|||
import {
|
||||
type RewardProject,
|
||||
type RewardProjectResponse,
|
||||
type RewardGainerResponse,
|
||||
type DeleteRewardTelsalerRequest,
|
||||
type DeleteRewardTelsalerResponse,
|
||||
type AddRewardTelsalerRequest,
|
||||
type AddRewardTelsalerResponse,
|
||||
type UpdateRewardTelsalerRequest,
|
||||
type UpdateRewardTelsalerResponse,
|
||||
requestRewardPorjectsList,
|
||||
addRewardTelsaler,
|
||||
updateTelsalerReward
|
||||
updateTelsalerReward,
|
||||
deleteRewardTelsaler
|
||||
} from "@/utils/reward.js";
|
||||
import eventBus from "@/utils/api/EventBus.js";
|
||||
|
||||
|
@ -127,9 +131,13 @@ export default {
|
|||
.then((): void => {})
|
||||
.catch((): void => {});
|
||||
|
||||
console.log( "请求奖励项目失败:", error );
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
console.log( "请求奖励项目结果", response.rewardList );
|
||||
|
||||
ui.rewardProjectList = response.rewardList;
|
||||
};
|
||||
|
||||
|
@ -145,6 +153,8 @@ export default {
|
|||
ui.selectedRecID = props.selectedRecId;
|
||||
|
||||
refresh();
|
||||
|
||||
console.log( props.selectedRewardProjectCode );
|
||||
});
|
||||
|
||||
const onSaveRewardTelsaler = (): void =>
|
||||
|
|
|
@ -1,69 +0,0 @@
|
|||
<!--
|
||||
* @Author: Kane
|
||||
* @Date: 2023-09-27 10:13:31
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /task_schedule/src/views/telsaler/TelsalerManagementView.vue
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
-->
|
||||
<template>
|
||||
<div
|
||||
v-if="ui.showUI"
|
||||
class="telsaler-management-view-wrapper"
|
||||
>
|
||||
<el-tabs type="border-card">
|
||||
<el-tab-pane>
|
||||
<template #label>
|
||||
<el-icon><User /></el-icon>
|
||||
<span>坐席管理</span>
|
||||
</template>
|
||||
<TelsalerManagement />
|
||||
</el-tab-pane>
|
||||
<el-tab-pane>
|
||||
<template #label>
|
||||
<el-icon><Document /></el-icon>
|
||||
<span>导入导出</span>
|
||||
</template>
|
||||
导入导出
|
||||
</el-tab-pane>
|
||||
</el-tabs>
|
||||
</div>
|
||||
</template>
|
||||
<script lang="ts">
|
||||
import { ref, reactive } from "vue";
|
||||
// import { User } from "@element-plus/icons-vue";
|
||||
|
||||
import TelsalerManagement from "@/views/telsaler/TelsalerManagement.vue";
|
||||
|
||||
export default {
|
||||
name: "TelsalerManagementView",
|
||||
components: { TelsalerManagement, },
|
||||
setup()
|
||||
{
|
||||
const ui = reactive({
|
||||
showUI: true,
|
||||
});
|
||||
|
||||
return {
|
||||
ui,
|
||||
};
|
||||
},
|
||||
};
|
||||
</script>
|
||||
<style scoped lang="scss">
|
||||
.telsaler-management-view-wrapper {
|
||||
margin: 10px 10px;
|
||||
|
||||
min-width: 800px;
|
||||
|
||||
>*+* {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
span {
|
||||
margin-left: 4px;
|
||||
vertical-align: middle;
|
||||
}
|
||||
}
|
||||
</style>
|
|
@ -2,7 +2,5 @@
|
|||
"java.configuration.updateBuildConfiguration": "automatic",
|
||||
"java.compile.nullAnalysis.mode": "automatic",
|
||||
"vue.codeActions.enabled": false,
|
||||
"java.debug.settings.onBuildFailureProceed": true,
|
||||
"java.checkstyle.version": "10.12.4",
|
||||
"java.checkstyle.configuration": "/D:/DevTools/vscode/代码格式化/eclipse-java-google-style.xml"
|
||||
"java.debug.settings.onBuildFailureProceed": true
|
||||
}
|
|
@ -14,7 +14,6 @@
|
|||
<maven.compiler.source>17</maven.compiler.source>
|
||||
<maven.compiler.target>17</maven.compiler.target>
|
||||
<spring.version>5.3.24</spring.version>
|
||||
<log4j2.version>2.20.0</log4j2.version>
|
||||
<!-- <spring.version>6.0.11</spring.version> -->
|
||||
</properties>
|
||||
|
||||
|
@ -117,27 +116,6 @@
|
|||
<artifactId>log4j-slf4j2-impl</artifactId>
|
||||
<version>2.20.0</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.logging.log4j/log4j-api -->
|
||||
<dependency>
|
||||
<groupId>org.apache.logging.log4j</groupId>
|
||||
<artifactId>log4j-api</artifactId>
|
||||
<version>2.20.0</version>
|
||||
</dependency>
|
||||
|
||||
|
||||
<!-- POI -->
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
|
||||
<dependency>
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi</artifactId>
|
||||
<version>5.2.3</version>
|
||||
</dependency>
|
||||
<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
|
||||
<dependency>
|
||||
<groupId>org.apache.poi</groupId>
|
||||
<artifactId>poi-ooxml</artifactId>
|
||||
<version>5.2.3</version>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>org.mybatis</groupId>
|
||||
|
|
|
@ -1,34 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-11 16:47:59
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/mybatis/mapper/ImportBIArchievementDataMapper.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.mybatis.mapper;
|
||||
|
||||
import com.cpic.xim.mybatis.pojo.BIDepartmentAttachingRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BIDepartmentRenewalRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BITelsalerAttachingRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BITelsalerRenewalRateRecord;
|
||||
|
||||
public interface ImportBIArchievementDataMapper
|
||||
{
|
||||
public void insertTelsalerAttachingRateDataToDB( BITelsalerAttachingRateRecord record);
|
||||
|
||||
public void insertTelsalerRenewalRateDataToDB( BITelsalerRenewalRateRecord record );
|
||||
|
||||
public void insertDepartmentAttachingRateDataToDB(BIDepartmentAttachingRateRecord record);
|
||||
|
||||
public void insertDepartmentRenewalRateDataToDB(BIDepartmentRenewalRateRecord record);
|
||||
|
||||
public void cleanTelsalerAttachingRateData();
|
||||
|
||||
public void cleanTelsalerRenewalRateData();
|
||||
|
||||
public void cleanDepartmentAttachingRateData();
|
||||
|
||||
public void cleanDepartmentRenewalRateData();
|
||||
}
|
|
@ -1,296 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-10 14:50:55
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/mybatis/pojo/BIDepartmentAttachingRateRecord.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.mybatis.pojo;
|
||||
|
||||
public class BIDepartmentAttachingRateRecord
|
||||
{
|
||||
// 部门
|
||||
private String departmentName;
|
||||
// 目标值-机构
|
||||
private double departmentObject;
|
||||
// 目标差距
|
||||
private double objectGap;
|
||||
// 车险保费(万)
|
||||
private double motoPremium;
|
||||
// 车险保费占比
|
||||
private double motoPremiumProPortion;
|
||||
// 非车保费(万)
|
||||
private double nomotoPremium;
|
||||
// 当月保费渗透率
|
||||
private double attachingRate;
|
||||
// 保费渗透率环比上月
|
||||
private double attachingRateChange;
|
||||
// 车险客户数
|
||||
private int motoInsuranceCustomerCount;
|
||||
// 当月客户渗透率
|
||||
private double customerHandleRate;
|
||||
|
||||
// 客户渗透率环比上月
|
||||
private double customerHandleRateChange;
|
||||
|
||||
// 当月车非客均保费
|
||||
private double premiumPerCustomer;
|
||||
|
||||
// 客均保费环比上月
|
||||
private double premiumPerCustomerChange;
|
||||
|
||||
public BIDepartmentAttachingRateRecord( String departmentName, double departmentObject,
|
||||
double objectGap, double motoPremium, double motoPremiumProPortion,
|
||||
double nomotoPremium, double attachingRate, double attachingRateChange,
|
||||
int motoInsuranceCustomerCount, double customerHandleRate,
|
||||
double customerHandleRateChange, double premiumPerCustomer,
|
||||
double premiumPerCustomerChange )
|
||||
{
|
||||
this.departmentName = departmentName;
|
||||
this.departmentObject = departmentObject;
|
||||
this.objectGap = objectGap;
|
||||
this.motoPremium = motoPremium;
|
||||
this.motoPremiumProPortion = motoPremiumProPortion;
|
||||
this.nomotoPremium = nomotoPremium;
|
||||
this.attachingRate = attachingRate;
|
||||
this.attachingRateChange = attachingRateChange;
|
||||
this.motoInsuranceCustomerCount = motoInsuranceCustomerCount;
|
||||
this.customerHandleRate = customerHandleRate;
|
||||
this.customerHandleRateChange = customerHandleRateChange;
|
||||
this.premiumPerCustomer = premiumPerCustomer;
|
||||
this.premiumPerCustomerChange = premiumPerCustomerChange;
|
||||
}
|
||||
|
||||
public int getMotoInsuranceCustomerCount()
|
||||
{
|
||||
return motoInsuranceCustomerCount;
|
||||
}
|
||||
|
||||
public void setMotoInsuranceCustomerCount( int motoInsuranceCustomerCount )
|
||||
{
|
||||
this.motoInsuranceCustomerCount = motoInsuranceCustomerCount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "BIDepartmentAttachingRateRecord [departmentName=" + departmentName
|
||||
+ ", departmentObject=" + departmentObject + ", objectGap=" + objectGap
|
||||
+ ", motoPremium=" + motoPremium + ", motoPremiumProPortion="
|
||||
+ motoPremiumProPortion + ", nomotoPremium=" + nomotoPremium + ", attachingRate="
|
||||
+ attachingRate + ", attachingRateChange=" + attachingRateChange
|
||||
+ ", motoInsuranceCustomerCount=" + motoInsuranceCustomerCount
|
||||
+ ", customerHandleRate=" + customerHandleRate + ", customerHandleRateChange="
|
||||
+ customerHandleRateChange + ", premiumPerCustomer=" + premiumPerCustomer
|
||||
+ ", premiumPerCustomerChange=" + premiumPerCustomerChange + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((departmentName == null) ? 0 : departmentName.hashCode());
|
||||
long temp;
|
||||
temp = Double.doubleToLongBits( departmentObject );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( objectGap );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( motoPremium );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( motoPremiumProPortion );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( nomotoPremium );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( attachingRate );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( attachingRateChange );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
result = prime * result + motoInsuranceCustomerCount;
|
||||
temp = Double.doubleToLongBits( customerHandleRate );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( customerHandleRateChange );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( premiumPerCustomer );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( premiumPerCustomerChange );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
BIDepartmentAttachingRateRecord other = (BIDepartmentAttachingRateRecord) obj;
|
||||
if ( departmentName == null )
|
||||
{
|
||||
if ( other.departmentName != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !departmentName.equals( other.departmentName ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( departmentObject ) != Double
|
||||
.doubleToLongBits( other.departmentObject ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( objectGap ) != Double.doubleToLongBits( other.objectGap ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( motoPremium ) != Double
|
||||
.doubleToLongBits( other.motoPremium ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( motoPremiumProPortion ) != Double
|
||||
.doubleToLongBits( other.motoPremiumProPortion ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( nomotoPremium ) != Double
|
||||
.doubleToLongBits( other.nomotoPremium ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( attachingRate ) != Double
|
||||
.doubleToLongBits( other.attachingRate ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( attachingRateChange ) != Double
|
||||
.doubleToLongBits( other.attachingRateChange ) )
|
||||
return false;
|
||||
if ( motoInsuranceCustomerCount != other.motoInsuranceCustomerCount )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( customerHandleRate ) != Double
|
||||
.doubleToLongBits( other.customerHandleRate ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( customerHandleRateChange ) != Double
|
||||
.doubleToLongBits( other.customerHandleRateChange ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( premiumPerCustomer ) != Double
|
||||
.doubleToLongBits( other.premiumPerCustomer ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( premiumPerCustomerChange ) != Double
|
||||
.doubleToLongBits( other.premiumPerCustomerChange ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public String getDepartmentName()
|
||||
{
|
||||
return departmentName;
|
||||
}
|
||||
|
||||
public void setDepartmentName( String departmentName )
|
||||
{
|
||||
this.departmentName = departmentName;
|
||||
}
|
||||
|
||||
public double getDepartmentObject()
|
||||
{
|
||||
return departmentObject;
|
||||
}
|
||||
|
||||
public void setDepartmentObject( double departmentObject )
|
||||
{
|
||||
this.departmentObject = departmentObject;
|
||||
}
|
||||
|
||||
public double getObjectGap()
|
||||
{
|
||||
return objectGap;
|
||||
}
|
||||
|
||||
public void setObjectGap( double objectGap )
|
||||
{
|
||||
this.objectGap = objectGap;
|
||||
}
|
||||
|
||||
public double getMotoPremium()
|
||||
{
|
||||
return motoPremium;
|
||||
}
|
||||
|
||||
public void setMotoPremium( double motoPremium )
|
||||
{
|
||||
this.motoPremium = motoPremium;
|
||||
}
|
||||
|
||||
public double getMotoPremiumProPortion()
|
||||
{
|
||||
return motoPremiumProPortion;
|
||||
}
|
||||
|
||||
public void setMotoPremiumProPortion( double motoPremiumProPortion )
|
||||
{
|
||||
this.motoPremiumProPortion = motoPremiumProPortion;
|
||||
}
|
||||
|
||||
public double getNomotoPremium()
|
||||
{
|
||||
return nomotoPremium;
|
||||
}
|
||||
|
||||
public void setNomotoPremium( double nomotoPremium )
|
||||
{
|
||||
this.nomotoPremium = nomotoPremium;
|
||||
}
|
||||
|
||||
public double getAttachingRate()
|
||||
{
|
||||
return attachingRate;
|
||||
}
|
||||
|
||||
public void setAttachingRate( double attachingRate )
|
||||
{
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
public double getAttachingRateChange()
|
||||
{
|
||||
return attachingRateChange;
|
||||
}
|
||||
|
||||
public void setAttachingRateChange( double attachingRateChange )
|
||||
{
|
||||
this.attachingRateChange = attachingRateChange;
|
||||
}
|
||||
|
||||
public double getCustomerHandleRate()
|
||||
{
|
||||
return customerHandleRate;
|
||||
}
|
||||
|
||||
public void setCustomerHandleRate( double customerHandleRate )
|
||||
{
|
||||
this.customerHandleRate = customerHandleRate;
|
||||
}
|
||||
|
||||
public double getCustomerHandleRateChange()
|
||||
{
|
||||
return customerHandleRateChange;
|
||||
}
|
||||
|
||||
public void setCustomerHandleRateChange( double customerHandleRateChange )
|
||||
{
|
||||
this.customerHandleRateChange = customerHandleRateChange;
|
||||
}
|
||||
|
||||
public double getPremiumPerCustomer()
|
||||
{
|
||||
return premiumPerCustomer;
|
||||
}
|
||||
|
||||
public void setPremiumPerCustomer( double premiumPerCustomer )
|
||||
{
|
||||
this.premiumPerCustomer = premiumPerCustomer;
|
||||
}
|
||||
|
||||
public double getPremiumPerCustomerChange()
|
||||
{
|
||||
return premiumPerCustomerChange;
|
||||
}
|
||||
|
||||
public void setPremiumPerCustomerChange( double premiumPerCustomerChange )
|
||||
{
|
||||
this.premiumPerCustomerChange = premiumPerCustomerChange;
|
||||
}
|
||||
}
|
|
@ -1,214 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-24 11:06:29
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/mybatis/pojo/BIDepartmentRenewalRateRecord.java
|
||||
* @Description: BI机构当月个车续保率跟踪表记录对象
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.mybatis.pojo;
|
||||
|
||||
public class BIDepartmentRenewalRateRecord
|
||||
{
|
||||
private String 责任部门;
|
||||
private double 机构目标值;
|
||||
private int 到期数全月;
|
||||
private double 序时到期数占比;
|
||||
private double 个车续保率序时;
|
||||
private double 个车续保率全月;
|
||||
private double 环比昨日;
|
||||
private double 环比上月;
|
||||
private int 平均提前签单天数;
|
||||
private double 环比;
|
||||
|
||||
public BIDepartmentRenewalRateRecord() {}
|
||||
|
||||
public BIDepartmentRenewalRateRecord( String 责任部门, double 机构目标值, int 到期数全月, double 序时到期数占比,
|
||||
double 个车续保率序时, double 个车续保率全月, double 环比昨日, double 环比上月, int 平均提前签单天数, double 环比 )
|
||||
{
|
||||
this.责任部门 = 责任部门;
|
||||
this.机构目标值 = 机构目标值;
|
||||
this.到期数全月 = 到期数全月;
|
||||
this.序时到期数占比 = 序时到期数占比;
|
||||
this.个车续保率序时 = 个车续保率序时;
|
||||
this.个车续保率全月 = 个车续保率全月;
|
||||
this.环比昨日 = 环比昨日;
|
||||
this.环比上月 = 环比上月;
|
||||
this.平均提前签单天数 = 平均提前签单天数;
|
||||
this.环比 = 环比;
|
||||
}
|
||||
|
||||
public String get责任部门()
|
||||
{
|
||||
return 责任部门;
|
||||
}
|
||||
|
||||
public void set责任部门( String 责任部门 )
|
||||
{
|
||||
this.责任部门 = 责任部门;
|
||||
}
|
||||
|
||||
public double get机构目标值()
|
||||
{
|
||||
return 机构目标值;
|
||||
}
|
||||
|
||||
public void set机构目标值( double 机构目标值 )
|
||||
{
|
||||
this.机构目标值 = 机构目标值;
|
||||
}
|
||||
|
||||
public int get到期数全月()
|
||||
{
|
||||
return 到期数全月;
|
||||
}
|
||||
|
||||
public void set到期数全月( int 到期数全月 )
|
||||
{
|
||||
this.到期数全月 = 到期数全月;
|
||||
}
|
||||
|
||||
public double get序时到期数占比()
|
||||
{
|
||||
return 序时到期数占比;
|
||||
}
|
||||
|
||||
public void set序时到期数占比( double 序时到期数占比 )
|
||||
{
|
||||
this.序时到期数占比 = 序时到期数占比;
|
||||
}
|
||||
|
||||
public double get个车续保率序时()
|
||||
{
|
||||
return 个车续保率序时;
|
||||
}
|
||||
|
||||
public void set个车续保率序时( double 个车续保率序时 )
|
||||
{
|
||||
this.个车续保率序时 = 个车续保率序时;
|
||||
}
|
||||
|
||||
public double get个车续保率全月()
|
||||
{
|
||||
return 个车续保率全月;
|
||||
}
|
||||
|
||||
public void set个车续保率全月( double 个车续保率全月 )
|
||||
{
|
||||
this.个车续保率全月 = 个车续保率全月;
|
||||
}
|
||||
|
||||
public double get环比昨日()
|
||||
{
|
||||
return 环比昨日;
|
||||
}
|
||||
|
||||
public void set环比昨日( double 环比昨日 )
|
||||
{
|
||||
this.环比昨日 = 环比昨日;
|
||||
}
|
||||
|
||||
public double get环比上月()
|
||||
{
|
||||
return 环比上月;
|
||||
}
|
||||
|
||||
public void set环比上月( double 环比上月 )
|
||||
{
|
||||
this.环比上月 = 环比上月;
|
||||
}
|
||||
|
||||
public int get平均提前签单天数()
|
||||
{
|
||||
return 平均提前签单天数;
|
||||
}
|
||||
|
||||
public void set平均提前签单天数( int 平均提前签单天数 )
|
||||
{
|
||||
this.平均提前签单天数 = 平均提前签单天数;
|
||||
}
|
||||
|
||||
public double get环比()
|
||||
{
|
||||
return 环比;
|
||||
}
|
||||
|
||||
public void set环比( double 环比 )
|
||||
{
|
||||
this.环比 = 环比;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((责任部门 == null) ? 0 : 责任部门.hashCode());
|
||||
long temp;
|
||||
temp = Double.doubleToLongBits( 机构目标值 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
result = prime * result + 到期数全月;
|
||||
temp = Double.doubleToLongBits( 序时到期数占比 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 个车续保率序时 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 个车续保率全月 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 环比昨日 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 环比上月 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
result = prime * result + 平均提前签单天数;
|
||||
temp = Double.doubleToLongBits( 环比 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
BIDepartmentRenewalRateRecord other = (BIDepartmentRenewalRateRecord) obj;
|
||||
if ( 责任部门 == null )
|
||||
{
|
||||
if ( other.责任部门 != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !责任部门.equals( other.责任部门 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 机构目标值 ) != Double.doubleToLongBits( other.机构目标值 ) )
|
||||
return false;
|
||||
if ( 到期数全月 != other.到期数全月 )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 序时到期数占比 ) != Double.doubleToLongBits( other.序时到期数占比 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 个车续保率序时 ) != Double.doubleToLongBits( other.个车续保率序时 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 个车续保率全月 ) != Double.doubleToLongBits( other.个车续保率全月 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 环比昨日 ) != Double.doubleToLongBits( other.环比昨日 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 环比上月 ) != Double.doubleToLongBits( other.环比上月 ) )
|
||||
return false;
|
||||
if ( 平均提前签单天数 != other.平均提前签单天数 )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 环比 ) != Double.doubleToLongBits( other.环比 ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "BIDepartmentRenewalRateRecord [责任部门=" + 责任部门 + ", 机构目标值=" + 机构目标值 + ", 到期数全月="
|
||||
+ 到期数全月 + ", 序时到期数占比=" + 序时到期数占比 + ", 个车续保率序时=" + 个车续保率序时 + ", 个车续保率全月=" + 个车续保率全月
|
||||
+ ", 环比昨日=" + 环比昨日 + ", 环比上月=" + 环比上月 + ", 平均提前签单天数=" + 平均提前签单天数 + ", 环比=" + 环比
|
||||
+ "]";
|
||||
}
|
||||
}
|
|
@ -1,311 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-08 14:45:13
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/mybatis/pojo/BITelsalerAttachingRateRecord.java
|
||||
* @Description: 用于存放BI导出每日电销坐席车险非车险保费和车非渗透率数据.
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.mybatis.pojo;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class BITelsalerAttachingRateRecord
|
||||
{
|
||||
// 部门
|
||||
@JsonProperty( "departmentName" )
|
||||
private String departmentName;
|
||||
|
||||
// 统计日期
|
||||
@JsonProperty( "summaryDate" )
|
||||
private LocalDate summaryDate;
|
||||
|
||||
// 坐席名称
|
||||
@JsonProperty( "telsalerName" )
|
||||
private String telsalerName;
|
||||
|
||||
// 车险保费
|
||||
@JsonProperty( "motoPremium" )
|
||||
private double motoPremium;
|
||||
|
||||
// 非车险保费
|
||||
@JsonProperty( "nomotoPremium" )
|
||||
private double nomotoPremium;
|
||||
|
||||
// 车险保费占比
|
||||
@JsonProperty( "motoPremiumProportion" )
|
||||
private double motoPremiumProportion;
|
||||
|
||||
// 渗透率
|
||||
@JsonProperty( "attachingRate" )
|
||||
private double attachingRate;
|
||||
|
||||
// 渗透率环比上月
|
||||
@JsonProperty( "attachingRateChange" )
|
||||
private double attachingRateChange;
|
||||
|
||||
// 当月客户渗透率
|
||||
@JsonProperty( "customerHandleRateCell" )
|
||||
private double customerHandleRate;
|
||||
|
||||
// 客户渗透率环比上月
|
||||
@JsonProperty( "customerHandleRateChangeCell" )
|
||||
private double customerHandleRateChange;
|
||||
|
||||
// 当月车非客均保费
|
||||
@JsonProperty( "noMotoPremiumPerCustomerCell" )
|
||||
private double noMotoPremiumPerCustomer;
|
||||
|
||||
// 客均保费环比上月
|
||||
@JsonProperty( "noMotoPremiumPerCustomerChangeCell" )
|
||||
private double noMotoPremiumPerCustomerChange;
|
||||
|
||||
public BITelsalerAttachingRateRecord( String departmentName, LocalDate summaryDate,
|
||||
String telsalerName, double motoPremium, double nomotoPremium,
|
||||
double motoPremiumProportion, double attachingRate, double attachingRateChange,
|
||||
double customerHandleRate, double customerHandleRateChange,
|
||||
double noMotoPremiumPerCustomer, double noMotoPremiumPerCustomerChange )
|
||||
{
|
||||
this.departmentName = departmentName;
|
||||
this.summaryDate = summaryDate;
|
||||
this.telsalerName = telsalerName;
|
||||
this.motoPremium = motoPremium;
|
||||
this.nomotoPremium = nomotoPremium;
|
||||
this.motoPremiumProportion = motoPremiumProportion;
|
||||
this.attachingRate = attachingRate;
|
||||
this.attachingRateChange = attachingRateChange;
|
||||
this.customerHandleRate = customerHandleRate;
|
||||
this.customerHandleRateChange = customerHandleRateChange;
|
||||
this.noMotoPremiumPerCustomer = noMotoPremiumPerCustomer;
|
||||
this.noMotoPremiumPerCustomerChange = noMotoPremiumPerCustomerChange;
|
||||
}
|
||||
|
||||
public BITelsalerAttachingRateRecord()
|
||||
{}
|
||||
|
||||
public double getCustomerHandleRate()
|
||||
{
|
||||
return customerHandleRate;
|
||||
}
|
||||
|
||||
public void setCustomerHandleRate( double customerHandleRate )
|
||||
{
|
||||
this.customerHandleRate = customerHandleRate;
|
||||
}
|
||||
|
||||
public double getCustomerHandleRateChange()
|
||||
{
|
||||
return customerHandleRateChange;
|
||||
}
|
||||
|
||||
public void setCustomerHandleRateChange( double customerHandleRateChange )
|
||||
{
|
||||
this.customerHandleRateChange = customerHandleRateChange;
|
||||
}
|
||||
|
||||
public double getNoMotoPremiumPerCustomer()
|
||||
{
|
||||
return noMotoPremiumPerCustomer;
|
||||
}
|
||||
|
||||
public void setNoMotoPremiumPerCustomer( double noMotoPremiumPerCustomer )
|
||||
{
|
||||
this.noMotoPremiumPerCustomer = noMotoPremiumPerCustomer;
|
||||
}
|
||||
|
||||
public double getNoMotoPremiumPerCustomerChange()
|
||||
{
|
||||
return noMotoPremiumPerCustomerChange;
|
||||
}
|
||||
|
||||
public void setNoMotoPremiumPerCustomerChange( double noMotoPremiumPerCustomerChange )
|
||||
{
|
||||
this.noMotoPremiumPerCustomerChange = noMotoPremiumPerCustomerChange;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "BITelsalerAttachingRateRecord [departmentName=" + departmentName + ", summaryDate="
|
||||
+ summaryDate + ", telsalerName=" + telsalerName + ", motoPremium=" + motoPremium
|
||||
+ ", nomotoPremium=" + nomotoPremium + ", motoPremiumProportion="
|
||||
+ motoPremiumProportion + ", attachingRate=" + attachingRate
|
||||
+ ", attachingRateChange=" + attachingRateChange + ", customerHandleRate="
|
||||
+ customerHandleRate + ", customerHandleRateChange=" + customerHandleRateChange
|
||||
+ ", noMotoPremiumPerCustomer=" + noMotoPremiumPerCustomer
|
||||
+ ", noMotoPremiumPerCustomerChange=" + noMotoPremiumPerCustomerChange + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((departmentName == null) ? 0 : departmentName.hashCode());
|
||||
result = prime * result + ((summaryDate == null) ? 0 : summaryDate.hashCode());
|
||||
result = prime * result + ((telsalerName == null) ? 0 : telsalerName.hashCode());
|
||||
long temp;
|
||||
temp = Double.doubleToLongBits( motoPremium );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( nomotoPremium );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( motoPremiumProportion );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( attachingRate );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( attachingRateChange );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( customerHandleRate );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( customerHandleRateChange );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( noMotoPremiumPerCustomer );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( noMotoPremiumPerCustomerChange );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
BITelsalerAttachingRateRecord other = (BITelsalerAttachingRateRecord) obj;
|
||||
if ( departmentName == null )
|
||||
{
|
||||
if ( other.departmentName != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !departmentName.equals( other.departmentName ) )
|
||||
return false;
|
||||
if ( summaryDate == null )
|
||||
{
|
||||
if ( other.summaryDate != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !summaryDate.equals( other.summaryDate ) )
|
||||
return false;
|
||||
if ( telsalerName == null )
|
||||
{
|
||||
if ( other.telsalerName != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !telsalerName.equals( other.telsalerName ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( motoPremium ) != Double
|
||||
.doubleToLongBits( other.motoPremium ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( nomotoPremium ) != Double
|
||||
.doubleToLongBits( other.nomotoPremium ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( motoPremiumProportion ) != Double
|
||||
.doubleToLongBits( other.motoPremiumProportion ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( attachingRate ) != Double
|
||||
.doubleToLongBits( other.attachingRate ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( attachingRateChange ) != Double
|
||||
.doubleToLongBits( other.attachingRateChange ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( customerHandleRate ) != Double
|
||||
.doubleToLongBits( other.customerHandleRate ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( customerHandleRateChange ) != Double
|
||||
.doubleToLongBits( other.customerHandleRateChange ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( noMotoPremiumPerCustomer ) != Double
|
||||
.doubleToLongBits( other.noMotoPremiumPerCustomer ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( noMotoPremiumPerCustomerChange ) != Double
|
||||
.doubleToLongBits( other.noMotoPremiumPerCustomerChange ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public LocalDate getSummaryDate()
|
||||
{
|
||||
return summaryDate;
|
||||
}
|
||||
|
||||
public void setSummaryDate( LocalDate summaryDate )
|
||||
{
|
||||
this.summaryDate = summaryDate;
|
||||
}
|
||||
|
||||
public String getTelsalerName()
|
||||
{
|
||||
return telsalerName;
|
||||
}
|
||||
|
||||
public void setTelsalerName( String telsalerName )
|
||||
{
|
||||
this.telsalerName = telsalerName;
|
||||
}
|
||||
|
||||
public double getMotoPremium()
|
||||
{
|
||||
return motoPremium;
|
||||
}
|
||||
|
||||
public void setMotoPremium( double motoPremium )
|
||||
{
|
||||
this.motoPremium = motoPremium;
|
||||
}
|
||||
|
||||
public double getNomotoPremium()
|
||||
{
|
||||
return nomotoPremium;
|
||||
}
|
||||
|
||||
public void setNomotoPremium( double nomotoPremium )
|
||||
{
|
||||
this.nomotoPremium = nomotoPremium;
|
||||
}
|
||||
|
||||
public double getMotoPremiumProportion()
|
||||
{
|
||||
return motoPremiumProportion;
|
||||
}
|
||||
|
||||
public void setMotoPremiumProportion( double motoPremiumProportion )
|
||||
{
|
||||
this.motoPremiumProportion = motoPremiumProportion;
|
||||
}
|
||||
|
||||
public double getAttachingRate()
|
||||
{
|
||||
return attachingRate;
|
||||
}
|
||||
|
||||
public void setAttachingRate( double attachingRate )
|
||||
{
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
public double getAttachingRateChange()
|
||||
{
|
||||
return attachingRateChange;
|
||||
}
|
||||
|
||||
public void setAttachingRateChange( double attachingRateChange )
|
||||
{
|
||||
this.attachingRateChange = attachingRateChange;
|
||||
}
|
||||
|
||||
public String getDepartmentName()
|
||||
{
|
||||
return departmentName;
|
||||
}
|
||||
|
||||
public void setDepartmentName( String departmentName )
|
||||
{
|
||||
this.departmentName = departmentName;
|
||||
}
|
||||
}
|
|
@ -1,236 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-09 21:45:39
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/mybatis/pojo/BITelsalerRenewalRateRecord.java
|
||||
* @Description: BI导出的续保率Excel文件行记录。
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.mybatis.pojo;
|
||||
|
||||
public class BITelsalerRenewalRateRecord
|
||||
{
|
||||
private String 责任部门;
|
||||
private String 责任人;
|
||||
private double 机构目标值;
|
||||
private double 到期数全月;
|
||||
private double 序时到期数占比;
|
||||
private double 个车续保率序时;
|
||||
private double 个车续保率全月;
|
||||
private double 环比昨日;
|
||||
private double 环比上月;
|
||||
private double 平均提前签单天数;
|
||||
private double 环比;
|
||||
|
||||
public BITelsalerRenewalRateRecord( String 责任部门, String 责任人, double 机构目标值, double 到期数全月,
|
||||
double 序时到期数占比, double 个车续保率序时, double 个车续保率全月, double 环比昨日, double 环比上月,
|
||||
double 平均提前签单天数, double 环比 )
|
||||
{
|
||||
this.责任部门 = 责任部门;
|
||||
this.责任人 = 责任人;
|
||||
this.机构目标值 = 机构目标值;
|
||||
this.到期数全月 = 到期数全月;
|
||||
this.序时到期数占比 = 序时到期数占比;
|
||||
this.个车续保率序时 = 个车续保率序时;
|
||||
this.个车续保率全月 = 个车续保率全月;
|
||||
this.环比昨日 = 环比昨日;
|
||||
this.环比上月 = 环比上月;
|
||||
this.平均提前签单天数 = 平均提前签单天数;
|
||||
this.环比 = 环比;
|
||||
}
|
||||
|
||||
public double get平均提前签单天数()
|
||||
{
|
||||
return 平均提前签单天数;
|
||||
}
|
||||
|
||||
public void set平均提前签单天数( double 平均提前签单天数 )
|
||||
{
|
||||
this.平均提前签单天数 = 平均提前签单天数;
|
||||
}
|
||||
|
||||
public double get环比()
|
||||
{
|
||||
return 环比;
|
||||
}
|
||||
|
||||
public void set环比( double 环比 )
|
||||
{
|
||||
this.环比 = 环比;
|
||||
}
|
||||
|
||||
|
||||
|
||||
public String get责任部门()
|
||||
{
|
||||
return 责任部门;
|
||||
}
|
||||
|
||||
public void set责任部门( String 责任部门 )
|
||||
{
|
||||
this.责任部门 = 责任部门;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((责任部门 == null) ? 0 : 责任部门.hashCode());
|
||||
result = prime * result + ((责任人 == null) ? 0 : 责任人.hashCode());
|
||||
long temp;
|
||||
temp = Double.doubleToLongBits( 机构目标值 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 到期数全月 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 序时到期数占比 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 个车续保率序时 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 个车续保率全月 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 环比昨日 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 环比上月 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 平均提前签单天数 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
temp = Double.doubleToLongBits( 环比 );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
BITelsalerRenewalRateRecord other = (BITelsalerRenewalRateRecord) obj;
|
||||
if ( 责任部门 == null )
|
||||
{
|
||||
if ( other.责任部门 != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !责任部门.equals( other.责任部门 ) )
|
||||
return false;
|
||||
if ( 责任人 == null )
|
||||
{
|
||||
if ( other.责任人 != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !责任人.equals( other.责任人 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 机构目标值 ) != Double.doubleToLongBits( other.机构目标值 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 到期数全月 ) != Double.doubleToLongBits( other.到期数全月 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 序时到期数占比 ) != Double.doubleToLongBits( other.序时到期数占比 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 个车续保率序时 ) != Double.doubleToLongBits( other.个车续保率序时 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 个车续保率全月 ) != Double.doubleToLongBits( other.个车续保率全月 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 环比昨日 ) != Double.doubleToLongBits( other.环比昨日 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 环比上月 ) != Double.doubleToLongBits( other.环比上月 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 平均提前签单天数 ) != Double.doubleToLongBits( other.平均提前签单天数 ) )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( 环比 ) != Double.doubleToLongBits( other.环比 ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "BITelsalerRenewalRateRecord [责任部门=" + 责任部门 + ", 责任人=" + 责任人 + ", 机构目标值=" + 机构目标值
|
||||
+ ", 到期数全月=" + 到期数全月 + ", 序时到期数占比=" + 序时到期数占比 + ", 个车续保率序时=" + 个车续保率序时
|
||||
+ ", 个车续保率全月=" + 个车续保率全月 + ", 环比昨日=" + 环比昨日 + ", 环比上月=" + 环比上月 + ", 平均提前签单天数="
|
||||
+ 平均提前签单天数 + ", 环比=" + 环比 + "]";
|
||||
}
|
||||
|
||||
public String get责任人()
|
||||
{
|
||||
return 责任人;
|
||||
}
|
||||
|
||||
public void set责任人( String 责任人 )
|
||||
{
|
||||
this.责任人 = 责任人;
|
||||
}
|
||||
|
||||
public double get机构目标值()
|
||||
{
|
||||
return 机构目标值;
|
||||
}
|
||||
|
||||
public void set机构目标值( double 机构目标值 )
|
||||
{
|
||||
this.机构目标值 = 机构目标值;
|
||||
}
|
||||
|
||||
public double get到期数全月()
|
||||
{
|
||||
return 到期数全月;
|
||||
}
|
||||
|
||||
public void set到期数全月( double 到期数全月 )
|
||||
{
|
||||
this.到期数全月 = 到期数全月;
|
||||
}
|
||||
|
||||
public double get序时到期数占比()
|
||||
{
|
||||
return 序时到期数占比;
|
||||
}
|
||||
public void set序时到期数占比( double 序时到期数占比 )
|
||||
{
|
||||
this.序时到期数占比 = 序时到期数占比;
|
||||
}
|
||||
|
||||
public double get个车续保率序时()
|
||||
{
|
||||
return 个车续保率序时;
|
||||
}
|
||||
|
||||
public void set个车续保率序时( double 个车续保率序时 )
|
||||
{
|
||||
this.个车续保率序时 = 个车续保率序时;
|
||||
}
|
||||
|
||||
public double get个车续保率全月()
|
||||
{
|
||||
return 个车续保率全月;
|
||||
}
|
||||
|
||||
public void set个车续保率全月( double 个车续保率全月 )
|
||||
{
|
||||
this.个车续保率全月 = 个车续保率全月;
|
||||
}
|
||||
|
||||
public double get环比昨日()
|
||||
{
|
||||
return 环比昨日;
|
||||
}
|
||||
|
||||
public void set环比昨日( double 环比昨日 )
|
||||
{
|
||||
this.环比昨日 = 环比昨日;
|
||||
}
|
||||
|
||||
public double get环比上月()
|
||||
{
|
||||
return 环比上月;
|
||||
}
|
||||
|
||||
public void set环比上月( double 环比上月 )
|
||||
{
|
||||
this.环比上月 = 环比上月;
|
||||
}
|
||||
}
|
|
@ -1,341 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-07 23:29:22
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/mybatis/pojo/TelsalerFromJYGL.java
|
||||
* @Description: 经营管理系统中导出的电销坐席数据记录。
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.mybatis.pojo;
|
||||
|
||||
import java.time.LocalDate;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
/**
|
||||
* 经营管理系统中导出的电销坐席数据记录。
|
||||
* @author Kane
|
||||
*/
|
||||
public class TelsalerFromJYGL
|
||||
{
|
||||
// 名称
|
||||
@JsonProperty("telsalerName")
|
||||
private String telsalerName;
|
||||
|
||||
// 坐席工号
|
||||
@JsonProperty("telsalerCode")
|
||||
private String telsalerCode;
|
||||
|
||||
// 籍贯
|
||||
@JsonProperty("nativePlace")
|
||||
private String nativePlace;
|
||||
|
||||
// 参加工作时间
|
||||
@JsonProperty("startWorkingDate")
|
||||
private LocalDate startWorkingDate;
|
||||
|
||||
// 入司时间
|
||||
@JsonProperty("employmentDate")
|
||||
private LocalDate employmentDate;
|
||||
|
||||
// 业务类型
|
||||
@JsonProperty("business")
|
||||
private String business;
|
||||
|
||||
// 办公地省
|
||||
@JsonProperty("province")
|
||||
private String province;
|
||||
|
||||
// 办公地市
|
||||
@JsonProperty("city")
|
||||
private String city;
|
||||
|
||||
// 人员类别
|
||||
@JsonProperty("employmentType")
|
||||
private String employmentType;
|
||||
|
||||
// 现任岗位
|
||||
@JsonProperty("quarters")
|
||||
private String quarters;
|
||||
|
||||
// 现任职级
|
||||
@JsonProperty("rank")
|
||||
private String rank;
|
||||
|
||||
// 机构名称
|
||||
@JsonProperty("branchName")
|
||||
private String branchName;
|
||||
|
||||
// 职场分类
|
||||
@JsonProperty("workPlaceType")
|
||||
private String workPlaceType;
|
||||
|
||||
public TelsalerFromJYGL() {}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "TelsalerFromJYGL [telsalerName=" + telsalerName + ", telsalerCode=" + telsalerCode
|
||||
+ ", nativePlace=" + nativePlace + ", startWorkingDate=" + startWorkingDate
|
||||
+ ", employmentDate=" + employmentDate + ", business=" + business + ", province="
|
||||
+ province + ", city=" + city + ", employmentType=" + employmentType + ", quarters="
|
||||
+ quarters + ", rank=" + rank + ", branchName=" + branchName + ", workPlaceType="
|
||||
+ workPlaceType + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((telsalerName == null) ? 0 : telsalerName.hashCode());
|
||||
result = prime * result + ((telsalerCode == null) ? 0 : telsalerCode.hashCode());
|
||||
result = prime * result + ((nativePlace == null) ? 0 : nativePlace.hashCode());
|
||||
result = prime * result + ((startWorkingDate == null) ? 0 : startWorkingDate.hashCode());
|
||||
result = prime * result + ((employmentDate == null) ? 0 : employmentDate.hashCode());
|
||||
result = prime * result + ((business == null) ? 0 : business.hashCode());
|
||||
result = prime * result + ((province == null) ? 0 : province.hashCode());
|
||||
result = prime * result + ((city == null) ? 0 : city.hashCode());
|
||||
result = prime * result + ((employmentType == null) ? 0 : employmentType.hashCode());
|
||||
result = prime * result + ((quarters == null) ? 0 : quarters.hashCode());
|
||||
result = prime * result + ((rank == null) ? 0 : rank.hashCode());
|
||||
result = prime * result + ((branchName == null) ? 0 : branchName.hashCode());
|
||||
result = prime * result + ((workPlaceType == null) ? 0 : workPlaceType.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
TelsalerFromJYGL other = (TelsalerFromJYGL) obj;
|
||||
if ( telsalerName == null )
|
||||
{
|
||||
if ( other.telsalerName != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !telsalerName.equals( other.telsalerName ) )
|
||||
return false;
|
||||
if ( telsalerCode == null )
|
||||
{
|
||||
if ( other.telsalerCode != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !telsalerCode.equals( other.telsalerCode ) )
|
||||
return false;
|
||||
if ( nativePlace == null )
|
||||
{
|
||||
if ( other.nativePlace != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !nativePlace.equals( other.nativePlace ) )
|
||||
return false;
|
||||
if ( startWorkingDate == null )
|
||||
{
|
||||
if ( other.startWorkingDate != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !startWorkingDate.equals( other.startWorkingDate ) )
|
||||
return false;
|
||||
if ( employmentDate == null )
|
||||
{
|
||||
if ( other.employmentDate != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !employmentDate.equals( other.employmentDate ) )
|
||||
return false;
|
||||
if ( business == null )
|
||||
{
|
||||
if ( other.business != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !business.equals( other.business ) )
|
||||
return false;
|
||||
if ( province == null )
|
||||
{
|
||||
if ( other.province != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !province.equals( other.province ) )
|
||||
return false;
|
||||
if ( city == null )
|
||||
{
|
||||
if ( other.city != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !city.equals( other.city ) )
|
||||
return false;
|
||||
if ( employmentType == null )
|
||||
{
|
||||
if ( other.employmentType != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !employmentType.equals( other.employmentType ) )
|
||||
return false;
|
||||
if ( quarters == null )
|
||||
{
|
||||
if ( other.quarters != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !quarters.equals( other.quarters ) )
|
||||
return false;
|
||||
if ( rank == null )
|
||||
{
|
||||
if ( other.rank != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !rank.equals( other.rank ) )
|
||||
return false;
|
||||
if ( branchName == null )
|
||||
{
|
||||
if ( other.branchName != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !branchName.equals( other.branchName ) )
|
||||
return false;
|
||||
if ( workPlaceType == null )
|
||||
{
|
||||
if ( other.workPlaceType != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !workPlaceType.equals( other.workPlaceType ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public String getTelsalerName()
|
||||
{
|
||||
return telsalerName;
|
||||
}
|
||||
|
||||
public void setTelsalerName( String telsalerName )
|
||||
{
|
||||
this.telsalerName = telsalerName;
|
||||
}
|
||||
|
||||
public String getTelsalerCode()
|
||||
{
|
||||
return telsalerCode;
|
||||
}
|
||||
|
||||
public void setTelsalerCode( String telsalerCode )
|
||||
{
|
||||
this.telsalerCode = telsalerCode;
|
||||
}
|
||||
|
||||
public String getNativePlace()
|
||||
{
|
||||
return nativePlace;
|
||||
}
|
||||
|
||||
public void setNativePlace( String nativePlace )
|
||||
{
|
||||
this.nativePlace = nativePlace;
|
||||
}
|
||||
|
||||
public LocalDate getStartWorkingDate()
|
||||
{
|
||||
return startWorkingDate;
|
||||
}
|
||||
|
||||
public void setStartWorkingDate( LocalDate startWorkingDate )
|
||||
{
|
||||
this.startWorkingDate = startWorkingDate;
|
||||
}
|
||||
|
||||
public LocalDate getEmploymentDate()
|
||||
{
|
||||
return employmentDate;
|
||||
}
|
||||
|
||||
public void setEmploymentDate( LocalDate employmentDate )
|
||||
{
|
||||
this.employmentDate = employmentDate;
|
||||
}
|
||||
|
||||
public String getBusiness()
|
||||
{
|
||||
return business;
|
||||
}
|
||||
|
||||
public void setBusiness( String business )
|
||||
{
|
||||
this.business = business;
|
||||
}
|
||||
|
||||
public String getProvince()
|
||||
{
|
||||
return province;
|
||||
}
|
||||
|
||||
|
||||
public void setProvince( String province )
|
||||
{
|
||||
this.province = province;
|
||||
}
|
||||
|
||||
public String getCity()
|
||||
{
|
||||
return city;
|
||||
}
|
||||
|
||||
public void setCity( String city )
|
||||
{
|
||||
this.city = city;
|
||||
}
|
||||
|
||||
public String getEmploymentType()
|
||||
{
|
||||
return employmentType;
|
||||
}
|
||||
|
||||
public void setEmploymentType( String employmentType )
|
||||
{
|
||||
this.employmentType = employmentType;
|
||||
}
|
||||
|
||||
public String getQuarters()
|
||||
{
|
||||
return quarters;
|
||||
}
|
||||
|
||||
public void setQuarters( String quarters )
|
||||
{
|
||||
this.quarters = quarters;
|
||||
}
|
||||
|
||||
public String getRank()
|
||||
{
|
||||
return rank;
|
||||
}
|
||||
|
||||
public void setRank( String rank )
|
||||
{
|
||||
this.rank = rank;
|
||||
}
|
||||
|
||||
public String getBranchName()
|
||||
{
|
||||
return branchName;
|
||||
}
|
||||
|
||||
public void setBranchName( String branchName )
|
||||
{
|
||||
this.branchName = branchName;
|
||||
}
|
||||
|
||||
public String getWorkPlaceType()
|
||||
{
|
||||
return workPlaceType;
|
||||
}
|
||||
|
||||
public void setWorkPlaceType( String workPlaceType )
|
||||
{
|
||||
this.workPlaceType = workPlaceType;
|
||||
}
|
||||
}
|
|
@ -13,15 +13,13 @@ import java.io.IOException;
|
|||
import java.io.InputStream;
|
||||
import java.util.HashMap;
|
||||
import org.apache.ibatis.io.Resources;
|
||||
import org.apache.ibatis.session.ExecutorType;
|
||||
import org.apache.ibatis.session.SqlSession;
|
||||
import org.apache.ibatis.session.SqlSessionFactory;
|
||||
import org.apache.ibatis.session.SqlSessionFactoryBuilder;
|
||||
|
||||
public class MybatisUtils
|
||||
{
|
||||
private static HashMap<String, SqlSession> SessionMap = new HashMap<>(5);
|
||||
private static HashMap<String, SqlSession> SessionMapBatch = new HashMap<>(5);
|
||||
private static HashMap<String, SqlSession> SessionMap = new HashMap<>();
|
||||
private static String DEFAULT_CONFIGFILE = "mybatis/mybatis-config.xml";
|
||||
|
||||
/**
|
||||
|
@ -52,31 +50,6 @@ public class MybatisUtils
|
|||
return session;
|
||||
}
|
||||
|
||||
public static SqlSession getSqlSessionBatch( String configFile ) throws IOException
|
||||
{
|
||||
SqlSession sessionBatch = SessionMapBatch.get( configFile );
|
||||
|
||||
if ( sessionBatch != null )
|
||||
{
|
||||
return sessionBatch;
|
||||
}
|
||||
|
||||
// 没有缓存的就创建一个新的
|
||||
InputStream configIS = Resources.getResourceAsStream( configFile );
|
||||
SqlSessionFactory factory = new SqlSessionFactoryBuilder().build( configIS );
|
||||
sessionBatch = factory.openSession(ExecutorType.BATCH, false );
|
||||
|
||||
//保存
|
||||
SessionMapBatch.put( configFile, sessionBatch );
|
||||
|
||||
return sessionBatch;
|
||||
}
|
||||
|
||||
/**
|
||||
*
|
||||
* @return
|
||||
* @throws IOException
|
||||
*/
|
||||
public static SqlSession getSqlSession() throws IOException
|
||||
{
|
||||
// 根据配置文件的路径,查找是否已经创建了对应的session
|
||||
|
@ -98,31 +71,4 @@ public class MybatisUtils
|
|||
|
||||
return session;
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取一个Batch模式的sqlsession,使用默认路径的mybatis-config.xml文件。
|
||||
* 先判断SessionMapBatch中是否有和配置文件对应的缓存的sqlsession对象,有就直接使用。
|
||||
* 没有就创建一个新的,然后放入SessionMapBatch中。
|
||||
* @return ExecutorType.BATCH模式的sqlsession实例对象
|
||||
* @throws IOException 读取配置文件错误时抛出IOException异常
|
||||
*/
|
||||
public static SqlSession getSqlSessionBatch() throws IOException
|
||||
{
|
||||
SqlSession sessionBatch = SessionMapBatch.get( DEFAULT_CONFIGFILE );
|
||||
|
||||
if ( sessionBatch != null )
|
||||
{
|
||||
return sessionBatch;
|
||||
}
|
||||
|
||||
// 没有缓存的就创建一个新的
|
||||
InputStream configIS = Resources.getResourceAsStream( DEFAULT_CONFIGFILE );
|
||||
SqlSessionFactory factory = new SqlSessionFactoryBuilder().build( configIS );
|
||||
sessionBatch = factory.openSession(ExecutorType.BATCH, false );
|
||||
|
||||
//保存
|
||||
SessionMapBatch.put( DEFAULT_CONFIGFILE, sessionBatch );
|
||||
|
||||
return sessionBatch;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -25,25 +25,52 @@ public class CallerArchievement
|
|||
{
|
||||
private static Logger logger = LoggerFactory.getLogger( CallerArchievement.class );
|
||||
private static ArrayList<MensualArchievementItem> monthArray = null;
|
||||
/**
|
||||
* 构造函数
|
||||
* @param callerCode
|
||||
* @param totalArchievement
|
||||
* @param mensualArchievementList
|
||||
* @param insuranceRenewalRate
|
||||
* @param attachingRate
|
||||
*/
|
||||
public CallerArchievement( String callerCode, long totalArchievement,
|
||||
ArrayList<MensualArchievementItem> mensualArchievementList, String insuranceRenewalRate,
|
||||
String attachingRate)
|
||||
{
|
||||
this.callerCode = callerCode;
|
||||
this.totalArchievement = totalArchievement;
|
||||
this.mensualArchievementList = mensualArchievementList;
|
||||
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
// 静态代码块
|
||||
static
|
||||
{
|
||||
// 初始化月份
|
||||
monthArray = new ArrayList<MensualArchievementItem>( 12 );
|
||||
monthArray = new ArrayList<MensualArchievementItem>(12);
|
||||
|
||||
monthArray.add( new MensualArchievementItem( 1, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 2, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 3, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 4, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 5, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 6, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 7, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 8, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 9, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 10, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 11, "0" ) );
|
||||
monthArray.add( new MensualArchievementItem( 12, "0" ) );
|
||||
monthArray.add(new MensualArchievementItem(1, "0"));
|
||||
monthArray.add(new MensualArchievementItem(2, "0"));
|
||||
monthArray.add(new MensualArchievementItem(3, "0"));
|
||||
monthArray.add(new MensualArchievementItem(4, "0"));
|
||||
monthArray.add(new MensualArchievementItem(5, "0"));
|
||||
monthArray.add(new MensualArchievementItem(6, "0"));
|
||||
monthArray.add(new MensualArchievementItem(7, "0"));
|
||||
monthArray.add(new MensualArchievementItem(8, "0"));
|
||||
monthArray.add(new MensualArchievementItem(9, "0"));
|
||||
monthArray.add(new MensualArchievementItem(10, "0"));
|
||||
monthArray.add(new MensualArchievementItem(11, "0"));
|
||||
monthArray.add(new MensualArchievementItem(12, "0"));
|
||||
}
|
||||
|
||||
public CallerArchievement()
|
||||
{
|
||||
this.totalArchievement = 0;
|
||||
this.mensualArchievementList = null;
|
||||
this.insuranceRenewalRate = "";
|
||||
this.attachingRate = "";
|
||||
this.callerCode = "";
|
||||
}
|
||||
|
||||
public static CallerArchievement getCallerArchievement( String callerCode ) throws IOException
|
||||
|
@ -54,7 +81,6 @@ public class CallerArchievement
|
|||
ArchievementMapper mapper = session.getMapper( ArchievementMapper.class );
|
||||
HashMap<String, Object> params = new HashMap<String, Object>();
|
||||
Integer totalArchievement = null;
|
||||
double motoPremiumPresentMonth = 0;
|
||||
String attachingRate = null;
|
||||
String renewalRate = null;
|
||||
ArrayList<MensualArchievementItem> mensual = null;
|
||||
|
@ -67,22 +93,16 @@ public class CallerArchievement
|
|||
if ( params.get( "a_total" ) instanceof Integer )
|
||||
{
|
||||
totalArchievement = (Integer) params.get( "a_total" );
|
||||
}
|
||||
else
|
||||
} else
|
||||
{
|
||||
totalArchievement = Integer.valueOf( 0 );
|
||||
}
|
||||
|
||||
// 当月车险保费
|
||||
motoPremiumPresentMonth = ((Double) params.get( "a_present_month" )).doubleValue();
|
||||
|
||||
|
||||
// 车非融合
|
||||
if ( params.get( "a_attaching_rate" ) instanceof String )
|
||||
{
|
||||
attachingRate = (String) params.get( "a_attaching_rate" );
|
||||
}
|
||||
else
|
||||
} else
|
||||
{
|
||||
attachingRate = "0.0";
|
||||
}
|
||||
|
@ -91,23 +111,18 @@ public class CallerArchievement
|
|||
if ( params.get( "a_renewal_rate" ) instanceof String )
|
||||
{
|
||||
renewalRate = (String) params.get( "a_renewal_rate" );
|
||||
}
|
||||
else
|
||||
} else
|
||||
{
|
||||
renewalRate = "0.0";
|
||||
}
|
||||
|
||||
// 处理每月业绩
|
||||
// ArrayList<MensualArchievementItem> mensualList = new
|
||||
// ArrayList<>(CallerArchievement.monthArray);
|
||||
ArrayList<MensualArchievementItem> mensualList = new ArrayList<>(CallerArchievement.monthArray);
|
||||
// 数据库接收的每月业绩,要检查是否有缺漏
|
||||
if ( params.get( "a_mensual_cur" ) instanceof ArrayList )
|
||||
{
|
||||
mensual = (ArrayList<MensualArchievementItem>) params.get( "a_mensual_cur" );
|
||||
}
|
||||
mensual = (ArrayList<MensualArchievementItem>) params.get( "a_mensual_cur" );
|
||||
|
||||
archievement = new CallerArchievement( callerCode, totalArchievement,
|
||||
motoPremiumPresentMonth, mensual, renewalRate, attachingRate );
|
||||
archievement = new CallerArchievement( callerCode, totalArchievement, mensual, renewalRate,
|
||||
attachingRate );
|
||||
|
||||
return archievement;
|
||||
}
|
||||
|
@ -122,150 +137,6 @@ public class CallerArchievement
|
|||
CallerArchievement.logger = logger;
|
||||
}
|
||||
|
||||
public static ArrayList<MensualArchievementItem> getMonthArray()
|
||||
{
|
||||
return monthArray;
|
||||
}
|
||||
|
||||
public static void setMonthArray( ArrayList<MensualArchievementItem> monthArray )
|
||||
{
|
||||
CallerArchievement.monthArray = monthArray;
|
||||
}
|
||||
|
||||
@JsonProperty( "caller_code" )
|
||||
private String callerCode;
|
||||
|
||||
@JsonProperty( "total_archievement" )
|
||||
private long totalArchievement; // 总业绩
|
||||
|
||||
@JsonProperty( "motoPremiumPresentMonth" )
|
||||
private double motoPremiumPresentMonth; // 当月车险保费
|
||||
|
||||
// 每月业绩列表
|
||||
// 要保证数据是按照月份排序。
|
||||
@JsonProperty( "mensual_archievement_list" )
|
||||
private ArrayList<MensualArchievementItem> mensualArchievementList;
|
||||
|
||||
@JsonProperty( "insurance_renewal_rate" )
|
||||
private String insuranceRenewalRate; // 续保率
|
||||
|
||||
@JsonProperty( "attaching_rate" )
|
||||
private String attachingRate; // 车非渗透率
|
||||
|
||||
/**
|
||||
* 构造函数
|
||||
* @param callerCode
|
||||
* @param totalArchievement
|
||||
* @param mensualArchievementList
|
||||
* @param insuranceRenewalRate
|
||||
* @param attachingRate
|
||||
*/
|
||||
public CallerArchievement( String callerCode, long totalArchievement,
|
||||
double motoPremiumPresentMonth,
|
||||
ArrayList<MensualArchievementItem> mensualArchievementList, String insuranceRenewalRate,
|
||||
String attachingRate )
|
||||
{
|
||||
this.callerCode = callerCode;
|
||||
this.totalArchievement = totalArchievement;
|
||||
this.motoPremiumPresentMonth = motoPremiumPresentMonth;
|
||||
this.mensualArchievementList = mensualArchievementList;
|
||||
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
public CallerArchievement()
|
||||
{
|
||||
this.totalArchievement = 0;
|
||||
this.motoPremiumPresentMonth = 0;
|
||||
this.mensualArchievementList = null;
|
||||
this.insuranceRenewalRate = "";
|
||||
this.attachingRate = "";
|
||||
this.callerCode = "";
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "CallerArchievement [callerCode=" + callerCode + ", totalArchievement="
|
||||
+ totalArchievement + ", motoPremiumPresentMonth=" + motoPremiumPresentMonth
|
||||
+ ", mensualArchievementList=" + mensualArchievementList + ", insuranceRenewalRate="
|
||||
+ insuranceRenewalRate + ", attachingRate=" + attachingRate + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((callerCode == null) ? 0 : callerCode.hashCode());
|
||||
result = prime * result + (int) (totalArchievement ^ (totalArchievement >>> 32));
|
||||
long temp;
|
||||
temp = Double.doubleToLongBits( motoPremiumPresentMonth );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
result = prime * result
|
||||
+ ((mensualArchievementList == null) ? 0 : mensualArchievementList.hashCode());
|
||||
result = prime * result
|
||||
+ ((insuranceRenewalRate == null) ? 0 : insuranceRenewalRate.hashCode());
|
||||
result = prime * result + ((attachingRate == null) ? 0 : attachingRate.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
CallerArchievement other = (CallerArchievement) obj;
|
||||
if ( callerCode == null )
|
||||
{
|
||||
if ( other.callerCode != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !callerCode.equals( other.callerCode ) )
|
||||
return false;
|
||||
if ( totalArchievement != other.totalArchievement )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( motoPremiumPresentMonth ) != Double
|
||||
.doubleToLongBits( other.motoPremiumPresentMonth ) )
|
||||
return false;
|
||||
if ( mensualArchievementList == null )
|
||||
{
|
||||
if ( other.mensualArchievementList != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !mensualArchievementList.equals( other.mensualArchievementList ) )
|
||||
return false;
|
||||
if ( insuranceRenewalRate == null )
|
||||
{
|
||||
if ( other.insuranceRenewalRate != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !insuranceRenewalRate.equals( other.insuranceRenewalRate ) )
|
||||
return false;
|
||||
if ( attachingRate == null )
|
||||
{
|
||||
if ( other.attachingRate != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !attachingRate.equals( other.attachingRate ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public double getMotoPremiumPresentMonth()
|
||||
{
|
||||
return motoPremiumPresentMonth;
|
||||
}
|
||||
|
||||
public void setMotoPremiumPresentMonth( double motoPremiumPresentMonth )
|
||||
{
|
||||
this.motoPremiumPresentMonth = motoPremiumPresentMonth;
|
||||
}
|
||||
|
||||
public String getCallerCode()
|
||||
{
|
||||
return callerCode;
|
||||
|
@ -316,4 +187,21 @@ public class CallerArchievement
|
|||
{
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
@JsonProperty( "caller_code" )
|
||||
private String callerCode;
|
||||
|
||||
@JsonProperty( "total_archievement" )
|
||||
private long totalArchievement; // 总业绩
|
||||
|
||||
// 每月业绩列表
|
||||
// 要保证数据是按照月份排序。
|
||||
@JsonProperty( "mensual_archievement_list" )
|
||||
private ArrayList<MensualArchievementItem> mensualArchievementList;
|
||||
|
||||
@JsonProperty( "insurance_renewal_rate" )
|
||||
private String insuranceRenewalRate; // 续保率
|
||||
|
||||
@JsonProperty( "attaching_rate" )
|
||||
private String attachingRate; // 车非渗透率
|
||||
}
|
||||
|
|
|
@ -1,535 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-08 15:02:15
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/utils/data/ImportBIExcelData.java
|
||||
* @Description: 坐席业绩相关的数据操作方法。
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.utils.data;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.time.LocalDate;
|
||||
import java.util.ArrayList;
|
||||
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
||||
import org.apache.poi.ss.usermodel.Cell;
|
||||
import org.apache.poi.ss.usermodel.Row;
|
||||
import org.apache.poi.ss.usermodel.Sheet;
|
||||
import org.apache.poi.ss.usermodel.Workbook;
|
||||
import org.apache.poi.ss.usermodel.WorkbookFactory;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import com.cpic.xim.mybatis.pojo.BIDepartmentAttachingRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BIDepartmentRenewalRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BITelsalerAttachingRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BITelsalerRenewalRateRecord;
|
||||
import com.cpic.xim.utils.poi.MyPOIUtils;
|
||||
|
||||
/**
|
||||
* 坐席业绩相关的数据操作方法。
|
||||
*/
|
||||
public final class ImportBIExcelData
|
||||
{
|
||||
private static Logger logger = LoggerFactory.getLogger( ImportBIExcelData.class );
|
||||
|
||||
private static String[] TelsalerAttachingRateExcelTitle = new String[]
|
||||
{ "部门", "经办", "车险保费(万)", "车险保费占比", "非车保费(万)", "当月保费渗透率", "保费渗透率环比上月", "当月客户渗透率", "客户渗透率环比上月",
|
||||
"当月车非客均保费", "客均保费环比上月"};
|
||||
|
||||
private static String[] TelSalerRenewalRateExcelTitle = new String[]
|
||||
{ "责任部门", "责任人", "机构目标值1(%)", "到期数-全月", "序时到期数占比(%)", "个车续保率(序时)(%)", "个车续保率(全月)(%)", "环比昨日(%)",
|
||||
"环比上月(%)", "平均提前签单天数", "环比"};
|
||||
|
||||
private static String[] DepartmentAttachingRateExcelTitle = new String[]
|
||||
{ "部门", "目标值-机构", "目标差距", "车险保费(万)", "车险保费占比", "非车保费(万)", "当月保费渗透率", "保费渗透率环比上月", "车险客户数", "当月客户渗透率",
|
||||
"客户渗透率环比上月", "当月车非客均保费", "客均保费环比上月"};
|
||||
|
||||
private static String[] DepartmentRenewalRateExcelTitle = new String[]
|
||||
{ "责任部门", "机构目标值1(%)", "到期数-全月", "序时到期数占比(%)", "个车续保率(序时)(%)", "个车续保率(全月)(%)", "环比昨日(%)",
|
||||
"环比上月(%)", "平均提前签单天数", "环比",};
|
||||
|
||||
/**
|
||||
* 用于通过对比标题行判断excel文件格式的函数。
|
||||
* @param sheet
|
||||
* @param caption 标题行文字
|
||||
* @param captionRowIndex 标题行索引
|
||||
* @param title 字段行文字数组
|
||||
* @param titleRowIndex 字段行索引
|
||||
* @return 返回判断结果
|
||||
*/
|
||||
private static boolean checkExcelFormat( Sheet sheet, String caption, int captionRowIndex,
|
||||
String[] title, int titleRowIndex )
|
||||
{
|
||||
boolean result = true;
|
||||
|
||||
Row captionRow = sheet.getRow( captionRowIndex );
|
||||
Row titleRow = sheet.getRow( titleRowIndex );
|
||||
|
||||
if ( caption != null && !caption.isEmpty() )
|
||||
{
|
||||
try
|
||||
{
|
||||
int captionCellNum = captionRow.getFirstCellNum();
|
||||
String captionString = MyPOIUtils.getStringCellValue( captionRow, captionCellNum );
|
||||
|
||||
if ( !caption.equals( captionString ) )
|
||||
{
|
||||
result = false;
|
||||
}
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
result = false;
|
||||
}
|
||||
}
|
||||
|
||||
if ( title.length != 0 )
|
||||
{
|
||||
int cellIndex = 0;
|
||||
|
||||
try
|
||||
{
|
||||
for ( Cell cell : titleRow )
|
||||
{
|
||||
String cellString = MyPOIUtils.getStringCellValue( cell );
|
||||
|
||||
if ( !cellString.equals( title[cellIndex] ) )
|
||||
{
|
||||
result = false;
|
||||
break;
|
||||
}
|
||||
|
||||
cellIndex++;
|
||||
}
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
result = false;
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
|
||||
/**
|
||||
* 从excel文件读取坐席的车非渗透率数据
|
||||
* @param filePath 文件路径
|
||||
* @param SheetIndex sheet索引
|
||||
* @param firstRow 数据起始行
|
||||
* @return 返回一个ArrayList保存的TelsalerAttachingRateRecord记录数组。
|
||||
* @throws IOException 打开excel文件错误时抛出。
|
||||
* @throws InvalidFormatException excel单元格格式错误时抛出
|
||||
*/
|
||||
public static ArrayList<BITelsalerAttachingRateRecord> importBITelsalerAttachingRateRecordFromXlsx(
|
||||
String filePath, int SheetIndex, int firstRow )
|
||||
throws IOException, InvalidFormatException
|
||||
{
|
||||
ArrayList<BITelsalerAttachingRateRecord> records = new ArrayList<>( 200 );
|
||||
|
||||
Workbook wb = null;
|
||||
Sheet sheet = null;
|
||||
String name = null;
|
||||
String departmentName = null;
|
||||
String departmentCurrentRow = null;
|
||||
|
||||
try
|
||||
{
|
||||
wb = WorkbookFactory.create( new File( filePath ) );
|
||||
sheet = wb.getSheetAt( SheetIndex );
|
||||
|
||||
// 先验证格式,不对就抛出错误
|
||||
if ( !checkExcelFormat( sheet, null, 0, TelsalerAttachingRateExcelTitle, 0 ) )
|
||||
{
|
||||
throw new InvalidFormatException( "Excel文件格式错误,请检查报表内容!" );
|
||||
}
|
||||
|
||||
for ( Row row : sheet )
|
||||
{
|
||||
|
||||
int rowIndex = row.getRowNum();
|
||||
|
||||
// 从数据行开始
|
||||
if ( row.getRowNum() < firstRow )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
// 部门
|
||||
try
|
||||
{
|
||||
departmentCurrentRow = MyPOIUtils.getStringCellValue( row, 0 );
|
||||
|
||||
// 因为是合并列,所以要判断一下是不是空的
|
||||
if ( !departmentCurrentRow.equals( "" )
|
||||
&& !departmentCurrentRow.equals( "合计" ) )
|
||||
{
|
||||
// 不是空的,也不是合计,说明是新部门的数据,更新部门名称
|
||||
departmentName = departmentCurrentRow;
|
||||
}
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
// cell是空的,说明还是上一行的部门
|
||||
}
|
||||
|
||||
// 坐席名称
|
||||
name = MyPOIUtils.getStringCellValue( row, 1 );
|
||||
|
||||
// 忽略坐席名称为空的行
|
||||
if ( name.equals( "全流程" ) || name.equals( "其他" ) || name.isEmpty() )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
// 车险保费
|
||||
double motoPremium = MyPOIUtils.getNumbericCellValue( row, 2 );
|
||||
// 非车险保费
|
||||
double nomotoPremium = MyPOIUtils.getNumbericCellValue( row, 4 );
|
||||
// 车险保费占比
|
||||
double motoPremiumProPortion = MyPOIUtils.getNumbericCellValue( row, 3 ) * 100;
|
||||
// 当月保费渗透率
|
||||
double attachingRate = MyPOIUtils.getNumbericCellValue( row, 5 ) * 100;
|
||||
// 保费渗透率环比上月
|
||||
double attachingRateChange = MyPOIUtils.getNumbericCellValue( row, 6 ) * 100;
|
||||
// 当月客户渗透率
|
||||
double customerHandleRateCell = MyPOIUtils.getNumbericCellValue( row, 7 ) * 100;
|
||||
// 客户渗透率环比上月
|
||||
double customerHandleRateChangeCell =
|
||||
MyPOIUtils.getNumbericCellValue( row, 8 ) * 100;
|
||||
// 当月车非客均保费
|
||||
double noMotoPremiumPerCustomerCell =
|
||||
MyPOIUtils.getNumbericCellValue( row, 9 ) * 100;
|
||||
// 客均保费环比上月
|
||||
double noMotoPremiumPerCustomerChangeCell =
|
||||
MyPOIUtils.getNumbericCellValue( row, 10 ) * 100;
|
||||
|
||||
BITelsalerAttachingRateRecord record = new BITelsalerAttachingRateRecord(
|
||||
departmentName, LocalDate.now(), name, motoPremium, nomotoPremium,
|
||||
motoPremiumProPortion, attachingRate, attachingRateChange,
|
||||
customerHandleRateCell, customerHandleRateChangeCell,
|
||||
noMotoPremiumPerCustomerCell, noMotoPremiumPerCustomerChangeCell );
|
||||
|
||||
records.add( record );
|
||||
}
|
||||
catch ( IllegalStateException error )
|
||||
{
|
||||
error.printStackTrace();
|
||||
}
|
||||
catch ( NumberFormatException error )
|
||||
{
|
||||
error.printStackTrace();
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
String message = "第" + String.valueOf( rowIndex ) + "行出现NullPointerException异常";
|
||||
logger.error( message, error );
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
try
|
||||
{
|
||||
if ( wb != null )
|
||||
{
|
||||
wb.close();
|
||||
}
|
||||
}
|
||||
catch ( IOException error )
|
||||
{
|
||||
error.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
return records;
|
||||
}
|
||||
|
||||
/**
|
||||
* 从excel文件读取坐席的车非渗透率数据。
|
||||
* @param filePath
|
||||
* @param hasCaptionRow
|
||||
* @param summaryDate
|
||||
* @return
|
||||
*/
|
||||
public static ArrayList<BITelsalerRenewalRateRecord> importBITelsalerRenewalRateFromXlsx(
|
||||
String filePath, int sheetIndex, int firstRow )
|
||||
throws IOException, InvalidFormatException
|
||||
{
|
||||
ArrayList<BITelsalerRenewalRateRecord> records = new ArrayList<>( 200 );
|
||||
|
||||
Workbook wb = null;
|
||||
Sheet sheet = null;
|
||||
|
||||
try
|
||||
{
|
||||
wb = WorkbookFactory.create( new File( filePath ) );
|
||||
sheet = wb.getSheetAt( sheetIndex );
|
||||
int rowIndex = 0;
|
||||
String 责任部门 = null;
|
||||
String 当前行责任部门 = null;
|
||||
String 责任人 = null;
|
||||
|
||||
if ( !checkExcelFormat( sheet, null, 0, TelSalerRenewalRateExcelTitle, 0 ) )
|
||||
{
|
||||
throw new InvalidFormatException( "格式错误,请检查报表内容!" );
|
||||
}
|
||||
|
||||
for ( Row row : sheet )
|
||||
{
|
||||
rowIndex = row.getRowNum();
|
||||
|
||||
// 从数据行开始
|
||||
if ( row.getRowNum() < firstRow )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
// 处理责任部门列
|
||||
// 如果读取到的当前行责任部门不为空且与前一行责任部门不同,说明是另一个部门的数据
|
||||
try
|
||||
{
|
||||
当前行责任部门 = MyPOIUtils.getStringCellValue( row, 0 );
|
||||
|
||||
if ( !当前行责任部门.isEmpty() && !当前行责任部门.equals( 责任部门 ) )
|
||||
{
|
||||
责任部门 = 当前行责任部门;
|
||||
}
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
}
|
||||
|
||||
// 判断责任人,如果是空值,就跳过此行
|
||||
责任人 = MyPOIUtils.getStringCellValue( row, 1 );
|
||||
|
||||
if ( 责任人.isEmpty() == true )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
double 机构目标值 = MyPOIUtils.getNumbericCellValue( row, 2 ) * 100;
|
||||
double 到期数全月 = MyPOIUtils.getNumbericCellValue( row, 3 );
|
||||
double 序时到期数占比 = MyPOIUtils.getNumbericCellValue( row, 4 ) * 100;
|
||||
double 个车续保率序时 = MyPOIUtils.getNumbericCellValue( row, 5 ) * 100;
|
||||
double 个车续保率全月 = MyPOIUtils.getNumbericCellValue( row, 6 ) * 100;
|
||||
double 环比昨日 = MyPOIUtils.getNumbericCellValue( row, 7 ) * 100;
|
||||
double 环比上月 = MyPOIUtils.getNumbericCellValue( row, 8 ) * 100;
|
||||
double 平均提前签单天数 = MyPOIUtils.getNumbericCellValue( row, 9 );
|
||||
double 环比 = MyPOIUtils.getNumbericCellValue( row, 10 );
|
||||
|
||||
BITelsalerRenewalRateRecord record = new BITelsalerRenewalRateRecord( 责任部门, 责任人,
|
||||
机构目标值, 到期数全月, 序时到期数占比, 个车续保率序时, 个车续保率全月, 环比昨日, 环比上月, 平均提前签单天数, 环比 );
|
||||
|
||||
records.add( record );
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
String message = "第" + String.valueOf( rowIndex ) + "行出现NullPointerException异常";
|
||||
|
||||
logger.error( message, error );
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
try
|
||||
{
|
||||
if ( wb != null )
|
||||
{
|
||||
wb.close();
|
||||
}
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
error.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
return records;
|
||||
}
|
||||
|
||||
/**
|
||||
* 读取BI机构当月个车续保率跟踪表
|
||||
* @param filePath
|
||||
* @param sheetIndex
|
||||
* @param firstRow
|
||||
* @return
|
||||
* @throws IOException
|
||||
* @throws InvalidFormatException
|
||||
*/
|
||||
public static ArrayList<BIDepartmentAttachingRateRecord> importBIDepartmentAttachingRateRecordsFromXlsx(
|
||||
String filePath, int sheetIndex, int firstRow )
|
||||
throws IOException, InvalidFormatException
|
||||
{
|
||||
ArrayList<BIDepartmentAttachingRateRecord> records = new ArrayList<>( 5 );
|
||||
|
||||
Workbook wb = null;
|
||||
|
||||
try
|
||||
{
|
||||
wb = WorkbookFactory.create( new File( filePath ) );
|
||||
|
||||
Sheet sheet = wb.getSheetAt( sheetIndex );
|
||||
int rowIndex = 0;
|
||||
|
||||
if ( !checkExcelFormat( sheet, null, 0, DepartmentAttachingRateExcelTitle, 0 ) )
|
||||
{
|
||||
throw new InvalidFormatException( "Excel文件格式错误,请检查报表内容!" );
|
||||
}
|
||||
|
||||
for ( Row row : sheet )
|
||||
{
|
||||
rowIndex = row.getRowNum();
|
||||
|
||||
// 从数据行开始
|
||||
if ( row.getRowNum() < firstRow )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
String departmentName = MyPOIUtils.getStringCellValue( row, 0 );
|
||||
|
||||
if ( departmentName.isEmpty() || departmentName.equals( "合计" ) )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
double departmentObject = MyPOIUtils.getNumbericCellValue( row, 1 ) * 100;
|
||||
double objectGap = MyPOIUtils.getNumbericCellValue( row, 2 ) * 100;
|
||||
double motoPremium = MyPOIUtils.getNumbericCellValue( row, 3 );
|
||||
double motoPremiumProPortion = MyPOIUtils.getNumbericCellValue( row, 4 ) * 100;
|
||||
double nomotoPremium = MyPOIUtils.getNumbericCellValue( row, 5 );
|
||||
double attachingRate = MyPOIUtils.getNumbericCellValue( row, 6 ) * 100;
|
||||
double attachingRateChange = MyPOIUtils.getNumbericCellValue( row, 7 ) * 100;
|
||||
int motoInsuranceCustomerCount = (int)MyPOIUtils.getNumbericCellValue( row, 8 );
|
||||
double customerHandleRate = MyPOIUtils.getNumbericCellValue( row, 9 ) * 100;
|
||||
double customerHandleRateChange =
|
||||
MyPOIUtils.getNumbericCellValue( row, 10 ) * 100;
|
||||
double premiumPerCustomer = MyPOIUtils.getNumbericCellValue( row, 11 ) * 100;
|
||||
double premiumPerCustomerChange =
|
||||
MyPOIUtils.getNumbericCellValue( row, 12 ) * 100;
|
||||
|
||||
BIDepartmentAttachingRateRecord record = new BIDepartmentAttachingRateRecord(
|
||||
departmentName, departmentObject, objectGap, motoPremium,
|
||||
motoPremiumProPortion, nomotoPremium, attachingRate,
|
||||
attachingRateChange, motoInsuranceCustomerCount, customerHandleRate, customerHandleRateChange,
|
||||
premiumPerCustomer, premiumPerCustomerChange );
|
||||
|
||||
records.add( record );
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
String message = "第" + String.valueOf( rowIndex ) + "行出现NullPointerException异常";
|
||||
|
||||
logger.error( message, error );
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
try
|
||||
{
|
||||
if ( wb != null )
|
||||
{
|
||||
wb.close();
|
||||
}
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
String message = "关闭" + filePath + "时出现异常!";
|
||||
|
||||
logger.error( message, error );
|
||||
}
|
||||
}
|
||||
|
||||
return records;
|
||||
}
|
||||
|
||||
public static ArrayList<BIDepartmentRenewalRateRecord> importBIDepartmentRenewalRateRecordsFromXlsx(
|
||||
String filePath, int sheetIndex, int firstRow )
|
||||
throws IOException, InvalidFormatException
|
||||
{
|
||||
ArrayList<BIDepartmentRenewalRateRecord> records = new ArrayList<>( 20 );
|
||||
|
||||
Workbook wb = null;
|
||||
|
||||
try
|
||||
{
|
||||
wb = WorkbookFactory.create( new File( filePath ) );
|
||||
|
||||
Sheet sheet = wb.getSheetAt( sheetIndex );
|
||||
int rowIndex = 0;
|
||||
|
||||
if ( !checkExcelFormat( sheet, null, 0, DepartmentRenewalRateExcelTitle, 0 ) )
|
||||
{
|
||||
throw new InvalidFormatException( "Excel文件格式错误,请检查报表内容!" );
|
||||
}
|
||||
|
||||
for ( Row row : sheet )
|
||||
{
|
||||
rowIndex = row.getRowNum();
|
||||
|
||||
if ( rowIndex < firstRow )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
try
|
||||
{
|
||||
String 责任部门 = MyPOIUtils.getStringCellValue( row, 0 );
|
||||
|
||||
// 部门为空或者是合计行,就跳过
|
||||
if ( 责任部门.isEmpty() || 责任部门.equals( "合计" ) )
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
double 机构目标值 = MyPOIUtils.getNumbericCellValue( row, 1 ) * 100;
|
||||
int 到期数全月 = (int) MyPOIUtils.getNumbericCellValue( row, 2 );
|
||||
double 序时到期数占比 = MyPOIUtils.getNumbericCellValue( row, 3 ) * 100;
|
||||
double 个车续保率序时 = MyPOIUtils.getNumbericCellValue( row, 4 ) * 100;
|
||||
double 个车续保率全月 = MyPOIUtils.getNumbericCellValue( row, 5 ) * 100;
|
||||
double 环比昨日 = MyPOIUtils.getNumbericCellValue( row, 6 ) * 100;
|
||||
double 环比上月 = MyPOIUtils.getNumbericCellValue( row, 7 ) * 100;
|
||||
int 平均提前签单天数 = (int) MyPOIUtils.getNumbericCellValue( row, 8 );
|
||||
double 环比 = MyPOIUtils.getNumbericCellValue( row, 9 ) * 100;
|
||||
|
||||
BIDepartmentRenewalRateRecord record = new BIDepartmentRenewalRateRecord( 责任部门,
|
||||
机构目标值, 到期数全月, 序时到期数占比, 个车续保率序时, 个车续保率全月, 环比昨日, 环比上月, 平均提前签单天数, 环比 );
|
||||
|
||||
records.add( record );
|
||||
}
|
||||
catch ( NullPointerException error )
|
||||
{
|
||||
String message = "第" + String.valueOf( rowIndex ) + "行出现NullPointerException异常";
|
||||
|
||||
logger.error( message, error );
|
||||
}
|
||||
}
|
||||
}
|
||||
finally
|
||||
{
|
||||
if ( wb != null )
|
||||
{
|
||||
try
|
||||
{
|
||||
wb.close();
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
error.printStackTrace();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
return records;
|
||||
}
|
||||
}
|
|
@ -1,64 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-07 23:17:13
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/utils/data/TelsalerData.java
|
||||
* @Description: 电销坐席数据导入导出
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.utils.data;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.util.ArrayList;
|
||||
import org.apache.poi.ss.usermodel.Workbook;
|
||||
import org.apache.poi.ss.usermodel.WorkbookFactory;
|
||||
import com.cpic.xim.mybatis.pojo.TelsalerFromJYGL;
|
||||
|
||||
public class TelsalerData
|
||||
{
|
||||
/**
|
||||
*
|
||||
* @param filePath Xlsx文件路径。
|
||||
* @return
|
||||
*/
|
||||
public static ArrayList<TelsalerFromJYGL> importTelsalersFromXlsx( String filePath )
|
||||
{
|
||||
ArrayList<TelsalerFromJYGL> telsalers = new ArrayList<>();
|
||||
|
||||
Workbook wb = null;
|
||||
|
||||
try
|
||||
{
|
||||
wb = WorkbookFactory.create( new File( filePath ) );
|
||||
}
|
||||
catch ( IOException error )
|
||||
{
|
||||
|
||||
}
|
||||
finally
|
||||
{
|
||||
try
|
||||
{
|
||||
if ( wb != null )
|
||||
{
|
||||
wb.close();
|
||||
}
|
||||
}
|
||||
catch ( IOException error )
|
||||
{
|
||||
error.printStackTrace();
|
||||
}
|
||||
}
|
||||
|
||||
return telsalers;
|
||||
}
|
||||
|
||||
public static int importTelsalers( ArrayList<TelsalerFromJYGL> telsalers )
|
||||
{
|
||||
int importedCount = 0;
|
||||
|
||||
return importedCount;
|
||||
}
|
||||
}
|
|
@ -1,76 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-08 22:12:05
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/utils/poi/MyPOIUtils.java
|
||||
* @Description: POI相关的工具
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.utils.poi;
|
||||
|
||||
import org.apache.poi.ss.usermodel.Cell;
|
||||
import org.apache.poi.ss.usermodel.Row;
|
||||
import org.apache.poi.ss.usermodel.Row.MissingCellPolicy;
|
||||
|
||||
public class MyPOIUtils
|
||||
{
|
||||
public static String getStringCellValue( Cell cell )
|
||||
{
|
||||
switch( cell.getCellType() )
|
||||
{
|
||||
case STRING:
|
||||
return cell.getStringCellValue();
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
public static String getStringCellValue( Row row, int columnIndex )
|
||||
{
|
||||
Cell cell = row.getCell(columnIndex, MissingCellPolicy.RETURN_NULL_AND_BLANK);
|
||||
|
||||
switch( cell.getCellType() )
|
||||
{
|
||||
case STRING:
|
||||
return cell.getStringCellValue();
|
||||
default:
|
||||
return "";
|
||||
}
|
||||
}
|
||||
|
||||
public static double getNumbericCellValue( Cell cell )
|
||||
{
|
||||
double value = 0.0;
|
||||
|
||||
switch ( cell.getCellType() )
|
||||
{
|
||||
case NUMERIC:
|
||||
value = cell.getNumericCellValue();
|
||||
break;
|
||||
default:
|
||||
value = 0.0;
|
||||
break;
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
|
||||
public static double getNumbericCellValue( Row row, int columnIndex )
|
||||
{
|
||||
double value = 0.0;
|
||||
Cell cell = row.getCell( columnIndex, MissingCellPolicy.RETURN_NULL_AND_BLANK );
|
||||
|
||||
switch ( cell.getCellType() )
|
||||
{
|
||||
case NUMERIC:
|
||||
value = cell.getNumericCellValue();
|
||||
break;
|
||||
default:
|
||||
value = 0.0;
|
||||
break;
|
||||
}
|
||||
|
||||
return value;
|
||||
}
|
||||
}
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: Kane
|
||||
* @Date: 2023-04-05 22:34:36
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/QueryResponse.java
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/QueryResult.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
|
@ -11,49 +11,36 @@ package com.cpic.xim.web.controllers;
|
|||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class QueryResponse
|
||||
{
|
||||
@JsonProperty( "success" )
|
||||
private boolean success;
|
||||
public class QueryResponse {
|
||||
|
||||
@JsonProperty( "message" )
|
||||
private String message;
|
||||
|
||||
public QueryResponse( boolean success, String message )
|
||||
{
|
||||
public QueryResponse(boolean success, String message) {
|
||||
this.success = success;
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
public QueryResponse()
|
||||
{
|
||||
public QueryResponse() {
|
||||
this.success = false;
|
||||
this.message = "";
|
||||
}
|
||||
|
||||
public boolean isSuccess()
|
||||
{
|
||||
public boolean isSuccess() {
|
||||
return success;
|
||||
}
|
||||
|
||||
public void setSuccess( boolean success )
|
||||
{
|
||||
public void setSuccess(boolean success) {
|
||||
this.success = success;
|
||||
}
|
||||
|
||||
public String getMessage()
|
||||
{
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
public void setMessage( String message )
|
||||
{
|
||||
public void setMessage(String message) {
|
||||
this.message = message;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
public int hashCode() {
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + (success ? 1231 : 1237);
|
||||
|
@ -62,30 +49,26 @@ public class QueryResponse
|
|||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
public boolean equals(Object obj) {
|
||||
if (this == obj) return true;
|
||||
if (obj == null) return false;
|
||||
if (getClass() != obj.getClass()) return false;
|
||||
QueryResponse other = (QueryResponse) obj;
|
||||
if ( success != other.success )
|
||||
return false;
|
||||
if ( message == null )
|
||||
{
|
||||
if ( other.message != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !message.equals( other.message ) )
|
||||
return false;
|
||||
if (success != other.success) return false;
|
||||
if (message == null) {
|
||||
if (other.message != null) return false;
|
||||
} else if (!message.equals(other.message)) return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
public String toString() {
|
||||
return "QueryResult [success=" + success + ", message=" + message + "]";
|
||||
}
|
||||
|
||||
@JsonProperty("success")
|
||||
private boolean success;
|
||||
|
||||
@JsonProperty("message")
|
||||
private String message;
|
||||
}
|
||||
|
|
|
@ -29,7 +29,7 @@ import com.cpic.xim.utils.ranking.CallerRankingList;
|
|||
import com.cpic.xim.web.controllers.archievement.RankingList.RankingListRequest;
|
||||
import com.cpic.xim.web.controllers.archievement.RankingList.RankingListResponse;
|
||||
import com.cpic.xim.web.controllers.archievement.caller.CallerArchievementQueryRequest;
|
||||
import com.cpic.xim.web.controllers.archievement.caller.CallerArchievementQueryResponse;
|
||||
import com.cpic.xim.web.controllers.archievement.caller.CallerArchievementQueryResult;
|
||||
import com.cpic.xim.web.controllers.archievement.department.DepartmentArchievementQueryRequest;
|
||||
import com.cpic.xim.web.controllers.archievement.department.DepartmentArchievementQueryResult;
|
||||
|
||||
|
@ -71,10 +71,10 @@ public class ArchievementQueryController
|
|||
result.setTotalArchievement( departmentArch.getTotalArchievement() );
|
||||
result.setInsuranceRenewalRate( departmentArch.getInsuranceRenewalRate() );
|
||||
result.setAttachingRate( departmentArch.getAttachingRate() );
|
||||
// result.addAdvanceRewardGainer( "沈群" );
|
||||
// result.addLeadingRewardGainer( "王鸿津" );
|
||||
// result.addLeadingRewardGainer( "林宗泽" );
|
||||
// result.addBackwardStaff( "王炜" );
|
||||
result.addAdvanceRewardGainer( "沈群" );
|
||||
result.addLeadingRewardGainer( "王鸿津" );
|
||||
result.addLeadingRewardGainer( "林宗泽" );
|
||||
result.addBackwardStaff( "王炜" );
|
||||
result.setMensualArchievementList( departmentArch.getMensualArchievementList() );
|
||||
}
|
||||
catch ( IOException error )
|
||||
|
@ -90,24 +90,24 @@ public class ArchievementQueryController
|
|||
|
||||
@ResponseBody
|
||||
@PostMapping( "/query_caller_archievement.do" )
|
||||
public CallerArchievementQueryResponse queryCallerArchievement(
|
||||
public CallerArchievementQueryResult queryCallerArchievement(
|
||||
@RequestBody CallerArchievementQueryRequest request )
|
||||
{
|
||||
CallerArchievementQueryResponse result = null;
|
||||
CallerArchievementQueryResult result = null;
|
||||
|
||||
try
|
||||
{
|
||||
CallerArchievement archievement =
|
||||
CallerArchievement.getCallerArchievement( request.getCallerCode() );
|
||||
|
||||
result = new CallerArchievementQueryResponse( true, "查询成功", archievement.getCallerCode(),
|
||||
request.getCallName(), archievement.getTotalArchievement(), archievement.getMotoPremiumPresentMonth(),
|
||||
result = new CallerArchievementQueryResult( true, "查询成功", archievement.getCallerCode(),
|
||||
request.getCallName(), archievement.getTotalArchievement(),
|
||||
archievement.getMensualArchievementList(),
|
||||
archievement.getInsuranceRenewalRate(), archievement.getAttachingRate() );
|
||||
}
|
||||
catch ( IOException error )
|
||||
{
|
||||
result = new CallerArchievementQueryResponse(false, error.getMessage(), null, null, 0, 0, null, null, null);
|
||||
result = new CallerArchievementQueryResult(false, error.getMessage(), null, null, 0, null, null, null);
|
||||
}
|
||||
|
||||
return result;
|
||||
|
|
|
@ -1,222 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-06-06 17:35:54
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/caller/CallerArchievementQueryResponse.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.archievement.caller;
|
||||
|
||||
import com.cpic.xim.mybatis.pojo.MensualArchievementItem;
|
||||
import com.cpic.xim.web.controllers.QueryResponse;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class CallerArchievementQueryResponse extends QueryResponse
|
||||
{
|
||||
@JsonProperty("callerCode")
|
||||
String callerCode;
|
||||
|
||||
@JsonProperty("callerName")
|
||||
String callerName;
|
||||
|
||||
@JsonProperty( "total_archievement" )
|
||||
private long totalArchievement; // 总业绩
|
||||
|
||||
@JsonProperty( "motoPremiumPresentMonth" )
|
||||
private double motoPremiumPresentMonth; // 当月车险保费
|
||||
|
||||
// 每月业绩列表
|
||||
// 要保证数据是按照月份排序。
|
||||
@JsonProperty( "mensual_archievement_list" )
|
||||
private ArrayList<MensualArchievementItem> mensualArchievementList;
|
||||
|
||||
@JsonProperty( "insurance_renewal_rate" )
|
||||
private String insuranceRenewalRate; // 续保率
|
||||
|
||||
@JsonProperty( "attaching_rate" )
|
||||
private String attachingRate; // 车非渗透率
|
||||
|
||||
public CallerArchievementQueryResponse( boolean success, String message, String callerCode,
|
||||
String callerName, long totalArchievement, double motoPremiumPresentMonth,
|
||||
ArrayList<MensualArchievementItem> mensualArchievementList, String insuranceRenewalRate,
|
||||
String attachingRate )
|
||||
{
|
||||
super( success, message );
|
||||
this.callerCode = callerCode;
|
||||
this.callerName = callerName;
|
||||
this.totalArchievement = totalArchievement;
|
||||
this.motoPremiumPresentMonth = motoPremiumPresentMonth;
|
||||
this.mensualArchievementList = mensualArchievementList;
|
||||
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
public CallerArchievementQueryResponse( String callerCode, String callerName,
|
||||
long totalArchievement, double motoPremiumPresentMonth,
|
||||
ArrayList<MensualArchievementItem> mensualArchievementList, String insuranceRenewalRate,
|
||||
String attachingRate )
|
||||
{
|
||||
this.callerCode = callerCode;
|
||||
this.callerName = callerName;
|
||||
this.totalArchievement = totalArchievement;
|
||||
this.motoPremiumPresentMonth = motoPremiumPresentMonth;
|
||||
this.mensualArchievementList = mensualArchievementList;
|
||||
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "CallerArchievementQueryResponse [callerCode=" + callerCode + ", callerName="
|
||||
+ callerName + ", totalArchievement=" + totalArchievement
|
||||
+ ", motoPremiumPresentMonth=" + motoPremiumPresentMonth
|
||||
+ ", mensualArchievementList=" + mensualArchievementList + ", insuranceRenewalRate="
|
||||
+ insuranceRenewalRate + ", attachingRate=" + attachingRate + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = super.hashCode();
|
||||
result = prime * result + ((callerCode == null) ? 0 : callerCode.hashCode());
|
||||
result = prime * result + ((callerName == null) ? 0 : callerName.hashCode());
|
||||
result = prime * result + (int) (totalArchievement ^ (totalArchievement >>> 32));
|
||||
long temp;
|
||||
temp = Double.doubleToLongBits( motoPremiumPresentMonth );
|
||||
result = prime * result + (int) (temp ^ (temp >>> 32));
|
||||
result = prime * result
|
||||
+ ((mensualArchievementList == null) ? 0 : mensualArchievementList.hashCode());
|
||||
result = prime * result
|
||||
+ ((insuranceRenewalRate == null) ? 0 : insuranceRenewalRate.hashCode());
|
||||
result = prime * result + ((attachingRate == null) ? 0 : attachingRate.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
public void setMotoPremiumPresentMonth( double motoPremiumPresentMonth )
|
||||
{
|
||||
this.motoPremiumPresentMonth = motoPremiumPresentMonth;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( !super.equals( obj ) )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
CallerArchievementQueryResponse other = (CallerArchievementQueryResponse) obj;
|
||||
if ( callerCode == null )
|
||||
{
|
||||
if ( other.callerCode != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !callerCode.equals( other.callerCode ) )
|
||||
return false;
|
||||
if ( callerName == null )
|
||||
{
|
||||
if ( other.callerName != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !callerName.equals( other.callerName ) )
|
||||
return false;
|
||||
if ( totalArchievement != other.totalArchievement )
|
||||
return false;
|
||||
if ( Double.doubleToLongBits( motoPremiumPresentMonth ) != Double
|
||||
.doubleToLongBits( other.motoPremiumPresentMonth ) )
|
||||
return false;
|
||||
if ( mensualArchievementList == null )
|
||||
{
|
||||
if ( other.mensualArchievementList != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !mensualArchievementList.equals( other.mensualArchievementList ) )
|
||||
return false;
|
||||
if ( insuranceRenewalRate == null )
|
||||
{
|
||||
if ( other.insuranceRenewalRate != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !insuranceRenewalRate.equals( other.insuranceRenewalRate ) )
|
||||
return false;
|
||||
if ( attachingRate == null )
|
||||
{
|
||||
if ( other.attachingRate != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !attachingRate.equals( other.attachingRate ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public String getCallerCode()
|
||||
{
|
||||
return callerCode;
|
||||
}
|
||||
|
||||
public void setCallerCode( String callerCode )
|
||||
{
|
||||
this.callerCode = callerCode;
|
||||
}
|
||||
|
||||
public String getCallerName()
|
||||
{
|
||||
return callerName;
|
||||
}
|
||||
|
||||
public void setCallerName( String callerName )
|
||||
{
|
||||
this.callerName = callerName;
|
||||
}
|
||||
|
||||
public long getTotalArchievement()
|
||||
{
|
||||
return totalArchievement;
|
||||
}
|
||||
|
||||
public void setTotalArchievement( long totalArchievement )
|
||||
{
|
||||
this.totalArchievement = totalArchievement;
|
||||
}
|
||||
|
||||
public ArrayList<MensualArchievementItem> getMensualArchievementList()
|
||||
{
|
||||
return mensualArchievementList;
|
||||
}
|
||||
|
||||
public void setMensualArchievementList( ArrayList<MensualArchievementItem> mensualArchievementList )
|
||||
{
|
||||
this.mensualArchievementList = mensualArchievementList;
|
||||
}
|
||||
|
||||
public String getInsuranceRenewalRate()
|
||||
{
|
||||
return insuranceRenewalRate;
|
||||
}
|
||||
|
||||
public void setInsuranceRenewalRate( String insuranceRenewalRate )
|
||||
{
|
||||
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||
}
|
||||
|
||||
public String getAttachingRate()
|
||||
{
|
||||
return attachingRate;
|
||||
}
|
||||
|
||||
public void setAttachingRate( String attachingRate )
|
||||
{
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
public double getMotoPremiumPresentMonth()
|
||||
{
|
||||
return motoPremiumPresentMonth;
|
||||
}
|
||||
}
|
|
@ -0,0 +1,123 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-06-06 17:35:54
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/archievement/caller/CallerArchievementQueryResult.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.archievement.caller;
|
||||
|
||||
import com.cpic.xim.mybatis.pojo.MensualArchievementItem;
|
||||
import com.cpic.xim.web.controllers.QueryResponse;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
import java.util.ArrayList;
|
||||
|
||||
public class CallerArchievementQueryResult extends QueryResponse
|
||||
{
|
||||
/**
|
||||
*
|
||||
* @param success
|
||||
* @param message
|
||||
* @param callerCode
|
||||
* @param callerName
|
||||
* @param totalArchievement
|
||||
* @param mensualArchievementList
|
||||
* @param insuranceRenewalRate
|
||||
* @param attachingRate
|
||||
*/
|
||||
public CallerArchievementQueryResult( boolean success, String message, String callerCode,
|
||||
String callerName, long totalArchievement,
|
||||
ArrayList<MensualArchievementItem> mensualArchievementList, String insuranceRenewalRate,
|
||||
String attachingRate)
|
||||
{
|
||||
super( success, message );
|
||||
this.callerCode = callerCode;
|
||||
this.callerName = callerName;
|
||||
this.totalArchievement = totalArchievement;
|
||||
this.mensualArchievementList = mensualArchievementList;
|
||||
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
@JsonProperty("callerCode")
|
||||
String callerCode;
|
||||
|
||||
public String getCallerCode()
|
||||
{
|
||||
return callerCode;
|
||||
}
|
||||
|
||||
public void setCallerCode( String callerCode )
|
||||
{
|
||||
this.callerCode = callerCode;
|
||||
}
|
||||
|
||||
public String getCallerName()
|
||||
{
|
||||
return callerName;
|
||||
}
|
||||
|
||||
public void setCallerName( String callerName )
|
||||
{
|
||||
this.callerName = callerName;
|
||||
}
|
||||
|
||||
public long getTotalArchievement()
|
||||
{
|
||||
return totalArchievement;
|
||||
}
|
||||
|
||||
public void setTotalArchievement( long totalArchievement )
|
||||
{
|
||||
this.totalArchievement = totalArchievement;
|
||||
}
|
||||
|
||||
public ArrayList<MensualArchievementItem> getMensualArchievementList()
|
||||
{
|
||||
return mensualArchievementList;
|
||||
}
|
||||
|
||||
public void setMensualArchievementList( ArrayList<MensualArchievementItem> mensualArchievementList )
|
||||
{
|
||||
this.mensualArchievementList = mensualArchievementList;
|
||||
}
|
||||
|
||||
public String getInsuranceRenewalRate()
|
||||
{
|
||||
return insuranceRenewalRate;
|
||||
}
|
||||
|
||||
public void setInsuranceRenewalRate( String insuranceRenewalRate )
|
||||
{
|
||||
this.insuranceRenewalRate = insuranceRenewalRate;
|
||||
}
|
||||
|
||||
public String getAttachingRate()
|
||||
{
|
||||
return attachingRate;
|
||||
}
|
||||
|
||||
public void setAttachingRate( String attachingRate )
|
||||
{
|
||||
this.attachingRate = attachingRate;
|
||||
}
|
||||
|
||||
@JsonProperty("callerName")
|
||||
String callerName;
|
||||
|
||||
@JsonProperty( "total_archievement" )
|
||||
private long totalArchievement; // 总业绩
|
||||
|
||||
// 每月业绩列表
|
||||
// 要保证数据是按照月份排序。
|
||||
@JsonProperty( "mensual_archievement_list" )
|
||||
private ArrayList<MensualArchievementItem> mensualArchievementList;
|
||||
|
||||
@JsonProperty( "insurance_renewal_rate" )
|
||||
private String insuranceRenewalRate; // 续保率
|
||||
|
||||
@JsonProperty( "attaching_rate" )
|
||||
private String attachingRate; // 车非渗透率
|
||||
}
|
|
@ -1,31 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-06 00:34:15
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/dataimport/ImportController.java
|
||||
* @Description: 导入相关的controller
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.dataimport;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.PostMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
|
||||
@Controller
|
||||
@RequestMapping( path = "/import", method = RequestMethod.POST )
|
||||
public class ImportController
|
||||
{
|
||||
@PostMapping( path = "/import_telsalers.do" )
|
||||
@ResponseBody
|
||||
public ImportTelsalersResponse importTelsalers( @RequestParam ImportTelsalersRequest request )
|
||||
{
|
||||
ImportTelsalersResponse response = new ImportTelsalersResponse();
|
||||
|
||||
return response;
|
||||
}
|
||||
}
|
|
@ -1,98 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-06 00:44:14
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/dataimport/ImportTelsalersRequest.java
|
||||
* @Description: 导入作息列表请求。
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.dataimport;
|
||||
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class ImportTelsalersRequest
|
||||
{
|
||||
// 是否全量导入
|
||||
@JsonProperty( "fullImport" )
|
||||
private boolean fullImport;
|
||||
|
||||
// 文件路径
|
||||
@JsonProperty( "filePath" )
|
||||
private String filePath;
|
||||
|
||||
/**
|
||||
* 构造函数
|
||||
* @param fullImport 是否全量导入
|
||||
* @param filePath 文件路径
|
||||
*/
|
||||
public ImportTelsalersRequest( boolean fullImport, String filePath )
|
||||
{
|
||||
this.fullImport = fullImport;
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public ImportTelsalersRequest()
|
||||
{
|
||||
this.fullImport = false;
|
||||
this.filePath = "";
|
||||
}
|
||||
|
||||
public boolean isFullImport()
|
||||
{
|
||||
return fullImport;
|
||||
}
|
||||
|
||||
public void setFullImport( boolean fullImport )
|
||||
{
|
||||
this.fullImport = fullImport;
|
||||
}
|
||||
|
||||
public String getFilePath()
|
||||
{
|
||||
return filePath;
|
||||
}
|
||||
|
||||
public void setFilePath( String filePath )
|
||||
{
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "ImportTelsalersRequest [fullImport=" + fullImport + ", filePath=" + filePath + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + (fullImport ? 1231 : 1237);
|
||||
result = prime * result + ((filePath == null) ? 0 : filePath.hashCode());
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
ImportTelsalersRequest other = (ImportTelsalersRequest) obj;
|
||||
if ( fullImport != other.fullImport )
|
||||
return false;
|
||||
if ( filePath == null )
|
||||
{
|
||||
if ( other.filePath != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !filePath.equals( other.filePath ) )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
}
|
|
@ -1,74 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-06 01:30:29
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/dataimport/ImportTelsalersResponse.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.dataimport;
|
||||
|
||||
import com.cpic.xim.web.controllers.QueryResponse;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class ImportTelsalersResponse extends QueryResponse
|
||||
{
|
||||
public ImportTelsalersResponse( boolean success, String message, int importedCount )
|
||||
{
|
||||
super( success, message );
|
||||
|
||||
this.importedCount = importedCount;
|
||||
}
|
||||
|
||||
public ImportTelsalersResponse()
|
||||
{
|
||||
super();
|
||||
|
||||
importedCount = 0;
|
||||
}
|
||||
|
||||
public int getImportedCount()
|
||||
{
|
||||
return importedCount;
|
||||
}
|
||||
|
||||
public void setImportedCount( int importedCount )
|
||||
{
|
||||
this.importedCount = importedCount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "ImportTelsalersResponse [importedCount=" + importedCount + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = super.hashCode();
|
||||
result = prime * result + importedCount;
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( !super.equals( obj ) )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
ImportTelsalersResponse other = (ImportTelsalersResponse) obj;
|
||||
if ( importedCount != other.importedCount )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
// 导入的结果数量
|
||||
@JsonProperty( "importedCount" )
|
||||
private int importedCount;
|
||||
}
|
|
@ -1,257 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-12 00:34:39
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/dataimport/bi/ImportBIDataController.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.dataimport.bi;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.time.LocalDate;
|
||||
import java.util.ArrayList;
|
||||
import org.apache.ibatis.exceptions.PersistenceException;
|
||||
import org.apache.ibatis.session.SqlSession;
|
||||
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestBody;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestMethod;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
import com.cpic.xim.mybatis.mapper.ImportBIArchievementDataMapper;
|
||||
import com.cpic.xim.mybatis.pojo.BIDepartmentAttachingRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BIDepartmentRenewalRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BITelsalerAttachingRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BITelsalerRenewalRateRecord;
|
||||
import com.cpic.xim.mybatis.utils.MybatisUtils;
|
||||
import com.cpic.xim.utils.data.ImportBIExcelData;
|
||||
import com.cpic.xim.web.controllers.dataimport.bi.ImportBIDataRequest.ReportType;
|
||||
|
||||
@Controller
|
||||
@RequestMapping( method = RequestMethod.POST, path = "/import_bi_data" )
|
||||
public class ImportBIDataController
|
||||
{
|
||||
private static Logger logger = LoggerFactory.getLogger( ImportBIDataRequest.class );
|
||||
|
||||
@RequestMapping( method = RequestMethod.POST, path = "/excel.do" )
|
||||
@ResponseBody
|
||||
public static ImportBIDataResponse importBIData( @RequestBody ImportBIDataRequest request )
|
||||
{
|
||||
ImportBIDataResponse response = new ImportBIDataResponse();
|
||||
String filePath = request.getFilePath();
|
||||
ReportType type = request.getReportType();
|
||||
int firstRow = request.getFirstRow();
|
||||
int sheetIndex = request.getSheetIndex();
|
||||
int importedCount = 0;
|
||||
|
||||
try
|
||||
{
|
||||
if ( type == ReportType.TelsalerAttachingRateReport )
|
||||
{
|
||||
importedCount = importBITelsalerAttachingRate( filePath, sheetIndex, firstRow );
|
||||
}
|
||||
else if ( type == ReportType.TelsalerRenewalRateReport )
|
||||
{
|
||||
importedCount = importBITeslsalerRenewalRate( filePath, sheetIndex, firstRow );
|
||||
}
|
||||
else if ( type == ReportType.DepartmentAttachingRateReport )
|
||||
{
|
||||
importedCount = importBIDepartmentAttachingRate( filePath, sheetIndex, firstRow );
|
||||
}
|
||||
else if ( type == ReportType.DepartmentRenewalRateReport )
|
||||
{
|
||||
importedCount = importBIDepartmentRenewalRate( filePath, sheetIndex, firstRow );
|
||||
}
|
||||
|
||||
response.setImportedCount( importedCount );
|
||||
response.setSuccess( true );
|
||||
response.setMessage( "导入成功" );
|
||||
}
|
||||
catch ( IOException error )
|
||||
{
|
||||
String message = "加载文件错误,错误消息:" + error.getMessage();
|
||||
response.setSuccess( false );
|
||||
response.setMessage( message );
|
||||
|
||||
logger.error( message, error );
|
||||
}
|
||||
catch ( InvalidFormatException error )
|
||||
{
|
||||
String message = "Excel文件格式错误,错误消息:" + error.getMessage();
|
||||
response.setSuccess( false );
|
||||
response.setMessage( message );
|
||||
|
||||
logger.error( message, error );
|
||||
}
|
||||
catch ( PersistenceException error )
|
||||
{
|
||||
String message = "Mybatis执行错误,错误消息:" + error.getMessage();
|
||||
response.setSuccess( false );
|
||||
response.setMessage( message );
|
||||
|
||||
logger.error( message, error );
|
||||
}
|
||||
|
||||
return response;
|
||||
}
|
||||
|
||||
|
||||
private static int importBITelsalerAttachingRate( String filePath, int sheetIndex,
|
||||
int firstRow ) throws PersistenceException, IOException, InvalidFormatException
|
||||
{
|
||||
SqlSession session = null;
|
||||
int importedCount = 0;
|
||||
|
||||
try
|
||||
{
|
||||
ArrayList<BITelsalerAttachingRateRecord> records = ImportBIExcelData
|
||||
.importBITelsalerAttachingRateRecordFromXlsx( filePath, sheetIndex, firstRow );
|
||||
|
||||
session = MybatisUtils.getSqlSessionBatch();
|
||||
ImportBIArchievementDataMapper mapper =
|
||||
session.getMapper( ImportBIArchievementDataMapper.class );
|
||||
|
||||
mapper.cleanTelsalerAttachingRateData();
|
||||
|
||||
for ( BITelsalerAttachingRateRecord record : records )
|
||||
{
|
||||
mapper.insertTelsalerAttachingRateDataToDB( record );
|
||||
importedCount++;
|
||||
}
|
||||
|
||||
session.commit();
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
if ( session != null )
|
||||
{
|
||||
session.rollback();
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
|
||||
return importedCount;
|
||||
}
|
||||
|
||||
private static int importBITeslsalerRenewalRate( String filePath, int sheetIndex, int firstRow )
|
||||
throws PersistenceException, IOException, InvalidFormatException
|
||||
{
|
||||
ArrayList<BITelsalerRenewalRateRecord> records = null;
|
||||
SqlSession session = null;
|
||||
ImportBIArchievementDataMapper mapper = null;
|
||||
int importedCount = 0;
|
||||
|
||||
try
|
||||
{
|
||||
records = ImportBIExcelData.importBITelsalerRenewalRateFromXlsx( filePath, sheetIndex,
|
||||
firstRow );
|
||||
|
||||
session = MybatisUtils.getSqlSessionBatch();
|
||||
mapper = session.getMapper( ImportBIArchievementDataMapper.class );
|
||||
|
||||
// 清理数据
|
||||
mapper.cleanTelsalerRenewalRateData();
|
||||
|
||||
for ( BITelsalerRenewalRateRecord record : records )
|
||||
{
|
||||
mapper.insertTelsalerRenewalRateDataToDB( record );
|
||||
importedCount++;
|
||||
}
|
||||
|
||||
session.commit();
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
if ( session != null )
|
||||
{
|
||||
session.rollback();
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
|
||||
return importedCount;
|
||||
}
|
||||
|
||||
private static int importBIDepartmentAttachingRate( String filePath, int sheetIndex,
|
||||
int firstRow ) throws PersistenceException, IOException, InvalidFormatException
|
||||
{
|
||||
ArrayList<BIDepartmentAttachingRateRecord> records = null;
|
||||
SqlSession session = null;
|
||||
ImportBIArchievementDataMapper mapper = null;
|
||||
int importedCount = 0;
|
||||
|
||||
try
|
||||
{
|
||||
records = ImportBIExcelData.importBIDepartmentAttachingRateRecordsFromXlsx( filePath,
|
||||
sheetIndex, firstRow );
|
||||
session = MybatisUtils.getSqlSessionBatch();
|
||||
mapper = session.getMapper( ImportBIArchievementDataMapper.class );
|
||||
|
||||
mapper.cleanDepartmentAttachingRateData();
|
||||
|
||||
for ( BIDepartmentAttachingRateRecord record : records )
|
||||
{
|
||||
mapper.insertDepartmentAttachingRateDataToDB( record );
|
||||
importedCount++;
|
||||
}
|
||||
|
||||
session.commit();
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
if ( session != null )
|
||||
{
|
||||
session.rollback();
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
|
||||
return importedCount;
|
||||
}
|
||||
|
||||
private static int importBIDepartmentRenewalRate( String filePath, int sheetIndex, int firstRow )
|
||||
throws PersistenceException, IOException, InvalidFormatException
|
||||
{
|
||||
|
||||
ArrayList<BIDepartmentRenewalRateRecord> records = null;
|
||||
SqlSession session = null;
|
||||
ImportBIArchievementDataMapper mapper = null;
|
||||
int importedCount = 0;
|
||||
|
||||
try
|
||||
{
|
||||
records = ImportBIExcelData.importBIDepartmentRenewalRateRecordsFromXlsx(filePath, sheetIndex, firstRow);
|
||||
session = MybatisUtils.getSqlSessionBatch();
|
||||
mapper = session.getMapper(ImportBIArchievementDataMapper.class);
|
||||
|
||||
mapper.cleanDepartmentRenewalRateData();
|
||||
|
||||
for ( BIDepartmentRenewalRateRecord record : records )
|
||||
{
|
||||
mapper.insertDepartmentRenewalRateDataToDB(record);
|
||||
|
||||
importedCount++;
|
||||
}
|
||||
|
||||
session.commit();
|
||||
}
|
||||
catch ( Exception error)
|
||||
{
|
||||
if ( session != null )
|
||||
{
|
||||
session.rollback();
|
||||
}
|
||||
|
||||
throw error;
|
||||
}
|
||||
|
||||
return importedCount;
|
||||
}
|
||||
}
|
|
@ -1,127 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-13 14:39:06
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/dataimport/bi/ImportBIDataRequest.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.dataimport.bi;
|
||||
|
||||
import org.springframework.stereotype.Controller;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
@Controller
|
||||
public class ImportBIDataRequest
|
||||
{
|
||||
public enum ReportType {
|
||||
TelsalerAttachingRateReport, TelsalerRenewalRateReport, DepartmentAttachingRateReport, DepartmentRenewalRateReport
|
||||
};
|
||||
|
||||
// 导入文件的路径
|
||||
@JsonProperty( "filePath" )
|
||||
private String filePath;
|
||||
|
||||
// 报表名称
|
||||
@JsonProperty( "reportType" )
|
||||
private ReportType reportType;
|
||||
|
||||
// 是否有标题行
|
||||
@JsonProperty( "firstRow" )
|
||||
private int firstRow;
|
||||
|
||||
// sheet索引
|
||||
@JsonProperty( "sheetIndex" )
|
||||
private int sheetIndex;
|
||||
|
||||
public ImportBIDataRequest()
|
||||
{}
|
||||
|
||||
public int getFirstRow()
|
||||
{
|
||||
return firstRow;
|
||||
}
|
||||
|
||||
public void setFirstRow( int firstRow )
|
||||
{
|
||||
this.firstRow = firstRow;
|
||||
}
|
||||
|
||||
public int getSheetIndex()
|
||||
{
|
||||
return sheetIndex;
|
||||
}
|
||||
|
||||
public void setSheetIndex( int sheetIndex )
|
||||
{
|
||||
this.sheetIndex = sheetIndex;
|
||||
}
|
||||
|
||||
public String getFilePath()
|
||||
{
|
||||
return filePath;
|
||||
}
|
||||
|
||||
public void setFilePath( String filePath )
|
||||
{
|
||||
this.filePath = filePath;
|
||||
}
|
||||
|
||||
public ReportType getReportType()
|
||||
{
|
||||
return reportType;
|
||||
}
|
||||
|
||||
public void setReportType( ReportType reportType )
|
||||
{
|
||||
this.reportType = reportType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = 1;
|
||||
result = prime * result + ((filePath == null) ? 0 : filePath.hashCode());
|
||||
result = prime * result + ((reportType == null) ? 0 : reportType.hashCode());
|
||||
result = prime * result + firstRow;
|
||||
result = prime * result + sheetIndex;
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( obj == null )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
ImportBIDataRequest other = (ImportBIDataRequest) obj;
|
||||
if ( filePath == null )
|
||||
{
|
||||
if ( other.filePath != null )
|
||||
return false;
|
||||
}
|
||||
else if ( !filePath.equals( other.filePath ) )
|
||||
return false;
|
||||
if ( reportType != other.reportType )
|
||||
return false;
|
||||
if ( firstRow != other.firstRow )
|
||||
return false;
|
||||
if ( sheetIndex != other.sheetIndex )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "ImportBIDataRequest [filePath=" + filePath + ", reportType=" + reportType
|
||||
+ ", firstRow=" + firstRow + ", sheetIndex=" + sheetIndex + "]";
|
||||
}
|
||||
|
||||
|
||||
}
|
|
@ -1,78 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-13 14:39:58
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/dataimport/bi/ImportBIDataResponse.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.web.controllers.dataimport.bi;
|
||||
|
||||
import com.cpic.xim.web.controllers.QueryResponse;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
public class ImportBIDataResponse extends QueryResponse
|
||||
{
|
||||
// 导入数量
|
||||
@JsonProperty( "importedCount" )
|
||||
int importedCount;
|
||||
|
||||
public ImportBIDataResponse()
|
||||
{
|
||||
super();
|
||||
|
||||
importedCount = 0;
|
||||
}
|
||||
|
||||
public ImportBIDataResponse( boolean success, String message, int importedCount )
|
||||
{
|
||||
super( success, message );
|
||||
this.importedCount = importedCount;
|
||||
}
|
||||
|
||||
public ImportBIDataResponse( int importedCount )
|
||||
{
|
||||
this.importedCount = importedCount;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String toString()
|
||||
{
|
||||
return "ImportBIDataResponse [importedCount=" + importedCount + "]";
|
||||
}
|
||||
|
||||
@Override
|
||||
public int hashCode()
|
||||
{
|
||||
final int prime = 31;
|
||||
int result = super.hashCode();
|
||||
result = prime * result + importedCount;
|
||||
return result;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean equals( Object obj )
|
||||
{
|
||||
if ( this == obj )
|
||||
return true;
|
||||
if ( !super.equals( obj ) )
|
||||
return false;
|
||||
if ( getClass() != obj.getClass() )
|
||||
return false;
|
||||
ImportBIDataResponse other = (ImportBIDataResponse) obj;
|
||||
if ( importedCount != other.importedCount )
|
||||
return false;
|
||||
return true;
|
||||
}
|
||||
|
||||
public int getImportedCount()
|
||||
{
|
||||
return importedCount;
|
||||
}
|
||||
|
||||
public void setImportedCount( int importedCount )
|
||||
{
|
||||
this.importedCount = importedCount;
|
||||
}
|
||||
}
|
|
@ -1,97 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-01-22 23:11:26
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-10-23 17:01:29
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/fileupload/FileUpload.java
|
||||
* @Description: 用于接受上传文件的Controller。
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
package com.cpic.xim.web.controllers.fileupload;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.time.LocalDateTime;
|
||||
import java.time.ZoneOffset;
|
||||
import java.util.Vector;
|
||||
import javax.servlet.http.HttpServletRequest;
|
||||
import org.springframework.stereotype.Controller;
|
||||
import org.springframework.web.bind.annotation.RequestMapping;
|
||||
import org.springframework.web.bind.annotation.RequestParam;
|
||||
import org.springframework.web.bind.annotation.ResponseBody;
|
||||
import org.springframework.web.multipart.MultipartFile;
|
||||
|
||||
@SuppressWarnings( "unused" )
|
||||
@Controller
|
||||
@RequestMapping( path = "/file" )
|
||||
public class FileUpload
|
||||
{
|
||||
/**
|
||||
* 接收上传文件,并保存到临时目录:
|
||||
* 1、临时目录下再用sessionID作为子目录保存文件。
|
||||
* 2、保存时不更改文件名,会覆盖同名文件。
|
||||
* 3、MultipartFile参数形参名称必须和请求form中file标签的name属性一致,否则值为null。
|
||||
* 4、返回值为接收结果和文件保存绝对路径。
|
||||
* @param taskName 任务名称字符串
|
||||
* @param files MultipartFile结构的文件对象
|
||||
* @param request HttpServletRequest对象实例
|
||||
* @return 返回一个FileUploadResult对象,包含上传结果。
|
||||
*/
|
||||
@RequestMapping( path = "/file-upload.do" )
|
||||
@ResponseBody
|
||||
public FileUploadResult getUploadFile( @RequestParam( "task-name" ) String taskName,
|
||||
@RequestParam( "files" ) MultipartFile file, HttpServletRequest request )
|
||||
{
|
||||
// session id用来创建临时目录,避免重复
|
||||
String sessionID = request.getSession().getId();
|
||||
FileUploadResult result = new FileUploadResult();
|
||||
Vector<String> fileNames = new Vector<String>();
|
||||
|
||||
result.setSuccess( true );
|
||||
result.setMessage( "上传成功!" );
|
||||
|
||||
String filePath = request.getServletContext().getRealPath( "/temp/upload/" + sessionID );
|
||||
File dir = new File( filePath );
|
||||
|
||||
if ( !dir.mkdirs() )
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
// 检查文件长度,如果为0则跳过
|
||||
if ( file.isEmpty() )
|
||||
{
|
||||
result.setSuccess( false );
|
||||
result.setMessage( "不允许上传空文件。" );
|
||||
}
|
||||
else
|
||||
{
|
||||
// 保存文件到临时目录
|
||||
Long milliSecond =
|
||||
LocalDateTime.now().toInstant( ZoneOffset.of( "+8" ) ).toEpochMilli();
|
||||
String fileName = String.valueOf( milliSecond ) + file.getOriginalFilename();
|
||||
// String fileName = file.getOriginalFilename();
|
||||
File destFile = new File( filePath, fileName );
|
||||
|
||||
try
|
||||
{
|
||||
file.transferTo( destFile );
|
||||
// 把上传文件的绝对路径保存,返回给前端
|
||||
fileNames.add( destFile.getAbsolutePath() );
|
||||
|
||||
result.setSuccess( true );
|
||||
result.setMessage( "上传成功" );
|
||||
result.setFileList( fileNames );
|
||||
}
|
||||
catch ( IOException error )
|
||||
{
|
||||
result.setSuccess( false );
|
||||
result.setMessage( "上传失败,原因:" + error.getMessage() );
|
||||
}
|
||||
}
|
||||
|
||||
return result;
|
||||
}
|
||||
}
|
|
@ -1,54 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-01-23 22:56:17
|
||||
* @LastEditors: Kane
|
||||
* @LastEditTime: 2023-10-06 00:32:47
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/FileUpload/FileUploadResult.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
*/
|
||||
|
||||
package com.cpic.xim.web.controllers.fileupload;
|
||||
|
||||
import java.util.Vector;
|
||||
import com.cpic.xim.web.controllers.QueryResponse;
|
||||
import com.fasterxml.jackson.annotation.JsonProperty;
|
||||
|
||||
@SuppressWarnings( "unused" )
|
||||
public class FileUploadResult extends QueryResponse
|
||||
{
|
||||
public FileUploadResult()
|
||||
{
|
||||
super();
|
||||
}
|
||||
|
||||
/**
|
||||
* 构造函数
|
||||
* @param success 是否上传成功
|
||||
* @param message 消息字符串
|
||||
* @param fileList 文件绝对路径字符串数组
|
||||
*/
|
||||
public FileUploadResult( boolean success,
|
||||
String message,
|
||||
Vector<String> fileList )
|
||||
{
|
||||
super( success, message );
|
||||
|
||||
this.fileList = fileList;
|
||||
}
|
||||
|
||||
public Vector<String> getFileList()
|
||||
{
|
||||
return fileList;
|
||||
}
|
||||
|
||||
public void setFileList( Vector<String> fileList )
|
||||
{
|
||||
this.fileList = fileList;
|
||||
}
|
||||
|
||||
@JsonProperty( "fileList" )
|
||||
private Vector<String> fileList;
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
* @Author: Kane
|
||||
* @Date: 2023-09-21 11:35:57
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/rewards/DeleteTelsalerResponse.java
|
||||
* @FilePath: /desktop_archievement_backend/src/main/java/com/cpic/xim/web/controllers/rewards/AddTelsalerResponse.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
||||
|
|
|
@ -15,7 +15,6 @@
|
|||
#{a_attaching_rate, mode=OUT, jdbcType=VARCHAR},
|
||||
#{a_renewal_rate, mode=OUT, jdbcType=VARCHAR},
|
||||
#{a_total, mode=OUT, jdbcType=INTEGER, javaType=Integer},
|
||||
#{a_present_month, mode=OUT, jdbcType=DOUBLE, javaType=Double},
|
||||
#{a_mensual_cur, mode=OUT, jdbcType=CURSOR, resultMap=MensualArchievementMapper})
|
||||
</select>
|
||||
|
||||
|
|
|
@ -1,53 +0,0 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE mapper PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN" "https://mybatis.org/dtd/mybatis-3-mapper.dtd">
|
||||
<mapper namespace="com.cpic.xim.mybatis.mapper.ImportBIArchievementDataMapper">
|
||||
<insert id="insertTelsalerAttachingRateDataToDB" parameterType="com.cpic.xim.mybatis.pojo.BITelsalerAttachingRateRecord">
|
||||
insert into BI电销坐席车非渗透率跟踪表 ( "部门","经办","车险保费(万)","车险保费占比","非车保费(万)",
|
||||
"当月保费渗透率","保费渗透率环比上月","当月客户渗透率","客户渗透率环比上月",
|
||||
"当月车非客均保费","客均保费环比上月" )
|
||||
values ( #{departmentName}, #{telsalerName}, #{motoPremium}, #{motoPremiumProportion}, #{nomotoPremium},
|
||||
#{attachingRate}, #{attachingRateChange}, #{customerHandleRate},
|
||||
#{customerHandleRateChange}, #{noMotoPremiumPerCustomer}, #{noMotoPremiumPerCustomerChange} )
|
||||
</insert>
|
||||
|
||||
<insert id="insertTelsalerRenewalRateDataToDB" parameterType="com.cpic.xim.mybatis.pojo.BITelsalerRenewalRateRecord">
|
||||
insert into BI电销坐席续保率跟踪表 ("责任部门","责任人","机构目标值1(%)","到期数-全月",
|
||||
"序时到期数占比(%)","个车续保率(序时)(%)","个车续保率(全月)(%)",
|
||||
"环比昨日(%)","环比上月(%)","平均提前签单天数","环比")
|
||||
values (#{责任部门},#{责任人},#{机构目标值},#{到期数全月},#{序时到期数占比},
|
||||
#{个车续保率序时},#{个车续保率全月},#{环比昨日},#{环比上月},
|
||||
#{平均提前签单天数},#{环比})
|
||||
</insert>
|
||||
|
||||
<insert id="insertDepartmentAttachingRateDataToDB" parameterType="com.cpic.xim.mybatis.pojo.BIDepartmentAttachingRateRecord">
|
||||
insert into BI机构渗透率跟踪表 ( 部门,"目标值-机构",目标差距,"车险保费",
|
||||
车险保费占比,"非车保费",当月保费渗透率,保费渗透率环比上月,当月客户渗透率,
|
||||
客户渗透率环比上月,当月车非客均保费,客均保费环比上月,车险客户数)
|
||||
values (#{departmentName},#{departmentObject},#{objectGap},#{motoPremium},
|
||||
#{motoPremiumProPortion},#{nomotoPremium},#{attachingRate},#{attachingRateChange},
|
||||
#{customerHandleRate},#{customerHandleRateChange},#{premiumPerCustomer},#{premiumPerCustomerChange},
|
||||
#{motoInsuranceCustomerCount} )
|
||||
</insert>
|
||||
|
||||
<insert id="insertDepartmentRenewalRateDataToDB" parameterType="com.cpic.xim.mybatis.pojo.BIDepartmentRenewalRateRecord" >
|
||||
insert into BI机构当月个车续保率跟踪表( "责任部门","机构目标值1(%)","到期数-全月" ,"序时到期数占比(%)","个车续保率(序时)(%)",
|
||||
"个车续保率(全月)(%)","环比昨日(%)","环比上月(%)","平均提前签单天数","环比")
|
||||
values (#{责任部门},#{机构目标值},#{到期数全月},#{序时到期数占比},
|
||||
#{个车续保率序时},#{个车续保率全月},#{环比昨日},#{环比上月},
|
||||
#{平均提前签单天数},#{环比})
|
||||
</insert>
|
||||
|
||||
<select id="cleanTelsalerAttachingRateData" statementType="CALLABLE">
|
||||
call telsale_bi_utils.清理BI电销坐席车非渗透跟踪表()
|
||||
</select>
|
||||
<select id="cleanTelsalerRenewalRateData" statementType="CALLABLE">
|
||||
call telsale_bi_utils.清理BI电销坐席续保率跟踪表()
|
||||
</select>
|
||||
<select id="cleanDepartmentAttachingRateData" statementType="CALLABLE">
|
||||
call telsale_bi_utils.清理BI部门渗透率跟踪表()
|
||||
</select>
|
||||
|
||||
<select id="cleanDepartmentRenewalRateData" statementType="CALLABLE">
|
||||
call telsale_bi_utils.清理BI部门续保率跟踪表()
|
||||
</select>
|
||||
</mapper>
|
|
@ -26,6 +26,5 @@
|
|||
<mapper resource="mybatis/mapper/ArchievementMapper.xml" />
|
||||
<mapper resource="mybatis/mapper/RankingListMapper.xml" />
|
||||
<mapper resource="mybatis/mapper/RewardsMapper.xml" />
|
||||
<mapper resource="mybatis/mapper/ImportBIArchievementDataMapper.xml" />
|
||||
</mappers>
|
||||
</configuration>
|
|
@ -1,151 +0,0 @@
|
|||
/*
|
||||
* @Author: Kane
|
||||
* @Date: 2023-10-12 10:43:31
|
||||
* @LastEditors: Kane
|
||||
* @FilePath: /desktop_archievement_backend/src/test/java/com/cpic/xim/DesktopArchievement/test/BatchInsertTest.java
|
||||
* @Description:
|
||||
*
|
||||
* Copyright (c) ${2023} by Kane, All Rights Reserved.
|
||||
*/
|
||||
package com.cpic.xim.DesktopArchievement.test;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import org.apache.ibatis.exceptions.PersistenceException;
|
||||
import org.apache.ibatis.session.SqlSession;
|
||||
import org.apache.poi.openxml4j.exceptions.InvalidFormatException;
|
||||
import org.junit.Test;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import com.cpic.xim.mybatis.mapper.ImportBIArchievementDataMapper;
|
||||
import com.cpic.xim.mybatis.pojo.BIDepartmentAttachingRateRecord;
|
||||
import com.cpic.xim.mybatis.pojo.BITelsalerRenewalRateRecord;
|
||||
import com.cpic.xim.mybatis.utils.MybatisUtils;
|
||||
import com.cpic.xim.utils.data.ImportBIExcelData;
|
||||
|
||||
public class BatchInsertTest
|
||||
{
|
||||
private static Logger logger = LoggerFactory.getLogger(BatchInsertTest.class);
|
||||
@Test
|
||||
public void testBatchInsertIntoBITelsalerAttachingRate()
|
||||
{
|
||||
String filePath = "D:/develop/cpicxim/deskop_task_schedule/数据/测试用/经办 (2).xlsx";
|
||||
ArrayList<BITelsalerRenewalRateRecord> records = null;
|
||||
SqlSession session = null;
|
||||
ImportBIArchievementDataMapper mapper = null;
|
||||
|
||||
try
|
||||
{
|
||||
records = ImportBIExcelData.importBITelsalerRenewalRateFromXlsx( filePath, 0,
|
||||
1 );
|
||||
session = MybatisUtils.getSqlSessionBatch();
|
||||
mapper = session.getMapper( ImportBIArchievementDataMapper.class );
|
||||
|
||||
mapper.cleanTelsalerRenewalRateData();
|
||||
|
||||
for ( BITelsalerRenewalRateRecord record : records )
|
||||
{
|
||||
mapper.insertTelsalerRenewalRateDataToDB( record );
|
||||
}
|
||||
|
||||
session.commit();
|
||||
|
||||
assert (true);
|
||||
}
|
||||
catch ( PersistenceException error)
|
||||
{
|
||||
System.out.println(error);
|
||||
assert( false );
|
||||
}
|
||||
catch(InvalidFormatException error)
|
||||
{
|
||||
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
if ( session != null )
|
||||
{
|
||||
session.rollback();
|
||||
|
||||
assert (false);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBatchInsertBITeslsalerRenewalRate()
|
||||
{
|
||||
String filePath = "D:/develop/cpicxim/deskop_task_schedule/数据/测试用/坐席-续保.xlsx";
|
||||
ArrayList<BITelsalerRenewalRateRecord> records = null;
|
||||
SqlSession session = null;
|
||||
ImportBIArchievementDataMapper mapper = null;
|
||||
|
||||
try
|
||||
{
|
||||
session = MybatisUtils.getSqlSessionBatch();
|
||||
mapper = session.getMapper( ImportBIArchievementDataMapper.class );
|
||||
|
||||
records = ImportBIExcelData.importBITelsalerRenewalRateFromXlsx( filePath, 0, 1 );
|
||||
|
||||
// 清理数据
|
||||
mapper.cleanTelsalerRenewalRateData();
|
||||
|
||||
for ( BITelsalerRenewalRateRecord record : records )
|
||||
{
|
||||
mapper.insertTelsalerRenewalRateDataToDB( record );
|
||||
}
|
||||
|
||||
session.commit();
|
||||
|
||||
System.out.println( records );
|
||||
assert (!records.isEmpty());
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
logger.error("出现错误", error);
|
||||
assert (false);
|
||||
|
||||
if ( session != null )
|
||||
{
|
||||
session.rollback();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testBatchInsertBIDepartmentAttachingRateToDB()
|
||||
{
|
||||
String filePath = "D:/develop/cpicxim/deskop_task_schedule/数据/测试用/机构渗透.xlsx";
|
||||
|
||||
ArrayList<BIDepartmentAttachingRateRecord> records = null;
|
||||
SqlSession session = null;
|
||||
ImportBIArchievementDataMapper mapper = null;
|
||||
|
||||
try
|
||||
{
|
||||
records =
|
||||
ImportBIExcelData.importBIDepartmentAttachingRateRecordsFromXlsx( filePath, 0, 1 );
|
||||
session = MybatisUtils.getSqlSessionBatch();
|
||||
mapper = session.getMapper( ImportBIArchievementDataMapper.class );
|
||||
|
||||
mapper.cleanDepartmentAttachingRateData();
|
||||
|
||||
for ( BIDepartmentAttachingRateRecord record : records )
|
||||
{
|
||||
mapper.insertDepartmentAttachingRateDataToDB( record );
|
||||
}
|
||||
|
||||
session.commit();
|
||||
}
|
||||
catch ( Exception error )
|
||||
{
|
||||
if ( session != null )
|
||||
{
|
||||
session.rollback();
|
||||
}
|
||||
|
||||
logger.error("错误", error);
|
||||
|
||||
assert( false );
|
||||
}
|
||||
}
|
||||
}
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
数据/测试用/旧/部门.xlsx
BIN
数据/测试用/旧/部门.xlsx
Binary file not shown.
BIN
数据/测试用/机构渗透.xlsx
BIN
数据/测试用/机构渗透.xlsx
Binary file not shown.
Loading…
Reference in New Issue