Package org.projectforge.fibu.kost.reporting

Examples of org.projectforge.fibu.kost.reporting.ReportGeneratorList


  }

  public GroovyResult execute(final ScriptDO script, final List<ScriptParameter> parameters)
  {
    hasLoggedInUserSelectAccess(script, true);
    final ReportGeneratorList reportGeneratorList = new ReportGeneratorList();
    final Map<String, Object> scriptVariables = new HashMap<String, Object>();

    addScriptVariables(scriptVariables);
    addAliasForDeprecatedScriptVariables(scriptVariables);
    scriptVariables.put("reportList", reportGeneratorList);
View Full Code Here


  protected void execute()
  {
    accessChecker.checkIsLoggedInUserMemberOfGroup(ProjectForgeGroup.FINANCE_GROUP, ProjectForgeGroup.CONTROLLING_GROUP);
    accessChecker.checkRestrictedOrDemoUser();
    imageResultContainer.setVisible(false);
    ReportGeneratorList reportGeneratorList = new ReportGeneratorList();
    initScriptVariables();
    scriptVariables.put("reportStorage", getReportStorage());
    scriptVariables.put("reportScriptingStorage", getReportScriptingStorage());
    scriptVariables.put("reportList", reportGeneratorList);
    if (StringUtils.isNotBlank(getReportScriptingStorage().getGroovyScript()) == true) {
View Full Code Here

TOP

Related Classes of org.projectforge.fibu.kost.reporting.ReportGeneratorList

Copyright © 2018 www.massapicom. 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.