mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
bugfix rechnungslauf
This commit is contained in:
parent
8c1343dff1
commit
08d97478d1
@ -8,6 +8,7 @@ SPDX-License-Identifier: LicenseRef-EGPL-3.1
|
|||||||
<li><a href="#tabs-2">Aufträge</a></li>
|
<li><a href="#tabs-2">Aufträge</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
<div id="tabs-1">
|
<div id="tabs-1">
|
||||||
|
[MESSAGE]
|
||||||
[MESSAGE_INVOICES]
|
[MESSAGE_INVOICES]
|
||||||
<form method="post" action="#">
|
<form method="post" action="#">
|
||||||
[TAB_INVOICES]
|
[TAB_INVOICES]
|
||||||
@ -19,6 +20,7 @@ SPDX-License-Identifier: LicenseRef-EGPL-3.1
|
|||||||
</form>
|
</form>
|
||||||
</div>
|
</div>
|
||||||
<div id="tabs-2">
|
<div id="tabs-2">
|
||||||
|
[MESSAGE]
|
||||||
[MESSAGE_ORDERS]
|
[MESSAGE_ORDERS]
|
||||||
<form method="post" action="#">
|
<form method="post" action="#">
|
||||||
[TAB_ORDERS]
|
[TAB_ORDERS]
|
||||||
|
@ -2381,7 +2381,7 @@ class Rechnung extends GenRechnung
|
|||||||
'".$this->app->erp->ZahlungsZielTage($projekt)."',
|
'".$this->app->erp->ZahlungsZielTage($projekt)."',
|
||||||
'".$this->app->erp->ZahlungsZielTageSkonto($projekt)."',
|
'".$this->app->erp->ZahlungsZielTageSkonto($projekt)."',
|
||||||
'".$this->app->erp->ZahlungsZielSkonto($projekt)."',NOW(),
|
'".$this->app->erp->ZahlungsZielSkonto($projekt)."',NOW(),
|
||||||
'angelegt','$projekt','$adresse',0,'".$ohnebriefpapier."',NOW(),'$usereditid',$abweichendebezeichnung)");
|
'angelegt','$projekt','$adresse',0,'".$ohnebriefpapier."',NOW(),'$usereditid','$abweichendebezeichnung')");
|
||||||
} else {
|
} else {
|
||||||
$this->app->DB->Insert("INSERT INTO rechnung (id,datum,bearbeiter,firma,belegnr,zahlungsweise,
|
$this->app->DB->Insert("INSERT INTO rechnung (id,datum,bearbeiter,firma,belegnr,zahlungsweise,
|
||||||
zahlungszieltage,
|
zahlungszieltage,
|
||||||
|
@ -248,6 +248,17 @@ class Rechnungslauf {
|
|||||||
$this->app->Tpl->addMessage('info', 'Die Aufträge werden nun im Hintergrund erstellt', false, 'MESSAGE_ORDERS');
|
$this->app->Tpl->addMessage('info', 'Die Aufträge werden nun im Hintergrund erstellt', false, 'MESSAGE_ORDERS');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$cronjobActive = $this->app->DB->Select(
|
||||||
|
"SELECT ps.id
|
||||||
|
FROM `prozessstarter` AS `ps`
|
||||||
|
WHERE ps.aktiv = 1 and (ps.parameter = 'rechnungslauf_manual')
|
||||||
|
LIMIT 1"
|
||||||
|
);
|
||||||
|
if(!$cronjobActive) {
|
||||||
|
$this->app->Tpl->addMessage('warning', 'Der Prozessstarter \'rechnungslauf_manual\' ist nicht aktiv');
|
||||||
|
}
|
||||||
|
|
||||||
$this->app->Tpl->Parse('PAGE', 'rechnungslauf_list.tpl');
|
$this->app->Tpl->Parse('PAGE', 'rechnungslauf_list.tpl');
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -280,4 +291,4 @@ class Rechnungslauf {
|
|||||||
$this->app->Tpl->Output('rechnungslauf_minidetail.tpl');
|
$this->app->Tpl->Output('rechnungslauf_minidetail.tpl');
|
||||||
$this->app->ExitXentral();
|
$this->app->ExitXentral();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user