Ejemplo n.º 1
0
 /**
  * @MethodDescribe 方法描述 根据系统模块中对应的模块是否支持分类属性跳转到新增供应页面
  *
  * @author 创建人 林俊钦
  * @date 创建日期 Oct 21, 2011 11:14:29 AM
  */
 public String cate() throws Exception {
   // 找出参数类型
   Map paramap = new HashMap();
   paramap.put("para_code", para_code);
   commparalist = commparaService.getList(paramap);
   Map unitMap = new HashMap();
   unitMap.put("para_code", "unit");
   unitList = commparaService.getList(unitMap);
   // 获取所属模块名是否支持分类属性
   sysmodule = this.sysmoduleService.get("buy");
   if (sysmodule != null && "0".equals(sysmodule.getIs_catattr())) {
     if (cat_attr == null || cat_attr.equals("0")) {
       return goUrl("cate");
     }
     checkIsAttr();
   }
   // 操作者为会员则默认加入搜索条件
   if (this.session_cust_type.equals(Constants.MEMBER_TYPE)) {
     Member mem = this.memberService.get(this.session_cust_id);
     if (mem != null && mem.getArea_attr() != null) {
       backArea(mem.getArea_attr());
     }
     // 发布信息数量控制
     controlInfoNum();
   }
   return goUrl(ADD);
 }
Ejemplo n.º 2
0
 // 获取参数列表
 public void getCommparalists() {
   Map map = new HashMap();
   map.put("para_code", para_code);
   commparalist = commparaService.getList(map);
 }