/**********************************************************************
* $Source: /cvsroot/hibiscus/hibiscus/src/de/willuhn/jameica/hbci/io/UmsatzTreeCompleteExporter.java,v $
* $Revision: 1.6 $
* $Date: 2011/06/07 10:07:50 $
* $Author: willuhn $
* $Locker: $
* $State: Exp $
*
* Copyright (c) by Heiner Jostkleigrewe
* All rights reserved
*
**********************************************************************/
package de.willuhn.jameica.hbci.io;
import java.io.OutputStream;
import java.rmi.RemoteException;
import java.util.List;
import com.itextpdf.text.BaseColor;
import com.itextpdf.text.Element;
import com.itextpdf.text.pdf.PdfPCell;
import de.willuhn.jameica.hbci.HBCI;
import de.willuhn.jameica.hbci.rmi.Umsatz;
import de.willuhn.jameica.hbci.server.UmsatzTreeNode;
import de.willuhn.jameica.hbci.server.VerwendungszweckUtil;
import de.willuhn.logging.Logger;
import de.willuhn.util.ApplicationException;
import de.willuhn.util.ProgressMonitor;
/**
* Exporter fuer einen Tree von Umsaetzen im PDF-Format.
* Hierbei werden alle Kategorien samt deren Umsaetzen exportiert.
*/
public class UmsatzTreeCompleteExporter extends AbstractUmsatzTreeExporter
{
/**
* @see de.willuhn.jameica.hbci.io.Exporter#doExport(java.lang.Object[], de.willuhn.jameica.hbci.io.IOFormat, java.io.OutputStream, de.willuhn.util.ProgressMonitor)
*/
public void doExport(Object[] objects, IOFormat format, OutputStream os, ProgressMonitor monitor) throws RemoteException, ApplicationException
{
if (objects == null || !(objects instanceof UmsatzTree[]))
throw new ApplicationException(i18n.tr("Bitte w�hlen Sie die zu exportierenden Ums�tze aus"));
UmsatzTree[] t = (UmsatzTree[]) objects;
if (t.length == 0)
throw new ApplicationException(i18n.tr("Bitte w�hlen Sie die zu exportierenden Ums�tze aus"));
UmsatzTree tree = t[0];
List list = tree.getUmsatzTree();
Reporter reporter = null;
try
{
reporter = new Reporter(os, monitor, i18n.tr("Umsatzkategorien"), this.getSubTitle(tree), list.size());
reporter.addHeaderColumn(i18n.tr("Valuta / Buchungsdatum"), Element.ALIGN_CENTER, 30,BaseColor.LIGHT_GRAY);
reporter.addHeaderColumn(i18n.tr("Empf�nger/Einzahler"), Element.ALIGN_CENTER, 100,BaseColor.LIGHT_GRAY);
reporter.addHeaderColumn(i18n.tr("Zahlungsgrund"), Element.ALIGN_CENTER, 120,BaseColor.LIGHT_GRAY);
reporter.addHeaderColumn(i18n.tr("Betrag"), Element.ALIGN_CENTER, 30,BaseColor.LIGHT_GRAY);
reporter.createHeader();
// Iteration ueber Umsaetze
for (int i=0;i<list.size(); ++i)
{
renderNode(reporter,(UmsatzTreeNode) list.get(i));
reporter.setNextRecord();
}
if (monitor != null) monitor.setStatus(ProgressMonitor.STATUS_DONE);
}
catch (Exception e)
{
if (monitor != null) monitor.setStatus(ProgressMonitor.STATUS_ERROR);
Logger.error("error while creating report", e);
throw new ApplicationException(i18n.tr("Fehler beim Erzeugen der Auswertung: {0}",e.getMessage()), e);
}
finally
{
if (reporter != null)
{
try
{
reporter.close();
}
catch (Exception e)
{
Logger.error("unable to close report",e);
}
}
}
}
/**
* Rendert eine einzelne Kategorie sammt der Umsaetze.
* @param reporter der Reporter.
* @param node der Knoten mit evtl vorhanden Unterkategorien und Umsaetzen.
* @throws Exception
*/
private void renderNode(Reporter reporter, UmsatzTreeNode node) throws Exception
{
List<Umsatz> umsaetze = node.getUmsaetze();
// Wir rendern die Gruppe nur, wenn was drin steht. Andernfalls suchen
// wir nur in den Kind-Gruppen weiter.
if (umsaetze.size() > 0)
{
PdfPCell cell = reporter.getDetailCell(null, Element.ALIGN_LEFT);
cell.setColspan(4);
reporter.addColumn(cell);
cell = reporter.getDetailCell((String) node.getAttribute("name"),Element.ALIGN_LEFT, BaseColor.LIGHT_GRAY);
cell.setColspan(4);
reporter.addColumn(cell);
for (int i=0;i<umsaetze.size();++i)
{
Umsatz u = umsaetze.get(i);
reporter.addColumn(reporter.getDetailCell(
(u.getValuta() != null ? HBCI.DATEFORMAT.format(u.getValuta()) : "")
+ "\n"
+ (u.getDatum() != null ? HBCI.DATEFORMAT.format(u.getDatum()) : ""), Element.ALIGN_LEFT));
reporter.addColumn(reporter.getDetailCell(reporter.notNull(u.getGegenkontoName())
+ "\n" + reporter.notNull(u.getArt()), Element.ALIGN_LEFT));
reporter.addColumn(reporter.getDetailCell(VerwendungszweckUtil.toString(u,"\n"), Element.ALIGN_LEFT));
reporter.addColumn(reporter.getDetailCell(u.getBetrag()));
}
reporter.addColumn(reporter.getDetailCell(null, Element.ALIGN_LEFT));
reporter.addColumn(reporter.getDetailCell(i18n.tr("Summe {0}",(String) node.getAttribute("name")), Element.ALIGN_LEFT));
reporter.addColumn(reporter.getDetailCell(null, Element.ALIGN_LEFT));
reporter.addColumn(reporter.getDetailCell((Double) node.getAttribute("betrag")));
}
// Ggf. vorhandene Unter-Kategorien rendern.
List<UmsatzTreeNode> children = node.getSubGroups();
for (int i=0;i<children.size();++i)
{
renderNode(reporter,children.get(i));
}
}
/**
* @see de.willuhn.jameica.hbci.io.IO#getName()
*/
public String getName()
{
return i18n.tr("PDF-Format: Ums�tze der Kategorien");
}
}