• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
黄洪波写点东西的地方
博客园    首页    新随笔    联系   管理    订阅  订阅
根据条件设置poplist的值集

需求:在当前页面的pageButtonBar中有一个下拉选择框,选择框中的值集根据某些条件有不同。

 

public class SupplierInfoReviewCO extends OAControllerImpl
{
  public static final String RCS_ID="$Header$";
  public static final boolean RCS_ID_RECORDED =
        VersionInfo.recordClassVersion(RCS_ID, "%packagename%");
        
        
    String spacerStr = "-------------------";
    LinkedList actionListText = new LinkedList();
    LinkedList actionListValue = new LinkedList();
    
      /**
   * Layout and page setup logic for a region.
   * @param pageContext the current OA page context
   * @param webBean the web bean corresponding to the region
   */
  public void processRequest(OAPageContext pageContext, OAWebBean webBean)
  {
    super.processRequest(pageContext, webBean);
    
    populateBuyerActions(pageContext, webBean);
  }
  
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
  {
    super.processFormRequest(pageContext, webBean);
    
          Integer integer = Integer.valueOf(0);
    if (pageContext.getParameter("GoBtn") != null) {
          try {
              integer = 
                      Integer.valueOf(Integer.parseInt(pageContext.getParameter("ActionList")));
          } catch (Exception localException1) {
              integer = Integer.valueOf(-1);
          }
      }
      
    if (integer.intValue() == 210)
      {
          //your code
          
          return;
      }
      
    if (integer.intValue() == 220)
      {
          //your code
          return;
      }
  }
  
    private void populateBuyerActions(OAPageContext pageContext, OAWebBean webBean)
   {
   
    String wfStatus = pageContext.getParameter("WfStatus");
    String suppResponseStatus = pageContext.getParameter("SuppResponseStatus");
    
     addAction(this.spacerStr, -1);
     addAction(pageContext.getMessage("POS", "POS_SUPP_CANCEL_ACTN", null), 40);
     
     if("SUPP_RESPONSED".equals(suppResponseStatus)){
        addAction(pageContext.getMessage("CUX", "CUX_POST_LEADER_APPROVER", null), 210);         
     }
     
     if("PREPARATORY".equals(wfStatus)){         
         addAction(pageContext.getMessage("CUX", "CUX_CREATE_ADMIT_CATEGORY", null), 220);
         removeAction(pageContext.getMessage("CUX", "CUX_POST_LEADER_APPROVER", null), 210);         
     }
     
     
   }
   
    private void addAction(String paramString, int paramInt)
   {
     if (!this.actionListText.contains(paramString))
     {
       this.actionListText.add(paramString);
       this.actionListValue.add(Integer.toString(paramInt));
     }
   }
   
 private void removeAction(String paramString, int paramInt)
   {
     if (this.actionListText.contains(paramString))
     {
       this.actionListText.remove(paramString);
       this.actionListValue.remove(Integer.toString(paramInt));
     }
   }
  
  
}

 

posted on 2015-06-28 15:05  红无酒伤  阅读(631)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3