Examples of SpreadsheetService


Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 以下接口用于报表模板编辑时,增删行列后,对数据库中查询条件的维护
   * */
  public String updateReportQueryConditions()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.modifyCells(request.getParameter("template_id"),parameterMap);
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 为报表模板增加类型
   * */
  public String addType4ReportTemplate()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.addType4ReportTemplate(request.getParameter("id"),request.getParameter("report_type"));
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 报表浏览时,手动设定单元格的值
   * */
  public String addCellManualValue()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.addCellManualValue(request.getParameter("template_id"),parameterMap);
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 判断当前用户有没有在浏览态下修改该报表的权限
   * */
  public String checkCellManualValue()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.checkCellManualValue(request.getParameter("template_id"),parameterMap);
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 查询报表的权限
   * */
  public String queryReportAuthority()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.queryReportAuthority(request.getParameter("id"));
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 查询目录的权限
   * */
  public String queryCategoryAuthority()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.queryCategoryAuthority(request.getParameter("id"));
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 为报表或目录的某个操作增加权限
   * */
  public String addAuthority4ReportOrCat()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.addAuthority4ReportOrCat(request.getParameter("id"),parameterMap);
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 删除报表或目录某个操作的权限
   * */
  public String deleteAuthority4ReportOrCat()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.deleteAuthority4ReportOrCat(request.getParameter("id"),parameterMap);
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 将单元格发布
   * */
  public String releaseCell()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.addCellMeasure(request.getParameter("template_id"),parameterMap);
    }
    return SUCCESS;
  }
View Full Code Here

Examples of com.narirelays.ems.services.SpreadsheetService

  /**
   * 取消单元格发布
   * */
  public String disReleaseCell()
  {
    SpreadsheetService spreadsheetService = (SpreadsheetService)StorageService.ctx.getBean("spreadsheetService");
    if(spreadsheetService!=null)
    {
      resultInfo = spreadsheetService.deleteCellMeasure(request.getParameter("template_id"),parameterMap);
    }
    return SUCCESS;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.