forked from jverein/jverein
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Support von Mailvorlagen für Rechnung, Mahnung, Spendenbescheinigung (#…
…229) * Support von Mailvorlagen für Rechnung, Mahnung, Spendenbescheinigung * Vorlage auch fuer PreNotification * ohne Rahmen in PreNotification * Besseres Spendenbescheinigung View Layout * Vorlage auch in MailDetailView
- Loading branch information
1 parent
555b200
commit ea88a2a
Showing
11 changed files
with
160 additions
and
32 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
94 changes: 94 additions & 0 deletions
94
src/de/jost_net/JVerein/gui/action/MailVorlageZuweisenAction.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,94 @@ | ||
/********************************************************************** | ||
* Copyright (c) by Heiner Jostkleigrewe | ||
* This program is free software: you can redistribute it and/or modify it under the terms of the | ||
* GNU General Public License as published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without | ||
* even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See | ||
* the GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License along with this program. If not, | ||
* see <http://www.gnu.org/licenses/>. | ||
* | ||
* [email protected] | ||
* www.jverein.de | ||
**********************************************************************/ | ||
package de.jost_net.JVerein.gui.action; | ||
|
||
import de.jost_net.JVerein.gui.control.MailVorlageControl; | ||
import de.jost_net.JVerein.gui.control.MitgliedskontoControl; | ||
import de.jost_net.JVerein.gui.control.SpendenbescheinigungMailControl; | ||
import de.jost_net.JVerein.gui.control.PreNotificationControl; | ||
import de.jost_net.JVerein.gui.control.MailControl; | ||
import de.jost_net.JVerein.gui.dialogs.MailVorlagenAuswahlDialog; | ||
import de.jost_net.JVerein.rmi.MailVorlage; | ||
import de.willuhn.jameica.gui.Action; | ||
import de.willuhn.jameica.gui.GUI; | ||
import de.willuhn.jameica.system.OperationCanceledException; | ||
import de.willuhn.logging.Logger; | ||
import de.willuhn.util.ApplicationException; | ||
|
||
public class MailVorlageZuweisenAction implements Action | ||
{ | ||
|
||
@Override | ||
public void handleAction(Object context) throws ApplicationException | ||
{ | ||
try | ||
{ | ||
if (context != null && | ||
(context instanceof MitgliedskontoControl || | ||
context instanceof SpendenbescheinigungMailControl || | ||
context instanceof PreNotificationControl || | ||
context instanceof MailControl)) | ||
{ | ||
MailVorlagenAuswahlDialog mvad = new MailVorlagenAuswahlDialog( | ||
new MailVorlageControl(null), | ||
MailVorlagenAuswahlDialog.POSITION_CENTER, false); | ||
|
||
MailVorlage mv = mvad.open(); | ||
if (!mvad.getAbort() && mv != null) | ||
{ | ||
if (context instanceof MitgliedskontoControl) | ||
{ | ||
MitgliedskontoControl kto = (MitgliedskontoControl) context; | ||
kto.getBetreff(null).setValue(mv.getBetreff()); | ||
kto.getTxt(null).setValue(mv.getTxt()); | ||
} | ||
else if (context instanceof SpendenbescheinigungMailControl) | ||
{ | ||
SpendenbescheinigungMailControl kto = (SpendenbescheinigungMailControl) context; | ||
kto.getBetreff().setValue(mv.getBetreff()); | ||
kto.getTxt().setValue(mv.getTxt()); | ||
} | ||
else if (context instanceof PreNotificationControl) | ||
{ | ||
PreNotificationControl kto = (PreNotificationControl) context; | ||
kto.getMailSubject().setValue(mv.getBetreff()); | ||
kto.getMailBody().setValue(mv.getTxt()); | ||
} | ||
else if (context instanceof MailControl) | ||
{ | ||
MailControl kto = (MailControl) context; | ||
kto.getBetreff().setValue(mv.getBetreff()); | ||
kto.getTxt().setValue(mv.getTxt()); | ||
} | ||
} | ||
} | ||
else | ||
{ | ||
throw new ApplicationException("Keine Kontext ausgewählt"); | ||
} | ||
} | ||
catch (OperationCanceledException oce) | ||
{ | ||
throw oce; | ||
} | ||
catch (Exception e) | ||
{ | ||
Logger.error("Fehler", e); | ||
GUI.getStatusBar().setErrorText("Fehler bei der Zuweisung eine Mail Vorlage"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters