/**
* @see de.willuhn.jameica.gui.AbstractView#bind()
*/
public void bind() throws Exception
{
final SammelUeberweisungControl control = new SammelUeberweisungControl(this);
this.transfer = control.getTransfer();
GUI.getView().setTitle(i18n.tr("Sammel-�berweisung bearbeiten"));
GUI.getView().addPanelButton(new PanelButtonPrint(new PrintSupportSammelUeberweisung(transfer)));
Container group = new SimpleContainer(getParent());
group.addHeadline(i18n.tr("Eigenschaften"));
group.addLabelPair(i18n.tr("Zu belastendes Konto"),control.getKontoAuswahl());
group.addLabelPair(i18n.tr("Bezeichnung"),control.getName());
group.addInput(control.getTermin());
group.addInput(control.getReminderInterval());
group.addSeparator();
group.addLabelPair(i18n.tr("Summe der Buchungen"),control.getSumme());
ButtonArea buttons = new ButtonArea();
buttons.addButton(i18n.tr("Sammelauftrag l�schen"),new Action() {
public void handleAction(Object context) throws ApplicationException
{
new DBObjectDelete().handleAction(context);
try
{
// Buchungen aus der Liste entfernen, wenn der Auftrag geloescht wurde
if (transfer.getID() == null)
control.getBuchungen().removeAll();
}
catch (RemoteException re)
{
Logger.error("unable to remove bookings",re);
}
}
},control.getTransfer(),false,"user-trash-full.png");
Button store = new Button(i18n.tr("Speichern"),new Action() {
public void handleAction(Object context) throws ApplicationException {
control.handleStore();
}
},null,!transfer.ausgefuehrt(),"document-save.png");
store.setEnabled(!transfer.ausgefuehrt());
buttons.addButton(store);
buttons.paint(getParent());
new Headline(getParent(),i18n.tr("Enthaltene Buchungen"));
control.getBuchungen().paint(getParent());
Application.getMessagingFactory().registerMessageConsumer(this.mc);
}