Examples of KontoAuswahlDialog


Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

      if (context != null && context instanceof de.willuhn.jameica.hbci.rmi.Konto)
        konto = (de.willuhn.jameica.hbci.rmi.Konto) context;
     
      if (konto == null)
      {
        KontoAuswahlDialog d = new KontoAuswahlDialog(KontoAuswahlDialog.POSITION_CENTER);
        d.setText(i18n.tr("Bitte w�hlen Sie das zu verwendende Konto aus."));
        konto = (de.willuhn.jameica.hbci.rmi.Konto) d.open();
      }
      // Wir erzeugen das HBCI4Java-Umsatz-Objekt selbst. Dann muessen wir
      // an der eigentlichen Parser-Routine nichts mehr aendern.
      GVRKUms umsaetze = new MyGVRKUms();
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

            if (u.getKonto() == null)
            {
              if (konto == null)
              {
                // Wir haben noch kein Konto - dann den User fragen
                KontoAuswahlDialog d = new KontoAuswahlDialog(KontoAuswahlDialog.POSITION_CENTER);
                d.setText(i18n.tr("Bitte w�hlen Sie das zu verwendende Konto aus."));
                konto = (Konto) d.open();
              }
              u.setKonto(konto);
            }
          }
          catch (OperationCanceledException oce)
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

          k = ((SynchronizeJob)o).getKonto();
       
        // Konto erfragen
        if (k == null)
        {
          KontoAuswahlDialog d1 = new KontoAuswahlDialog(null,KontoFilter.SYNCED,KontoAuswahlDialog.POSITION_CENTER);
          d1.setText(i18n.tr("Bitte w�hlen Sie das Konto, f�r welches Sie die " +
                             "Synchronisierungsoptionen �ndern m�chten."));
          k = (Konto) d1.open();
        }
       
        if (k == null)
          return;
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

    // Nichts gefunden. Dann fragen wir den User
    if (k == null)
    {
      // Das Konto existiert nicht im Hibiscus-Datenbestand. Also soll der
      // User eines auswaehlen
      KontoAuswahlDialog d = new KontoAuswahlDialog(KontoAuswahlDialog.POSITION_CENTER);
      d.setText(i18n.tr("Konto {0} [BLZ {1}] nicht gefunden\n" +
                        "Bitte w�hlen Sie das zu verwendende Konto aus.",
                        new String[]{kontonummer == null || kontonummer.length() == 0 ? i18n.tr("<unbekannt>") : kontonummer,blz}));

      try
      {
        k = (Konto) d.open();
      }
      catch (OperationCanceledException oce)
      {
        throw new ApplicationException(i18n.tr("Auftrag wird �bersprungen"));
      }
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

    try
    {
      if (context == null)
      {
        // Immer noch kein Konto? Dann User fragen
        KontoAuswahlDialog d = new KontoAuswahlDialog(KontoAuswahlDialog.POSITION_CENTER);
        d.setText(i18n.tr("Bitte w�hlen Sie das Konto, in dem die Ums�tze gespeichert werden sollen"));
        context = (Konto) d.open();
      }

      ImportDialog d = new ImportDialog((Konto) context, Umsatz.class);
      d.open();
    }
    catch (OperationCanceledException oce)
    {
      Logger.info(oce.getMessage());
      return;
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

    // Nichts gefunden. Dann fragen wir den User
    if (k == null)
    {
      // Das Konto existiert nicht im Hibiscus-Datenbestand. Also soll der
      // User eines auswaehlen
      KontoAuswahlDialog d = new KontoAuswahlDialog(null,KontoFilter.FOREIGN,KontoAuswahlDialog.POSITION_CENTER);
      d.setText(i18n.tr("Konto {0} nicht gefunden\n" +
                        "Bitte w�hlen Sie das zu verwendende Konto aus.",iban == null || iban.length() == 0 ? i18n.tr("<unbekannt>") : iban));

      try
      {
        k = (Konto) d.open();
      }
      catch (OperationCanceledException oce)
      {
        throw new ApplicationException(i18n.tr("Auftrag wird �bersprungen"));
      }
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

  public void handleAction(Object context) throws ApplicationException
  {
    if (!(context instanceof Konto))
    {
      // 1) Wir zeigen einen Dialog an, in dem der User das Konto auswaehlt
      KontoAuswahlDialog d = new KontoAuswahlDialog(null,KontoFilter.FOREIGN,KontoAuswahlDialog.POSITION_CENTER);
      try
      {
        context = d.open();
      }
      catch (OperationCanceledException oce)
      {
        Logger.info("operation cancelled");
        return;
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

    // Wir haben unterschiedliche Konten. Die Auftraege koennen aber nur einem Konto zugeordnet sein.
    // Wir fragen daher den User.
    Konto konto = null;
    if (ids.size() > 1)
    {
      KontoAuswahlDialog d = new KontoAuswahlDialog(null,KontoFilter.FOREIGN,KontoAuswahlDialog.POSITION_CENTER);
      d.setText(i18n.tr("Die Auftr�ge sind unterschiedlichen Konten zugeordnet.\n" +
                        "Eine SEPA XML-Datei kann jedoch nur Auftr�ge eines Kontos enthalten.\n\n" +
                        "Bitte w�hlen Sie das Konto, dem die Auftr�ge in der XML-Datei\n" +
                        "zugeordnet werden sollen"));
      konto = (Konto) d.open();
    }
    else
    {
      konto = this.getKonto(objects[0]); // Ansonsten das Konto des ersten Objektes
    }
   
   
    JobContext ctx = new JobContext();
    this.jobs.put(os,ctx); // dem Stream zuordnen
   
    // User nach der SEPA-Version fragen, die verwendet werden soll.
    PainVersionDialog d = new PainVersionDialog(this.getPainType());
    PainVersion version = (PainVersion) d.open();
    ctx.version = version;

    // Header-Infos zuweisen
    ctx.props.setProperty("src.bic",    StringUtils.trimToEmpty(konto.getBic()));
    ctx.props.setProperty("src.iban",   StringUtils.trimToEmpty(konto.getIban()));
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

      Konto konto = null;
      try
      {
        // Wir fragen das Konto grundsaetzlich manuell ab. Siehe BUGZILLA 700
        KontoAuswahlDialog d = new KontoAuswahlDialog(KontoAuswahlDialog.POSITION_CENTER);
        konto = (Konto) d.open();
      }
      catch (OperationCanceledException oce)
      {
        Logger.info("import cancelled");
        return;
View Full Code Here

Examples of de.willuhn.jameica.hbci.gui.dialogs.KontoAuswahlDialog

      else
      {
        try
        {
          // Wir fragen das Konto grundsaetzlich manuell ab. Siehe BUGZILLA 700
          KontoAuswahlDialog d = new KontoAuswahlDialog(KontoAuswahlDialog.POSITION_CENTER);
          konto = (Konto) d.open();
        }
        catch (OperationCanceledException oce)
        {
          Logger.info("import cancelled");
          return;
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.