mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
Compare commits
2 Commits
7de88ca3b5
...
62f6df1aeb
Author | SHA1 | Date | |
---|---|---|---|
|
62f6df1aeb | ||
|
828c1b1a75 |
@ -5,7 +5,7 @@
|
|||||||
<div id="tabs-1">
|
<div id="tabs-1">
|
||||||
<form action="#tabs-1" id="frmauto" name="frmauto" method="post">
|
<form action="#tabs-1" id="frmauto" name="frmauto" method="post">
|
||||||
[MESSAGE]
|
[MESSAGE]
|
||||||
<legend>Salden müssen über Gegenbuchungen ausgeglichen werden.</legend>
|
<legend>Kontoauszüge bitte über Importzentrale importieren.</legend>
|
||||||
[TAB1]
|
[TAB1]
|
||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
|
@ -557,10 +557,16 @@ class Fibu_buchungen {
|
|||||||
$this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht");
|
$this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=list", "Übersicht");
|
||||||
// $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=create", "Neu anlegen");
|
// $this->app->erp->MenuEintrag("index.php?module=fibu_buchungen&action=create", "Neu anlegen");
|
||||||
|
|
||||||
|
$startdatum = $this->app->erp->Firmendaten('fibu_buchungen_startdatum');
|
||||||
|
|
||||||
|
if (empty($startdatum)) {
|
||||||
|
$msg .= '<div class="error">Startdatum <a href="index.php?module=firmendaten&action=edit#tabs-8">("Buchungen erzeugen ab Datum")</a> in den Firmendaten nicht gesetzt.</div>';
|
||||||
|
}
|
||||||
|
|
||||||
$submit = $this->app->Secure->GetPOST('submit');
|
$submit = $this->app->Secure->GetPOST('submit');
|
||||||
if ($submit == 'neuberechnen') {
|
if ($submit == 'neuberechnen') {
|
||||||
$this->fibu_rebuild_tables();
|
$this->fibu_rebuild_tables();
|
||||||
$msg = "<div class=\"info\">Buchungen wurden neu berechnet.</div>";
|
$msg .= "<div class=\"info\">Buchungen wurden neu berechnet.</div>";
|
||||||
}
|
}
|
||||||
|
|
||||||
// For transfer to tablesearch
|
// For transfer to tablesearch
|
||||||
|
@ -16,7 +16,7 @@ class Kontoauszuege {
|
|||||||
$this->app->ActionHandlerInit($this);
|
$this->app->ActionHandlerInit($this);
|
||||||
$this->app->ActionHandler("list", "kontoauszuege_konto_list");
|
$this->app->ActionHandler("list", "kontoauszuege_konto_list");
|
||||||
$this->app->ActionHandler("listentries", "kontoauszuege_list");
|
$this->app->ActionHandler("listentries", "kontoauszuege_list");
|
||||||
$this->app->ActionHandler("create", "kontoauszuege_edit"); // This automatically adds a "New" button
|
// $this->app->ActionHandler("create", "kontoauszuege_edit"); // This automatically adds a "New" button
|
||||||
$this->app->ActionHandler("edit", "kontoauszuege_edit");
|
$this->app->ActionHandler("edit", "kontoauszuege_edit");
|
||||||
$this->app->ActionHandler("delete", "kontoauszuege_delete");
|
$this->app->ActionHandler("delete", "kontoauszuege_delete");
|
||||||
$this->app->DefaultActionHandler("list");
|
$this->app->DefaultActionHandler("list");
|
||||||
@ -255,7 +255,7 @@ class Kontoauszuege {
|
|||||||
function kontoauszuege_konto_list() {
|
function kontoauszuege_konto_list() {
|
||||||
|
|
||||||
$this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=list", "Übersicht");
|
$this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=list", "Übersicht");
|
||||||
$this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=create", "Neu anlegen");
|
// $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=create", "Neu anlegen");
|
||||||
|
|
||||||
$this->app->erp->MenuEintrag("index.php", "Zurück");
|
$this->app->erp->MenuEintrag("index.php", "Zurück");
|
||||||
|
|
||||||
@ -313,7 +313,7 @@ class Kontoauszuege {
|
|||||||
}
|
}
|
||||||
|
|
||||||
$this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=list", "Übersicht");
|
$this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=list", "Übersicht");
|
||||||
$this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=create", "Neu anlegen");
|
// $this->app->erp->MenuEintrag("index.php?module=kontoauszuege&action=create", "Neu anlegen");
|
||||||
|
|
||||||
$this->app->erp->MenuEintrag("index.php", "Zurück");
|
$this->app->erp->MenuEintrag("index.php", "Zurück");
|
||||||
|
|
||||||
@ -367,10 +367,10 @@ class Kontoauszuege {
|
|||||||
$input = $this->GetInput();
|
$input = $this->GetInput();
|
||||||
$submit = $this->app->Secure->GetPOST('submit');
|
$submit = $this->app->Secure->GetPOST('submit');
|
||||||
|
|
||||||
if (empty($id)) {
|
/* if (empty($id)) {
|
||||||
// New item
|
// New item
|
||||||
$id = 'NULL';
|
$id = 'NULL';
|
||||||
}
|
} */
|
||||||
|
|
||||||
if ($submit != '')
|
if ($submit != '')
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user