Examples of InvoicesExcelExport


Examples of org.projectforge.fibu.InvoicesExcelExport

       * @see org.projectforge.export.DOListExcelExporter#onBeforeExcelDownload(org.projectforge.export.MyExcelExporter)
       */
      @Override
      public void onBeforeDownload()
      {
        final InvoicesExcelExport invoicesExport = new InvoicesExcelExport();
        forecast = getForecast();
        final LiquidityForecastCashFlow cashFlow = new LiquidityForecastCashFlow(forecast);
        cashFlow.addAsExcelSheet(this, getString("plugins.liquidityplanning.forecast.cashflow"));
        final ExportSheet sheet = addSheet(getString("filter.all"));
        addList(sheet, forecast.getEntries());
        sheet.getPoiSheet().setAutoFilter(org.apache.poi.ss.util.CellRangeAddress.valueOf("A1:F1"));
        invoicesExport.addDebitorInvoicesSheet(this, getString("fibu.rechnungen"), forecast.getInvoices());
        invoicesExport.addCreditorInvoicesSheet(this, getString("fibu.eingangsrechnungen"), forecast.getCreditorInvoices());
      }
    };
  }
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.