Skip to content

Commit

Permalink
Hilfe für Buchungskorrektur (#287)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohannMaierhofer authored Aug 8, 2024
1 parent f684aa8 commit de1638c
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public Button getStartKorrekturButton() {
public void handleAction(Object context) {
starteKorrektur();
}
}, null, true, "import_obj.gif"); // "true" defines this button as the
}, null, true, "walking.png"); // "true" defines this button as the
// default
return b;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@

import com.schlevoigt.JVerein.gui.control.BuchungsTextKorrekturControl;

import de.jost_net.JVerein.gui.action.DokumentationAction;
import de.jost_net.JVerein.gui.view.DokumentationUtil;
import de.willuhn.jameica.gui.AbstractView;
import de.willuhn.jameica.gui.GUI;
import de.willuhn.jameica.gui.parts.ButtonArea;
Expand All @@ -33,6 +35,8 @@ public void bind() throws Exception {
control.getBuchungsList().paint(this.getParent());

ButtonArea buttons = new ButtonArea();
buttons.addButton("Hilfe", new DokumentationAction(),
DokumentationUtil.BUCHUNGSKORREKTUR, false, "question-circle.png");
buttons.addButton(control.getStartKorrekturButton());
buttons.paint(this.getParent());
}
Expand Down
2 changes: 2 additions & 0 deletions src/de/jost_net/JVerein/gui/view/DokumentationUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,8 @@ public class DokumentationUtil
public static final String BUCHUNGSUEBERNAHME = PRE + FUNKTIONEN + BUCHF
+ "buchungsubernahme";

public static final String BUCHUNGSKORREKTUR = PRE + FUNKTIONEN + BUCHF + "buchungskorrektur";

public static final String JAHRESABSCHLUSS = PRE + FUNKTIONEN + BUCHF + "jahresabschluss";

public static final String KONTEN = PRE + FUNKTIONEN + BUCHF + "konten";
Expand Down

0 comments on commit de1638c

Please sign in to comment.