forked from jverein/jverein
-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Korrekturen Splitbuchung * Logger bleibt * Lösche auch dependent neue Buchungen * Merge
- Loading branch information
1 parent
d85b3a7
commit 093ddce
Showing
4 changed files
with
109 additions
and
12 deletions.
There are no files selected for viewing
88 changes: 88 additions & 0 deletions
88
src/de/jost_net/JVerein/gui/action/SplitBuchungDeleteAction.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,88 @@ | ||
/********************************************************************** | ||
* 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/>. | ||
* | ||
* heiner@jverein.de | ||
* www.jverein.de | ||
**********************************************************************/ | ||
package de.jost_net.JVerein.gui.action; | ||
|
||
import java.rmi.RemoteException; | ||
import java.util.ArrayList; | ||
|
||
import de.jost_net.JVerein.gui.control.BuchungsControl; | ||
import de.jost_net.JVerein.io.SplitbuchungsContainer; | ||
import de.jost_net.JVerein.rmi.Buchung; | ||
import de.willuhn.jameica.gui.Action; | ||
import de.willuhn.jameica.gui.GUI; | ||
import de.willuhn.logging.Logger; | ||
import de.willuhn.util.ApplicationException; | ||
|
||
/** | ||
* Loeschen einer Buchung. | ||
*/ | ||
public class SplitBuchungDeleteAction implements Action | ||
{ | ||
private BuchungsControl control; | ||
|
||
public SplitBuchungDeleteAction(BuchungsControl control) | ||
{ | ||
this.control = control; | ||
} | ||
|
||
@Override | ||
public void handleAction(Object context) throws ApplicationException | ||
{ | ||
if (context == null || !(context instanceof Buchung)) | ||
{ | ||
throw new ApplicationException("Keine Buchung ausgewählt"); | ||
} | ||
try | ||
{ | ||
Buchung bu = (Buchung) context; | ||
if (((Buchung) context).isNewObject()) | ||
{ | ||
if (bu.getDependencyId() == -1) | ||
{ | ||
SplitbuchungsContainer.get().remove(bu); | ||
} | ||
else | ||
{ | ||
ArrayList<Buchung> container = SplitbuchungsContainer.get(); | ||
Buchung[] splitbuchungen = new Buchung[container.size()]; | ||
splitbuchungen = container.toArray(splitbuchungen); | ||
int size = splitbuchungen.length; | ||
int dependencyId = bu.getDependencyId(); | ||
for (int i = 0; i < size; i++) | ||
{ | ||
if (splitbuchungen[i].getDependencyId() == dependencyId) | ||
{ | ||
container.remove(splitbuchungen[i]); | ||
} | ||
} | ||
} | ||
} | ||
else | ||
{ | ||
BuchungDeleteAction action = new BuchungDeleteAction(true); | ||
action.handleAction(context); | ||
} | ||
control.refreshSplitbuchungen(); | ||
} | ||
catch (RemoteException e) | ||
{ | ||
String fehler = "Fehler beim Löschen der Buchung."; | ||
GUI.getStatusBar().setErrorText(fehler); | ||
Logger.error(fehler, e); | ||
} | ||
} | ||
} |
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