Skip to content

Commit

Permalink
Feature alte Buchungen löschen (#225)
Browse files Browse the repository at this point in the history
* Zwischenstand

* Feature alte Buchungen löschen

* Korrigiere Text

* Kleinschrift

* Kleinschrift

* MySQL Namen fuer Constraint

* Update AbstractDDLUpdate.java

* Umbau zu View und Lastschriften und Mails löschen

* Update Update0441.java
  • Loading branch information
JohannMaierhofer authored Jul 26, 2024
1 parent 3943ca1 commit 1538b04
Show file tree
Hide file tree
Showing 8 changed files with 569 additions and 18 deletions.
35 changes: 35 additions & 0 deletions src/de/jost_net/JVerein/gui/action/DbBereinigenAction.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
/**********************************************************************
* 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.view.DbBereinigenView;
import de.willuhn.jameica.gui.Action;
import de.willuhn.jameica.gui.GUI;
import de.willuhn.util.ApplicationException;

/**
* Loeschen einer Buchung.
*/
public class DbBereinigenAction implements Action
{

@Override
public void handleAction(Object context) throws ApplicationException
{
GUI.startView(DbBereinigenView.class.getName(), null);
}
}
Loading

0 comments on commit 1538b04

Please sign in to comment.