Ejemplo n.º 1
0
  @RequestMapping("/index.do")
  public String index() {
    Company company = SpringHelper.getCurrentCompany();
    if (company == null) {
      throw new ADEException("只有公司身份才能使用考勤系统!");
    }
    User user = ServiceLocator.getUserService().getUser(SpringHelper.getCurrentUser().getId());
    Hibernate.initialize(user.getPrincipleDepts());
    this.getSession().setAttribute(Constants.SESSION_CURRENT_USER, user);
    List<Role> roleList = user.getAllRole(ADEConstants.SUBSYSTEM_DEFINITION_ADE);

    this.getSession().setAttribute(ADEConstants.ADE_SESSION_ROLELIST, roleList);
    this.getSession().setAttribute("subsystem", ADEConstants.SUBSYSTEM_DEFINITION_ADE);
    //		viewMenuAction();
    //		return ADEConstants.ADE_JSP_ROOT + "index";
    return "forward:/" + ADEConstants.SUBSYSTEM_DEFINITION_ADE + "/listClazzes.do";
  }
Ejemplo n.º 2
0
  @RequestMapping("/agent/smsList.do")
  public String smsListAction(SmsDto dto) {
    User user = SpringHelper.getCurrentUser();
    List<User> list = securityService.getAccessUsers(user, CRMHelper.isCurrentUserManager());
    if (StringUtils.isEmpty(dto.getProcessor())) {
      if (list.size() > 1) {
        StringBuilder sb = new StringBuilder();
        for (int i = 0; i < list.size(); i++) {
          sb.append("'").append(list.get(i).getId()).append("',");
        }
        dto.setProcessor(sb.substring(0, sb.length() - 1));
      } else {
        dto.setProcessor(user.getId());
      }
    }

    Pagination pagination = service.querySMS(dto);
    this.getRequest().setAttribute("userlist", list);
    this.getRequest().setAttribute("pagination", pagination);
    this.getRequest().setAttribute("dto", dto);
    return CRMConstants.CRM_JSP_ROOT + "/call/smsList";
  }
Ejemplo n.º 3
0
 // 已拨电话清单
 @RequestMapping("/agent/listCallHis.do")
 public String listCallHisAction(AgentCallHisDto dto) {
   //		Agent agent = Struts2Helper.getCurrentAgent();
   //		if (agent != null) {
   //			dto.setAgentId(agent.getId());
   //		}
   Company c = SpringHelper.getCurrentCompany();
   if (c != null) {
     dto.setCompanyId(c.getId());
   }
   User user = SpringHelper.getCurrentUser();
   List<User> list = null;
   if (StringUtils.isEmpty(dto.getDeptId())) {
     list = CRMHelper.getAccessAgentUsers(user, CRMHelper.isCurrentUserManager());
     // 有部门
   } else {
     Dept dept = ServiceLocator.getDeptService().getDept(dto.getDeptId());
     list = dept.getAvailableUsers();
   }
   if (StringUtils.isEmpty(dto.getProcessor())) {
     if (list.size() > 1) {
       StringBuilder sb = new StringBuilder();
       for (int i = 0; i < list.size(); i++) {
         sb.append("'").append(list.get(i).getId()).append("',");
       }
       dto.setProcessor(sb.substring(0, sb.length() - 1));
     } else {
       dto.setProcessor(user.getId());
     }
   }
   this.getRequest()
       .setAttribute("isManager", securityService.hasRole(Role.ROLE_CODE_CRM_MANAGER));
   this.getRequest().setAttribute("userlist", list);
   Pagination pagination = service.queryPage(dto);
   this.getRequest().setAttribute("pagination", pagination);
   this.getRequest().setAttribute("dto", dto);
   return CRMConstants.CRM_JSP_ROOT + "call/callList";
 }