* @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());
}
};
}