OutReportResult.jsp 17.4 KB
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438
<%@ page import="java.util.*,java.math.*,java.io.*,weaver.general.Util,weaver.file.*,weaver.datacenter.*" %>
<%@ page language="java" contentType="text/html; charset=GBK" %> <%@ include file="/systeminfo/init.jsp" %>
<jsp:useBean id="rs" class="weaver.conn.RecordSet" scope="page" />
<jsp:useBean id="RecordSet" class="weaver.conn.RecordSet" scope="page" />
<jsp:useBean id="ExcelFile" class="weaver.file.ExcelFile" scope="session"/>
<jsp:useBean id="ResourceComInfo" class="weaver.hrm.resource.ResourceComInfo" scope="page" />
<jsp:useBean id="CustomerInfoComInfo" class="weaver.crm.Maint.CustomerInfoComInfo" scope="page" />

<HTML><HEAD>
<LINK href="/css/Weaver.css" type=text/css rel=STYLESHEET>
</head>

<%
String acceptlanguage = request.getHeader("Accept-Language");
if(!"".equals(acceptlanguage))
	acceptlanguage = acceptlanguage.toLowerCase();

String outrepid = Util.null2String(request.getParameter("outrepid"));
String outrepcategory = Util.null2String(request.getParameter("outrepcategory"));
String modulename = Util.null2String(request.getParameter("modulename"));
String designusername = user.getUsername() ;

// 刘煜 2004 年10月23 日增加模板文件自适应行高和列宽
String autocolumn = Util.null2String(request.getParameter("autocolumn")); //列宽
String autorow = Util.null2String(request.getParameter("autorow")); //行高

Calendar today = Calendar.getInstance();
String currentyear = Util.add0(today.get(Calendar.YEAR), 4) ;
String currentmonth = Util.add0(today.get(Calendar.MONTH) + 1, 2) ;
String currentday = Util.add0(today.get(Calendar.DAY_OF_MONTH), 2) ;
String currentdate = currentyear + " " + SystemEnv.getHtmlLabelName(445,user.getLanguage()) + " " + currentmonth + " " + SystemEnv.getHtmlLabelName(6076,user.getLanguage()) + " " + currentday + " " + SystemEnv.getHtmlLabelName(16889,user.getLanguage()) ;

// 增加用户下载权限的判断
String userid = "" + user.getUID() ;
String usertype = "" ;
if(user.getLogintype().equals("1")) usertype = "1" ;
else  usertype = "2" ;
boolean hasdownload = false ;

if(HrmUserVarify.checkUserRight("DataCenter:Maintenance", user)) hasdownload = true ;
else {
    RecordSet.executeSql(" select sharelevel from T_OutReportShare where outrepid="+outrepid + 
                         " and userid = " + userid + " and usertype = '" + usertype + "' ");
    if(RecordSet.next() && RecordSet.getInt(1)==1) hasdownload = true ;
}

// 增加用户下载权限的判断 结束

ExcelSheet es = null ;
ExcelRow er = null ;




OutReportManage OutReportManage = (OutReportManage)session.getAttribute("weaveroutreportmanager") ;
if(OutReportManage == null || !outrepcategory.equals(OutReportManage.getOutRepCategory())) {
    if( outrepcategory.equals("0") ) OutReportManage = new OutReportFixManage() ;      // 固定报表
    else if( outrepcategory.equals("1") ) OutReportManage = new OutReportStatManage() ; // 明细报表
    else if( outrepcategory.equals("2") ) OutReportManage = new OutReportOrderManage() ; // 排序报表
    session.setAttribute("weaveroutreportmanager", OutReportManage)  ;
}

if(!outrepid.equals(OutReportManage.getOutRepID())) {
    OutReportManage.init(outrepid, user) ;
}

OutReportManage.initRequest(request, user) ;
OutReportManage.initReportValue() ;
es = new ExcelSheet() ;

String outrepname = OutReportManage.getOutRepName() ;
String modulefilename = OutReportManage.getModulefilename() ;
int reportrowcount = OutReportManage.getReportRowCount() ;
int outrepcolumn = OutReportManage.getReportColumnCount() ;

if(!modulename.equals("")) outrepname += " (" + modulename + ") " ;

String yearf = OutReportManage.getYearf() ;
String monthf = OutReportManage.getMonthf() ;   
String dayf = OutReportManage.getDayf() ;  
String yeart = OutReportManage.getYeart() ;  
String montht = OutReportManage.getMontht() ;
String dayt = OutReportManage.getDayt() ;

String firstinputuser="";
String lastinputuser="";
String firstcrmname="";
String allinputuser="";
ArrayList allinputusers=new ArrayList();
String allcrmname="";
String lastinputdate="";
String firstinputdate="";
String approveuser="";
String fromdate="";
String todate="";
if(Util.getIntValue(yearf)<1){
    fromdate="1900";
}else{
    fromdate=yearf;
}
if(Util.getIntValue(monthf)<1){
    fromdate+="-01";
}else{
    fromdate+="-"+monthf;
}
if(Util.getIntValue(dayf)<1){
    fromdate+="-01";
}else{
    fromdate+="-"+dayf;
}
if(Util.getIntValue(yeart)<1){
    todate="9999";
}else{
    todate=yeart;
}
if(Util.getIntValue(montht)<1){
    todate+="-12";
}else{
    todate+="-"+montht;
}
if(Util.getIntValue(dayt)<1){
    todate+="-31";
}else{
    todate+="-"+dayt;
}
String crmids=Util.null2String(request.getParameter("crm"));
ArrayList crmidlist=Util.TokenizerString(crmids,",");
for(int i=0;i<crmidlist.size();i++){
    allcrmname+=CustomerInfoComInfo.getCustomerInfoname((String)crmidlist.get(i))+" ";
}
String sql="";
if(outrepcategory.equals("1")){
    sql="select distinct itemtable from t_reportstatitemtable where outrepid="+outrepid;
}else{
    sql="select distinct b.itemtable from t_outreportitem a,t_outreportitemtable b where a.itemid=b.itemid and a.outrepid="+outrepid;
}
RecordSet.executeSql(sql);
String inputdate="";
String inputuserid="";
String tmpcrmid="";
while(RecordSet.next()){
    String inputtablename=RecordSet.getString("itemtable");
    sql="select reportuserid,crmid,inputdate,confirmuserid from "+inputtablename+" where crmid in("+crmids+") and reportdate >='"+fromdate+"' and reportdate <='"+todate+"' order by reportdate,crmid";
    rs.executeSql(sql);
    while(rs.next()){
        inputuserid=rs.getString("reportuserid");
        tmpcrmid=rs.getString("crmid");
        approveuser=rs.getString("confirmuserid");
        inputdate=Util.null2String(rs.getString("inputdate"));
        if(allinputusers.indexOf(inputuserid)==-1){
            allinputuser+=ResourceComInfo.getResourcename(inputuserid)+" ";
            allinputusers.add(inputuserid);
        }
        if(firstinputuser.equals("") && crmidlist.size()>0 && crmidlist.get(0).equals(tmpcrmid)) firstinputuser=inputuserid;
        if(firstinputdate.equals("") && crmidlist.size()>0 && crmidlist.get(0).equals(tmpcrmid)) firstinputdate=inputdate;
        if(firstcrmname.equals("") && crmidlist.size()>0 && crmidlist.get(0).equals(tmpcrmid)) firstcrmname=CustomerInfoComInfo.getCustomerInfoname(tmpcrmid);
    }
}
lastinputdate=inputdate;
lastinputuser=inputuserid;
String firstinputusermanager=ResourceComInfo.getResourcename(ResourceComInfo.getManagerID(firstinputuser));
firstinputuser=ResourceComInfo.getResourcename(firstinputuser);
String lastinputusermanager=ResourceComInfo.getResourcename(ResourceComInfo.getManagerID(lastinputuser));
lastinputuser=ResourceComInfo.getResourcename(lastinputuser);
approveuser=ResourceComInfo.getResourcename(approveuser);
int indx=firstinputdate.indexOf("-");
if(indx>0){
    firstinputdate=firstinputdate.substring(0,indx)+"年"+firstinputdate.substring(indx+1,firstinputdate.length());
}
indx=firstinputdate.indexOf("-");
if(indx>0){
    firstinputdate=firstinputdate.substring(0,indx)+"月"+firstinputdate.substring(indx+1,firstinputdate.length());
}
if(firstinputdate.length()>0) firstinputdate+="日";
indx=lastinputdate.indexOf("-");
if(indx>0){
    lastinputdate=lastinputdate.substring(0,indx)+"年"+lastinputdate.substring(indx+1,lastinputdate.length());
}
indx=lastinputdate.indexOf("-");
if(indx>0){
    lastinputdate=lastinputdate.substring(0,indx)+"月"+lastinputdate.substring(indx+1,lastinputdate.length());
}
if(lastinputdate.length()>0) lastinputdate+="日";    

String imagefilename = "/images/hdHRM.gif";
String titlename = SystemEnv.getHtmlLabelName(15101,user.getLanguage()) + ": " + outrepname ;
String needfav ="1";
String needhelp ="";
%>
<BODY <% if( !modulefilename.equals("") ) { %>onload="return init()" onscroll="ChinaExcel.Refresh();" <%}%>>
<%@ include file="/systeminfo/TopTitle.jsp" %>
<%@ include file="/systeminfo/RightClickMenuConent.jsp" %>
<DIV style="display:none">
<BUTTON class=btn accessKey=S onClick="javascript:location.href='OutReportSel.jsp?outrepid=<%=outrepid%>'"><U>S</U>-<%=SystemEnv.getHtmlLabelName(15518,user.getLanguage())%></BUTTON>
<% if( modulefilename.equals("") && hasdownload) { // 没有插件的时候,并有下载权限,导出Excel插件来显示报表的时候不显示excel %>      
<BUTTON class=btn accessKey=E onClick="javascript:location.href='/weaver/weaver.file.ExcelOut'"><U>E</U>-Excel</BUTTON>
<% } else if (hasdownload) { // 插件的下载打印功能 %>
<BUTTON class=btn accessKey=E onClick="javascript:ChinaExcel.OnSaveAsExcelFile();"><U>E</U>-Excel</BUTTON>
<BUTTON class=btn accessKey=P onClick="javascript:ChinaExcel.OnFilePrint();"><U>P</U>-<%=SystemEnv.getHtmlLabelName(257,user.getLanguage())%></BUTTON>
<BUTTON class=btn accessKey=U onClick="javascript:ChinaExcel.OnPrintSetup();"><U>U</U>-<%=SystemEnv.getHtmlLabelName(257,user.getLanguage())%><%=SystemEnv.getHtmlLabelName(68,user.getLanguage())%></BUTTON>
<BUTTON class=btn accessKey=V onClick="javascript:ChinaExcel.OnFilePrintPreview();"><U>V</U>-<%=SystemEnv.getHtmlLabelName(221,user.getLanguage())%></BUTTON>
<% } %>
<% if(outrepcategory.equals("1") || outrepcategory.equals("2")) {%>
<BUTTON class=btn accessKey=T onClick="javascript:location.href='OutReportStat.jsp?outrepid=<%=outrepid%>&outrepcategory=<%=outrepcategory%>'"><U>T</U>-<%=SystemEnv.getHtmlLabelName(16901,user.getLanguage())%></BUTTON>
<%}%>
</DIV>
<%
RCMenu += "{"+SystemEnv.getHtmlLabelName(15518,user.getLanguage())+",javascript:location.href='OutReportSel.jsp?outrepid="+outrepid+"',_self} ";
RCMenuHeight += RCMenuHeightStep;
if( modulefilename.equals("") && hasdownload) { // 没有插件的时候,并有下载权限,导出Excel插件来显示报表的时候不显示excel
    RCMenu += "{"+SystemEnv.getHtmlLabelName(17416,user.getLanguage())+"-Excel,javascript:location.href='/weaver/weaver.file.ExcelOut',_self} ";
    RCMenuHeight += RCMenuHeightStep;
 } else if (hasdownload) { // 插件的下载打印功能
    RCMenu += "{"+SystemEnv.getHtmlLabelName(17416,user.getLanguage())+"-Excel,javascript:ChinaExcel.OnSaveAsExcelFile(),_self} ";
    RCMenuHeight += RCMenuHeightStep;
    RCMenu += "{"+SystemEnv.getHtmlLabelName(257,user.getLanguage())+",javascript:ChinaExcel.OnFilePrint(),_self} ";
    RCMenuHeight += RCMenuHeightStep;
    RCMenu += "{"+SystemEnv.getHtmlLabelName(20756,user.getLanguage())+",javascript:ChinaExcel.OnPrintSetup(),_self} ";
    RCMenuHeight += RCMenuHeightStep;
    RCMenu += "{"+SystemEnv.getHtmlLabelName(20757,user.getLanguage())+",javascript:ChinaExcel.OnFilePrintPreview(),_self} ";
    RCMenuHeight += RCMenuHeightStep;
}
if(outrepcategory.equals("1") || outrepcategory.equals("2")) {
    RCMenu += "{"+SystemEnv.getHtmlLabelName(16901,user.getLanguage())+",javascript:location.href='OutReportStat.jsp?outrepid="+outrepid+"&outrepcategory="+outrepcategory+"',_self} ";
    RCMenuHeight += RCMenuHeightStep;
}
if(!modulefilename.equals("")){
RCMenu += "{"+SystemEnv.getHtmlLabelName(18173,user.getLanguage())+",javascript:dosystemhead(),_self} ";
RCMenuHeight += RCMenuHeightStep;
}
%>
<%@ include file="/systeminfo/RightClickMenu.jsp" %>
<table width=100% height=97% border="0" cellspacing="0" cellpadding="0">
<colgroup>
<col width="10">
<col width="">
<col width="10">
<tr>
	<td height="10" colspan="3"></td>
</tr>
<tr>
<td ></td>
<td valign="top">
<TABLE class=Shadow>
<tr>
<td valign="top">
<% 
if( modulefilename.equals("") ) {   // 原来的显示方式
%>
		
    <TABLE class=liststyle cellspacing=1>
      <TBODY>
      <TR class=header>
        <TH colSpan=<%=outrepcolumn%>><%=SystemEnv.getHtmlLabelName(15101,user.getLanguage())%> :  <%=outrepname%>
        </TH>
      </TR>
      <TR class=line>
        <TD  colSpan=<%=outrepcolumn%>></TD>
      </TR>
    <% 

    boolean isLight = false;
    for(int j=1; j<reportrowcount+1 ; j++) {  // 每行
        er =es.newExcelRow () ;
        isLight = ! isLight ;
    %>
      <TR class='<%=( isLight ? "datalight" : "datadark" )%>'>
    <%                      
        for(int i= 1; i<outrepcolumn+1 ; i++) {  // 每列
            String thevalue = OutReportManage.getReportValue(j,i) ;
            boolean isdigital = false ;
            if(Util.getDoubleValue(thevalue,-9999.99) != -9999.99 && i!=1 && j!=1) {        // 是数字
                isdigital = true ;
                if(Util.getIntValue(thevalue,-9999) == -9999) {     // 不是整数
                    thevalue = "" + (new BigDecimal(thevalue)).divide ( new BigDecimal ( 1 ), 2, BigDecimal.ROUND_HALF_DOWN ).doubleValue() ;
                    er.addValue(Util.getfloatToString(thevalue)) ;
                }
                thevalue = Util.getFloatStr(Util.getfloatToString(thevalue),3) ;
            }
            else {
                String tempthevalue = thevalue ;
                thevalue = Util.StringReplace(thevalue,"&dt;&at;" , "<br>") ;
                er.addStringValue(Util.StringReplace(tempthevalue,"&dt;&at;" , ",")) ;
            }
    %>
        <TD <%if(i==1 || j==1) {%> style="BACKGROUND-COLOR:#d6d3ce" align=center <%} else if(isdigital) {%> align=right <%}%>><nobr>
            <% if(thevalue.equals("")) {%>&nbsp;<%} else {%><%=thevalue%><%}%>
        </TD>
    <%
        }   
    %>
      </TR>
    <%  
    }

    
    ExcelFile.init() ;
    ExcelFile.setFilename(outrepname) ;
    ExcelFile.addSheet(outrepname, es) ;

    %>  
     </TBODY></TABLE>
<%
} else {      // 由插件显示
 
%>

<script language=javascript src="/workflow/mode/loadmode.js"></script>
<%if(acceptlanguage.indexOf("zh-tw")>-1||acceptlanguage.indexOf("zh-hk")>-1){%>
<script language=javascript src="/workflow/mode/chinaexcelobj_tw.js"></script>
<%}else{%>
<script language=javascript src="/workflow/mode/chinaexcelobj.js"></script>
<%} %>

<% 
}
%>

</td>
</tr>
</TABLE>
</td>
<td></td>
</tr>
<tr>
	<td height="10" colspan="3"></td>
</tr>
</table>

<% if( !modulefilename.equals("") ) {%>
<SCRIPT FOR="ChinaExcel" EVENT="MouseLClick()"	LANGUAGE="JavaScript" >
    rightMenu.style.visibility="hidden";
    return false;
</SCRIPT>
<SCRIPT FOR="ChinaExcel" EVENT="MouseRClick()"	LANGUAGE="JavaScript" >
        rightMenu.style.left=ChinaExcel.offsetLeft+ChinaExcel.GetMousePosX();
        rightMenu.style.top=ChinaExcel.offsetTop+ChinaExcel.GetMousePosY();
		rightMenu.style.visibility="visible";
		return false;
</SCRIPT>
<script language=javascript>
function dosystemhead(){
    ChinaExcel.ShowHeader =!ChinaExcel.ShowHeader;
}
function init()
{
    ChinaExcel.Login("泛微软件","891e490cd34e3e33975b1b7e523e8b32","上海泛微网络技术有限公司");    
	ChinaExcel.ReadHttpTabFile("/reportModel/<%=modulefilename%>.tab");
    // ChinaExcel.SetStatFetchDataMode("OutReportXml.jsp",1);
    ChinaExcel.DesignMode = false;
    ChinaExcel.SetShowPopupMenu(false);
	ChinaExcel.SetOnlyShowTipMessage(false);
    setChinaExcelValue("ReportTitle","<%=outrepname%>");//输出模版名称
    setChinaExcelValue("ReportDesigner","<%=designusername%>");//当前登录用户名称
    setChinaExcelValue("ReportDate","<%=currentdate%>");//系统日期
    setChinaExcelValue("modulename","<%=modulename%>");//查询条件模版名称
    setChinaExcelValue("yearf","<%=yearf%>");//获得查询条件从年
    setChinaExcelValue("monthf","<%=monthf%>");//获得查询条件从月
    setChinaExcelValue("dayf","<%=dayf%>");//获得查询条件从日
    setChinaExcelValue("yeart","<%=yeart%>");//获得查询条件到年
    setChinaExcelValue("montht","<%=montht%>");//获得查询条件到月
	setChinaExcelValue("dayt","<%=dayt%>");//获得查询条件到日
    setChinaExcelValue("firstinputuser","<%=firstinputuser%>");//获得第一个填报人
    setChinaExcelValue("lastinputuser","<%=lastinputuser%>");//获得最后一个填报人
    setChinaExcelValue("allinputuser","<%=allinputuser%>");//获得所有填报人
    setChinaExcelValue("firstinputusermanager","<%=firstinputusermanager%>");//获得第一个填报人直接上级
    setChinaExcelValue("lastinputusermanager","<%=lastinputusermanager%>");//获得最后一个填报人直接上级
    setChinaExcelValue("firstcrmname","<%=firstcrmname%>");//获得查询条件第一个客户名称
    setChinaExcelValue("allcrmname","<%=allcrmname%>");//获得查询条件所有客户名称
    setChinaExcelValue("firstinputdate","<%=firstinputdate%>");//获得查询条件第一个客户的最早填报日期
    setChinaExcelValue("lastinputdate","<%=lastinputdate%>");//获得查询条件最后一个客户最后填报日期
    setChinaExcelValue("approveuser","<%=approveuser%>");//暂时不用
    ChinaExcel.SetPasteType(1);
    ChinaExcel.ReCalculate();

    <% if( autocolumn.equals("1") ) {%>
    ChinaExcel.AutoSizeCol(1,<%=outrepcolumn%>,true);
    <% } %>
    
    <% if( autorow.equals("1") ) {%>
    ChinaExcel.AutoSizeRow(1,<%=reportrowcount%>,true) ;
    <% } %>
    ChinaExcel.SetCanAutoSizeHideCols(true);
    ChinaExcel.SetProtectFormShowCursor(true);
    ChinaExcel.ShowGrid = false;
    ChinaExcel.height="100%";
    ChinaExcel.RefreshViewSize();
}

function gettotalheight(){
        var maxrow=ChinaExcel.GetMaxRow();
        var totalheight=0;
        for(var i=1;i<=maxrow;i++){
            totalheight+=ChinaExcel.GetRowSize(i,1);
        }
        return totalheight;
}
function gettotalwidth(){
        var maxcol=ChinaExcel.GetMaxCol();
        var totalwidth=0;
        for(var i=1;i<=maxcol;i++){
            totalwidth+=ChinaExcel.GetColSize(1,i);
        }
        return totalwidth;
}

function setChinaExcelValue(setKey,valueStr)
{
	TitleRow=ChinaExcel.GetCellUserStringValueRow(setKey);
	TitleCol=ChinaExcel.GetCellUserStringValueCol(setKey);	
	ChinaExcel.SetCellVal(TitleRow,TitleCol,valueStr);
	ChinaExcel.Refresh();
}

function onCbClick(szCommand)
{
	switch(szCommand.toUpperCase())
	{
		case "CMDPRINTSETUP":
			ChinaExcel.OnPrintSetup();			
			break;
		case "CMDFILEPRINT":
			ChinaExcel.OnFilePrint();			
			break;
		case "CMDFILEPRINTPREVIEW":
			ChinaExcel.OnFilePrintPreview();
			break;
		case "CMDABOUT":
			ChinaExcel.AboutBox();
			break;
	}
}

</script>

<%}%>
 
</BODY></HTML>