service/src/main/java/org/apache/fineract/cn/reporting/service/internal/specification/CustomerListReportSpecification.java [87:100]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    reportDefinition.setQueryParameters(this.buildQueryParameters());
    reportDefinition.setDisplayableFields(this.buildDisplayableFields());
    return reportDefinition;
  }

  @Override
  public ReportPage generateReport(final ReportRequest reportRequest, final int pageIndex, final int size) {
    final ReportDefinition reportDefinition = this.getReportDefinition();
    this.logger.info("Generating report {0}.", reportDefinition.getIdentifier());

    final ReportPage reportPage = new ReportPage();
    reportPage.setName(reportDefinition.getName());
    reportPage.setDescription(reportDefinition.getDescription());
    reportPage.setHeader(this.createHeader(reportRequest.getDisplayableFields()));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



service/src/main/java/org/apache/fineract/cn/reporting/service/internal/specification/OfficeListReportSpecification.java [85:98]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
        reportDefinition.setQueryParameters(this.buildQueryParameters());
        reportDefinition.setDisplayableFields(this.buildDisplayableFields());
        return reportDefinition;
    }

    @Override
    public ReportPage generateReport(final ReportRequest reportRequest, final int pageIndex, final int size) {
        final ReportDefinition reportDefinition = this.getReportDefinition();
        this.logger.info("Generating report {0}.", reportDefinition.getIdentifier());

        final ReportPage reportPage = new ReportPage();
        reportPage.setName(reportDefinition.getName());
        reportPage.setDescription(reportDefinition.getDescription());
        reportPage.setHeader(this.createHeader(reportRequest.getDisplayableFields()));
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



