Skip to content

Commit

Permalink
Filter Update und Kontoauszug per Mail verschicken (#236)
Browse files Browse the repository at this point in the history
* Filter Update für Views basierend auf MitgliedskontoControl

* Differenz fuer Kontoauszug

* Druck und Mail Option bei Kontoauszug

* Mailvorlage in Kontoauszug View

* Check null

* remove spezialsuche1

* Fix Check

* Kommentare implementiert
  • Loading branch information
JohannMaierhofer authored Jul 27, 2024
1 parent 95d8b77 commit 2e75474
Show file tree
Hide file tree
Showing 17 changed files with 375 additions and 375 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ public void handleAction(Object context) throws ApplicationException
if (context instanceof MitgliedskontoControl)
{
MitgliedskontoControl kto = (MitgliedskontoControl) context;
kto.getBetreff(null).setValue(mv.getBetreff());
kto.getTxt(null).setValue(mv.getTxt());
kto.getBetreff().setValue(mv.getBetreff());
kto.getTxt().setValue(mv.getTxt());
}
else if (context instanceof SpendenbescheinigungMailControl)
{
Expand Down
2 changes: 1 addition & 1 deletion src/de/jost_net/JVerein/gui/control/FilterControl.java
Original file line number Diff line number Diff line change
Expand Up @@ -781,7 +781,7 @@ public CheckboxInput getOhneAbbucher()
return ohneabbucher;
}

public boolean isOhneAbbucher()
public boolean isOhneAbbucherAktiv()
{
return ohneabbucher != null;
}
Expand Down
Loading

0 comments on commit 2e75474

Please sign in to comment.