Examples of ausgefuehrt()


Examples of de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung.ausgefuehrt()

    try
    {
      final AuslandsUeberweisung u = (AuslandsUeberweisung) context;
     
      if (u.ausgefuehrt())
        throw new ApplicationException(i18n.tr("�berweisung wurde bereits ausgef�hrt"));

      if (u.isNewObject())
        u.store(); // wir speichern bei Bedarf selbst.
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung.ausgefuehrt()

    list.add(new Typ(true,false));
    list.add(new Typ(false,true));
    this.typ = new SelectInput(list,new Typ(u.isTerminUeberweisung(),u.isUmbuchung()));
    this.typ.setName(i18n.tr("Auftragstyp"));
    this.typ.setAttribute("name");
    this.typ.setEnabled(!u.ausgefuehrt());
    this.typ.addListener(new Listener() {
      public void handleEvent(Event event)
      {
        // Wir muessen die Entscheidung, ob es eine Termin-Ueberweisung ist,
        // sofort im Objekt speichern, denn die Information wird von
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung.ausgefuehrt()

    AuslandsUeberweisung t = null;
   
    try
    {
      t = this.getTransfer();
      if (t.ausgefuehrt()) // BUGZILLA 1197
        return true;
     
      t.transactionBegin();

      Double d = (Double) getBetrag().getValue();
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.AuslandsUeberweisung.ausgefuehrt()

      try
      {
        if (o instanceof AuslandsUeberweisung[])
          return false;
        AuslandsUeberweisung u = (AuslandsUeberweisung) o;
        return !u.ausgefuehrt();
      }
      catch (Exception e)
      {
        Application.getMessagingFactory().sendMessage(new StatusBarMessage(i18n.tr("Fehler beim Pr�fen, ob Auftrag bereits ausgef�hrt wurde"),StatusBarMessage.TYPE_ERROR));
        Logger.error("error while enable check in menu item",e);
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.BaseUeberweisung.ausgefuehrt()

  {
    BaseUeberweisung bu = null;
    try
    {
      bu = (BaseUeberweisung) getTransfer();
      if (bu.ausgefuehrt()) // BUGZILLA 1197
        return true;
     
      Date termin = (Date) getTermin().getValue();
      bu.setTermin(termin);
     
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.BaseUeberweisung.ausgefuehrt()

        Date ausgefuehrt = a.getAusfuehrungsdatum();
        table.add(new TextPrint(i18n.tr("Ausgef�hrt"),fontNormal));
        if (ausgefuehrt != null)
          table.add(new TextPrint(HBCI.DATEFORMAT.format(ausgefuehrt),fontBold));
        else
          table.add(new TextPrint(a.ausgefuehrt() ? "Ja" : "Nein",fontBold));
       
        customize(table);
      }
      return table;
    }
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.Lastschrift.ausgefuehrt()

                  if (ausgefuehrt) tu.setAusgefuehrt(true);
                  break;
                case 2: // Transfer.TYP_LASTSCHRIFT:
                  Lastschrift tl = (Lastschrift) service.createObject(Lastschrift.class,s);
                  tl.setWeitereVerwendungszwecke(sl);
                  ausgefuehrt = tl.ausgefuehrt();
                  if (ausgefuehrt) ((AbstractDBObject)tl).setAttribute("ausgefuehrt",new Integer(0));
                  tl.store();
                  if (ausgefuehrt) tl.setAusgefuehrt(true);
                  break;
                case 3: // Transfer.TYP_DAUERAUFTRAG:
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SammelTransfer.ausgefuehrt()

    SammelTransfer t = null;
   
    try
    {
      t = this.getTransfer();
      if (t.ausgefuehrt()) // BUGZILLA 1197
        return true;
      t.transactionBegin();
     
      t.setKonto((Konto)getKontoAuswahl().getValue());
      t.setBezeichnung((String)getName().getValue());
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SammelTransfer.ausgefuehrt()

    details.addLabelPair(i18n.tr("Textschl�ssel"),            control.getTextSchluessel());

    ButtonArea buttonArea = new ButtonArea();
   
    Button delete = new Button(i18n.tr("L�schen"), new DBObjectDelete(),control.getBuchung(),false,"user-trash-full.png");
    delete.setEnabled(!l.ausgefuehrt());
    buttonArea.addButton(delete);

    Button store = new Button(i18n.tr("Speichern"), new Action() {
      public void handleAction(Object context) throws ApplicationException {
        control.handleStore(false);
View Full Code Here

Examples of de.willuhn.jameica.hbci.rmi.SammelTransfer.ausgefuehrt()

    Button store = new Button(i18n.tr("Speichern"), new Action() {
      public void handleAction(Object context) throws ApplicationException {
        control.handleStore(false);
      }
    },null,false,"document-save.png");
    store.setEnabled(!l.ausgefuehrt());
    buttonArea.addButton(store);
   
    // BUGZILLA 116 http://www.willuhn.de/bugzilla/show_bug.cgi?id=116
    Button store2 = new Button(i18n.tr("Speichern und n�chste Buchung"), new Action() {
      public void handleAction(Object context) throws ApplicationException {
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.