mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 04:27:14 +01:00
77 lines
2.7 KiB
PHP
77 lines
2.7 KiB
PHP
<?php
|
|
|
|
if(!class_exists('erpAPICustom') && file_exists(dirname(__DIR__).'/www/lib/class.erpapi_custom.php')) {
|
|
include_once(dirname(__DIR__).'/www/lib/class.erpapi_custom.php');
|
|
}
|
|
|
|
if(empty($app)) {
|
|
$app = new app_t();
|
|
}
|
|
if(empty($app->Conf)){
|
|
$conf = new Config();
|
|
$app->Conf = $conf;
|
|
}
|
|
if(empty($app->DB)){
|
|
$app->DB = new DB($app->Conf->WFdbhost,$app->Conf->WFdbname,$app->Conf->WFdbuser,$app->Conf->WFdbpass, $app, $app->Conf->WFdbport);
|
|
}
|
|
if(class_exists('erpAPICustom'))
|
|
{
|
|
$erp = new erpAPICustom($app);
|
|
}else{
|
|
$erp = new erpAPI($app);
|
|
}
|
|
$app->erp = $erp;
|
|
$remote = new Remote($app);
|
|
$app->remote = $remote;
|
|
|
|
$benutzername = $app->erp->Firmendaten("benutzername");
|
|
$passwort = $app->erp->Firmendaten("passwort");
|
|
$host = $app->erp->Firmendaten("host");
|
|
$port = $app->erp->Firmendaten("port");
|
|
$mailssl = $app->erp->Firmendaten("mailssl");
|
|
$mailanstellesmtp = $app->erp->Firmendaten("mailanstellesmtp");
|
|
$noauth = $app->erp->Firmendaten("noauth");
|
|
|
|
$app->mail = new PHPMailer($app);
|
|
$app->mail->CharSet = "UTF-8";
|
|
|
|
if($mailanstellesmtp=="1"){
|
|
$app->mail->IsMail();
|
|
} else {
|
|
$app->mail->IsSMTP();
|
|
|
|
if($noauth=="1") $app->mail->SMTPAuth = false;
|
|
else $app->mail->SMTPAuth = true;
|
|
|
|
if($mailssl==1)
|
|
$app->mail->SMTPSecure = "tls"; // sets the prefix to the servier
|
|
else if ($mailssl==2)
|
|
$app->mail->SMTPSecure = "ssl"; // sets the prefix to the servier
|
|
|
|
$app->mail->Host = $host;
|
|
|
|
$app->mail->Port = $port; // set the SMTP port for the GMAIL server
|
|
|
|
$app->mail->Username = $benutzername; // GMAIL username
|
|
$app->mail->Password = $passwort; // GMAIL password
|
|
}
|
|
|
|
$app->DB->Update("UPDATE prozessstarter SET mutexcounter = mutexcounter + 1 WHERE mutex = 1 AND parameter = 'bestellungabschliessen' AND aktiv = 1");
|
|
if(!$app->erp->Firmendaten('bestellungabschliessen') || !$app->DB->Select("SELECT id FROM prozessstarter WHERE mutex = 0 AND parameter = 'bestellungabschliessen' AND aktiv = 1")){
|
|
return;
|
|
}
|
|
$app->DB->Update("UPDATE prozessstarter SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = NOW() WHERE parameter = 'bestellungabschliessen' AND aktiv = 1");
|
|
|
|
$offene = $app->DB->Query("SELECT id FROM bestellung WHERE status='freigegeben' OR status='versendet'");
|
|
if(!empty($offene)) {
|
|
/** @var Bestellung $obj */
|
|
$obj = $app->erp->LoadModul('bestellung');
|
|
if(!empty($obj)) {
|
|
while($order = $app->DB->Fetch_Assoc($offene)){
|
|
$obj->checkAbschliessen($order['id']);
|
|
}
|
|
}
|
|
$app->DB->free($offene);
|
|
}
|
|
$app->DB->Update("UPDATE prozessstarter SET mutex = 0 , mutexcounter = 0 WHERE parameter = 'bestellungabschliessen' AND aktiv = 1");
|