Ejemplo n.º 1
0
 @RequestMapping("/provider/listNotice.do")
 public String providerlistNotice(SystemDto dto) {
   dto.setProvider(SpringHelper.getCurrentProvider().getId());
   Pagination pagination = service.queryPage(dto);
   this.getRequest().setAttribute("pagination", pagination);
   this.getRequest().setAttribute("systemDto", dto);
   return PROVIDER_PRE_JSP_PATH + "noticeList";
 }
Ejemplo n.º 2
0
 /**
  * 代理商
  *
  * @param dto
  * @return
  */
 @RequestMapping("/agency/listNotice.do")
 public String listNotice(SystemDto dto) {
   dto.setAgency(SpringHelper.getCurrentAgency().getId());
   Pagination pagination = service.queryPage(dto);
   this.getRequest().setAttribute("pagination", pagination);
   this.getRequest().setAttribute("systemDto", dto);
   return AGENCY_PRE_JSP_PATH + "noticeList";
 }
Ejemplo n.º 3
0
  /**
   * 公告详细信息
   *
   * @param dto
   * @return
   */
  @RequestMapping("/agency/viewNotice.do")
  public String viewNotice(SystemDto dto) {
    Notice notice = service.getNotice(dto.getId());
    if (!service.isReadNotice(SpringHelper.getCurrentUser(), notice)) {
      NoticeReadNote readn = new NoticeReadNote();
      readn.setNotice(notice);
      readn.setReaderId(SpringHelper.getCurrentUser().getId());
      readn.setReaderName(SpringHelper.getCurrentUser().getUserName());
      readn.setReadTime(new Date());
      service.saveNoticeReadNote(readn);
    }
    long count = ServiceLocator.getNoticeService().getUnreadCount(SpringHelper.getCurrentUser());
    this.getSession().setAttribute(Constants.REQUEST_MESSAGELINK, count);

    this.getRequest().setAttribute("notice", notice);
    return COMPANY_PRE_JSP_PATH + "noticeInfo";
  }
Ejemplo n.º 4
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.º 5
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";
 }
Ejemplo n.º 6
0
 @RequestMapping("/agent/updateAgent.do")
 public void updateAgent(HttpServletResponse response) {
   try {
     String agentval = this.getRequest().getParameter("agentState");
     Agent agent = service.getAgent(CRMHelper.getCurrentAgent().getId());
     log.debug("座席:" + agent.getPhone() + " 设置状态为:" + agentval);
     agent.setState(agentval);
     service.updateAgent(agent);
     SpringHelper.getSession().setAttribute(CRMConstants.CRM_SESSION_CURRENT_AGENT, agent);
     CallServiceClient.getInstance().notifyAgentStateChangeAsync(agent);
     if (agentval.equals(Agent.STATE_IDLE)) {
       write(response, "Bizidle");
     } else {
       write(response, "BizBusy");
     }
   } catch (Exception ex) {
     log.error(ex.getMessage(), ex);
   }
 }
Ejemplo n.º 7
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";
  }