版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)
文檔簡介
一.登陸eHR3→人事管理,新增”員級月度考核統(tǒng)計報表”;二.主介面如下 查詢條件說明:1.產(chǎn)品處與部門兩查詢條件為2選1;2.以產(chǎn)品處進行查詢時默認為以人事行政組織中第2層級進行查詢;三.報表欄位如下(詳見附件)單位考核人數(shù)優(yōu)(15%)甲乙丙丁設(shè)定人數(shù)設(shè)定比例實際人數(shù)實際比例設(shè)定人數(shù)設(shè)定比例實際人數(shù)實際比例設(shè)定人數(shù)設(shè)定比例實際人數(shù)實際比例設(shè)定人數(shù)設(shè)定比例實際人數(shù)實際比例設(shè)定人數(shù)設(shè)定比例實際人數(shù)實際比例報表數(shù)據(jù)邏輯:1.考核人數(shù):為當前部門所有已考核完成人員總數(shù);2.設(shè)定比例:比例直接從配置表獲取;3.設(shè)定人數(shù):等於考核人數(shù)*設(shè)定比例;4.實際人數(shù):為已考核完成人員總當前等級總?cè)藬?shù);5.實際比例:等於實際人數(shù)÷考核人數(shù);附件PSM_SelectPSMEmpMonthlyReviewR_SPUSE[eHR3]GO/******Object:StoredProcedure[dbo].[PSM_SelectPSMEmpMonthlyReviewR_SP]ScriptDate:09/11/201320:03:28******/SETANSI_NULLSONGOSETQUOTED_IDENTIFIERONGO/*<Rev>1</Rev>*/--=============================================--Author:F2913108--Createdate:2013-09-11--Description:查詢月度考核數(shù)據(jù)--=============================================ALTERProcedure[dbo].[PSM_SelectPSMEmpMonthlyReviewR_SP]( @OrgQueryTypeINT=0,--0:處級1:部門 @OrgSystemIDVARCHAR(36)=NULL,--部門 @BeginDateVARCHAR(10)=NULL,--考核開始日期 @EndDateVARCHAR(10)=NULL--考核結(jié)束日期)ASBEGINSETNOCOUNTON --print@BeginDate--print@EndDateIF(ISNULL(@BeginDate,'')='')Select@BeginDate=Convert(varchar(10),GETDATE(),120)IF(ISNULL(@EndDate,'')='')Select@EndDate=Convert(varchar(10),GETDATE(),120)--printConvert(varchar(10),GETDATE(),120)--print@BeginDate--print@EndDate--returnIF(@OrgQueryType=0)--處級BEGIN SelectRowNumber,OrgSystemID,OrgName,FinalCount,cast(ROUND(FinalCount*InitRateAA,0)asint)asInitCountAA,cast(InitRateAA*100asint)asInitRateAA,SumCountAA,cast(ROUND(SumCountAA/FinalCount,2)*100asint)asSumCountAA,cast(ROUND(FinalCount*InitRateA,0)asint)asInitCountA,cast(InitRateA*100asint)asInitRateA,SumCountA,cast(ROUND(SumCountA/FinalCount,2)*100asint)asSumCountA,cast(ROUND(FinalCount*InitRateB,0)asint)asInitCountB,cast(InitRateB*100asint)asInitRateB,SumCountB,cast(ROUND(SumCountB/FinalCount,2)*100asint)asSumCountB,cast(ROUND(FinalCount*InitRateC,0)asint)asInitCountC,cast(InitRateC*100asint)asInitRateC,SumCountC,cast(ROUND(SumCountC/FinalCount,2)*100asint)asSumCountC,cast(ROUND(FinalCount*InitRateD,0)asint)asInitCountD,cast(InitRateD*100asint)asInitRateD,SumCountD,cast(ROUND(SumCountD/FinalCount,2)*100asint)asSumCountDfrom(SELECTROW_NUMBER()OVER(ORDERBYOrgName)ASRowNumber,OrgSystemID,OrgName,[0]asSumCountAA,[1]asSumCountA,[2]asSumCountB,[3]asSumCountC,[4]asSumCountD,--(ISNULL([0],0)+ISNULL([1],0)+ISNULL([2],0)+ISNULL([3],0)+ISNULL([4],0))*10ASFinalCountISNULL([0],0)+ISNULL([1],0)+ISNULL([2],0)+ISNULL([3],0)+ISNULL([4],0)ASFinalCount,InitRateAA,InitRateA,InitRateB,InitRateC,InitRateDFROM(selectm.OrgSystemID,m.OrgName,m.SsessmentResult,COUNT(*)asSumCount,m.InitRateAA,m.InitRateA,m.InitRateB,m.InitRateC,m.InitRateDfrom(---Selectm1.OrgSystemID,m1.OrgName,m1.SsessmentResult,r.year,r.[0]asInitRateAA,r.[1]asInitRateA,r.[2]asInitRateB,r.[3]asInitRateC,r.[4]asInitRateDfromPSMEmpMonthlyReviewT(NOLOCK)m1leftJOIN(SELECT*FROM(Selectg.EmpRateGroupID,g.year,s.Value,R.RateFromPAMEmpRateGroupM(NOLOCK)gleftjoinPAMEmpScoreRateM(NOLOCK)rong.EmpRateGroupID=r.EmpRateGroupIDleftjoin(SelectValue,helpervaluefromE9Option(NOLOCK)wheretablename='PSMEmpMonthlyReviewT'andColName='SsessmentResult')assonr.EmpScoreRateName=s.helpervaluewhereg.GroupType=1)ASBPIVOT(MAX(Rate)FORvalueIN([0],[1],[2],[3],[4]))ASpvt)ASronSubstring(Convert(varchar(10),m1.CreateDt,120),1,4)=CONVERT(varchar(4),r.year) where ----比較組織 m1.OrgSystemIDin( SelectOrgSystemIDFromPSOrgTwhereparentDept= (SelectorgSystemIDfromPSOrgTwhereorgType=0andparentDeptisnullandorgCode='CMMSG')) --andISNULL(m1.SsessmentResult,'')<>'' andConvert(varchar(10),m1.CreateDt,120)>=@BeginDate andConvert(varchar(10),m1.CreateDt,120)<=@EndDate ---)mleftjoin(SelectValue,helpervaluefromE9Optionwheretablename='PSMEmpMonthlyReviewT'andColName='SsessmentResult')assONm.SsessmentResult=s.ValueGroupbym.OrgSystemID,m.OrgName,m.SsessmentResult,helpervalue,m.InitRateAA,m.InitRateA,m.InitRateB,m.InitRateC,m.InitRateD)ASBPIVOT(MAX(SumCount)FORSsessmentResultIN([0],[1],[2],[3],[4]))ASpvt)s ENDIF(@OrgQueryType=1)--部門BEGIN WITHorg(parentdept,orgsystemid)AS ( SELECTparentdept, orgsystemid FROMPSOrgT(NOLOCK) WHEREisAble=1 ANDorgType=0 and(ISNULL(@OrgSystemID,'')=''ORorgsystemid=@OrgSystemID) ANDclientID=0 UNIONALL SELECTe.parentdept, systemid FROMPSOrgTe INNERJOINorgd ONe.parentdept=systemid ANDe.isAble=1 WHEREclientID=0 ) SELECTorgsystemidinto#tempFROMorg select*from#temp --return ----------------- SelectRowNumber,OrgSystemID,OrgName,FinalCount,cast(ROUND(FinalCount*InitRateAA,0)asint)asInitCountAA,cast(InitRateAA*100asint)asInitRateAA,SumCountAA,cast(ROUND(SumCountAA/FinalCount,2)*100asint)asSumCountAA,cast(ROUND(FinalCount*InitRateA,0)asint)asInitCountA,cast(InitRateA*100asint)asInitRateA,SumCountA,cast(ROUND(SumCountA/FinalCount,2)*100asint)asSumCountA,cast(ROUND(FinalCount*InitRateB,0)asint)asInitCountB,cast(InitRateB*100asint)asInitRateB,SumCountB,cast(ROUND(SumCountB/FinalCount,2)*100asint)asSumCountB,cast(ROUND(FinalCount*InitRateC,0)asint)asInitCountC,cast(InitRateC*100asint)asInitRateC,SumCountC,cast(ROUND(SumCountC/FinalCount,2)*100asint)asSumCountC,cast(ROUND(FinalCount*InitRateD,0)asint)asInitCountD,cast(InitRateD*100asint)asInitRateD,SumCountD,cast(ROUND(SumCountD/FinalCount,2)*100asint)asSumCountDfrom(SELECTROW_NUMBER()OVER(ORDERBYOrgName)ASRowNumber,OrgSystemID,OrgName,[0]asSumCountAA,[1]asSumCountA,[2]asSumCountB,[3]asSumCountC,[4]asSumCountD,--(ISNULL([0],0)+ISNULL([1],0)+ISNULL([2],0)+ISNULL([3],0)+ISNULL([4],0))*10ASFinalCountISNULL([0],0)+ISNULL([1],0)+ISNULL([2],0)+ISNULL([3],0)+ISNULL([4],0)ASFinalCount,InitRateAA,InitRateA,InitRateB,InitRateC,InitRateDFROM(selectm.OrgSystemID,m.OrgName,m.SsessmentResult,COUNT(*)asSumCount,m.InitRateAA,m.InitRateA,m.InitRateB,m.InitRateC,m.InitRateDfrom(---Selectm1.OrgSystemID,m1.OrgName,m1.SsessmentResult,r.year,r.[0]asInitRateAA,r.[1]asInitRateA,r.[2]asInitRateB,r.[3]asInitRateC,r.[4]asInitRateDfromPSMEmpMonthlyReviewT(NOLOCK)m1leftJOIN(SELECT*FROM(Selectg.EmpRateGroupID,g.year,s.Value,R.RateFromPAMEmpRateGroupM(NOLOCK)gleftjoinPAMEmpScoreRateM(NOLOCK)rong.EmpRateGroupID=r.EmpRateGroupIDleftjoin(SelectValue,helpervaluefromE9Option(NOLOCK)wheretablename='PSMEmpMonthlyReviewT'andColName='SsessmentResult')assonr.EmpScoreRateName=s.helpervaluewhereg.GroupType=1)ASBPIVOT(MAX(Rate)FOR
溫馨提示
- 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
- 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
- 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
- 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
- 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責。
- 6. 下載文件中如有侵權(quán)或不適當內(nèi)容,請與我們聯(lián)系,我們立即糾正。
- 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 2025年中國銀行保險行業(yè)市場前景預(yù)測及投資戰(zhàn)略研究報告
- 2025年行政事業(yè)單位物業(yè)設(shè)備采購與安裝合同2篇
- 2025年浙江新北園區(qū)開發(fā)有限公司招聘筆試參考題庫含答案解析
- 2025年福建東南設(shè)計集團有限公司招聘筆試參考題庫含答案解析
- 二零二五年度二零二五健康養(yǎng)生產(chǎn)品銷售代理合同4篇
- 2025年山西晉沃投資發(fā)展有限公司招聘筆試參考題庫含答案解析
- 2025年廣西合山市儲備糧管理公司招聘筆試參考題庫含答案解析
- 2025年合肥肥西縣鄉(xiāng)村振興投資集團有限公司子公司招聘筆試參考題庫附帶答案詳解
- 《藥品銷售專業(yè)人士高級培訓(xùn)課件》
- 二零二五年度門窗玻璃深加工合作協(xié)議2篇
- 高考對聯(lián)題(對聯(lián)知識、高考真題及答案、對應(yīng)練習(xí)題)
- 新版《鐵道概論》考試復(fù)習(xí)試題庫(含答案)
- 【律師承辦案件費用清單】(計時收費)模板
- 高中物理競賽真題分類匯編 4 光學(xué) (學(xué)生版+解析版50題)
- Unit1FestivalsandCelebrations詞匯清單高中英語人教版
- 西方經(jīng)濟學(xué)-高鴻業(yè)-筆記
- 2024年上海市中考語文試題卷(含答案)
- 幼兒園美術(shù)教育研究策略國內(nèi)外
- 生豬養(yǎng)殖生產(chǎn)過程信息化與數(shù)字化管理
- (完整)六年級數(shù)學(xué)上冊寒假每天10道計算題5道應(yīng)用題
- (2024年)版ISO9001質(zhì)量管理體系培訓(xùn)教材
評論
0/150
提交評論