mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
auftrag refresh on list only when no cronjob is set
This commit is contained in:
parent
05d7a394b4
commit
3178f12821
@ -6689,11 +6689,13 @@ Die Gesamtsumme stimmt nicht mehr mit ursprünglich festgelegten Betrag '.
|
|||||||
public function AuftragList()
|
public function AuftragList()
|
||||||
{
|
{
|
||||||
|
|
||||||
// refresh all open items
|
// refresh all open items if no cronjob is set
|
||||||
|
if (!$this->app->DB->Select("SELECT id FROM prozessstarter WHERE parameter = 'autoversand_berechnung' AND aktiv = 1 LIMIT 1")) {
|
||||||
$openids = $this->app->DB->SelectArr("SELECT id from auftrag WHERE status <>'abgeschlossen' and status <>'storniert' and status <>'angelegt'");
|
$openids = $this->app->DB->SelectArr("SELECT id from auftrag WHERE status <>'abgeschlossen' and status <>'storniert' and status <>'angelegt'");
|
||||||
foreach ($openids as $openid) {
|
foreach ($openids as $openid) {
|
||||||
$this->app->erp->AuftragAutoversandBerechnen($openid['id']);
|
$this->app->erp->AuftragAutoversandBerechnen($openid['id']);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('auftrag', 'edit'))
|
if($this->app->Secure->GetPOST('ausfuehren') && $this->app->erp->RechteVorhanden('auftrag', 'edit'))
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user