From 0ba51b87c662a28778fbe25bf804aa9ea85c802e Mon Sep 17 00:00:00 2001
From: luoyb <412940104@qq.com>
Date: 星期三, 03 三月 2021 02:23:29 +0800
Subject: [PATCH] feat(在职员工): 关闭档案

---
 febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/mapper/EmpBaseInfoMapper.xml |   37 ++++++++++++++++++++++++++++++++++++-
 1 files changed, 36 insertions(+), 1 deletions(-)

diff --git a/febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/mapper/EmpBaseInfoMapper.xml b/febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/mapper/EmpBaseInfoMapper.xml
index d2f02fd..6562ef3 100644
--- a/febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/mapper/EmpBaseInfoMapper.xml
+++ b/febs-server/febs-server-hr/src/main/java/cc/mrbird/febs/server/hr/mapper/EmpBaseInfoMapper.xml
@@ -151,6 +151,24 @@
         count(IF(t1.contractStatus = 1 or t1.contractStatus = 2, 1, NULL)) yxht
         FROM
         t_emp_baseinfo t INNER JOIN t_emp_contractinfo t1 on t.empId=t1.empId where 1=1 and t.delFlag=0 and t1.delFlag=0
+
+        <choose>
+            <when test="btime!=null and btime!='' and etime!=null and etime!=''">
+                and date_format(t1.signingDate,'%Y-%m-%d') &gt;= #{btime}  and date_format(t1.signingDate,'%Y-%m-%d') &lt;= #{etime}
+            </when>
+            <when test="index==0">
+                and TO_DAYS(t1.signingDate) = TO_DAYS(NOW())
+            </when>
+            <when test="index==1">
+                and YEARWEEK(date_format(t1.signingDate,'%Y-%m-%d')) = YEARWEEK(now())
+            </when>
+            <when test="index==2">
+                and date_format(t1.signingDate,'%Y-%m') = date_format(now(),'%Y-%m')
+            </when>
+            <otherwise>
+                and YEAR(t1.signingDate)=YEAR(NOW())
+            </otherwise>
+        </choose>
     </select>
 
 
@@ -671,6 +689,23 @@
             </when>
             <otherwise>
                 and (t1.contractStatus = '1' or t1.contractStatus = '2')
+                <choose>
+                    <when test="btime!='undefined' and btime!=null and btime!='' and etime!='undefined' and etime!=null and etime!=''">
+                        and date_format(t1.signingDate,'%Y-%m-%d') &gt;= #{btime}  and date_format(t1.signingDate,'%Y-%m-%d') &lt;= #{etime}
+                    </when>
+                    <when test="index==0">
+                        and TO_DAYS(t1.signingDate) = TO_DAYS(NOW())
+                    </when>
+                    <when test="index==1">
+                        and YEARWEEK(date_format(t1.signingDate,'%Y-%m-%d')) = YEARWEEK(now())
+                    </when>
+                    <when test="index==2">
+                        and date_format(t1.signingDate,'%Y-%m') = date_format(now(),'%Y-%m')
+                    </when>
+                    <otherwise>
+                        and YEAR(t1.signingDate)=YEAR(NOW())
+                    </otherwise>
+                </choose>
             </otherwise>
         </choose>
         <if test="name!= 'undefined' and name!=null and name!=''">
@@ -1017,7 +1052,7 @@
 
     <select id="empBaseInfoTgList" resultType="cc.mrbird.febs.server.hr.entity.EmpJobChange">
         SELECT
-        t1.*,t.*
+        t1.*,t.empNumb,t.deptName,t.certificateNumb
         FROM
         t_emp_baseinfo t right JOIN t_emp_jobChange t1 on t.empId=t1.empId where 1=1 and t.delFlag=0 and t1.delFlag=0
         <if test="name!= 'undefined' and name!=null and name!=''">

--
Gitblit v1.8.0