cndavy

导航

 

   <p:column  headerText="跳转">
                             <h:outputLink value="ProcessManage.xhtml">
                                 <f:param name="projectnum" value="#{pro.processproject}" />
                                 <h:outputText value=" 跳转到进度管理" />
                             </h:outputLink>
                             </p:column>

 

   HttpServletRequest request = (HttpServletRequest) FacesContext.getCurrentInstance().getExternalContext().getRequest();
       String[] projectnumS=request.getParameterMap().get("projectnum")   ;
       if (projectnumS==null||projectnumS.length==0)
        projectList=crService.selectProject(this.operid,this.branchid) ;
       else {
           projectList=crService.selectProject(this.operid,this.branchid,projectnumS) ;
       }

posted on 2012-03-29 11:29  cndavy  阅读(321)  评论(0编辑  收藏  举报