mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
101 lines
2.9 KiB
PHP
101 lines
2.9 KiB
PHP
<?php
|
|
/*
|
|
include(dirname(__FILE__)."/../conf/main.conf.php");
|
|
include(dirname(__FILE__)."/../phpwf/plugins/class.mysql.php");
|
|
include(dirname(__FILE__)."/../www/lib/imap.inc.php");
|
|
include(dirname(__FILE__)."/../www/lib/class.erpapi.php");
|
|
include(dirname(__FILE__)."/../www/lib/class.remote.php");
|
|
include(dirname(__FILE__)."/../www/lib/class.httpclient.php");
|
|
include(dirname(__FILE__)."/../www/lib/class.aes.php");
|
|
include(dirname(__FILE__)."/../www/plugins/phpmailer/class.phpmailer.php");
|
|
include(dirname(__FILE__)."/../www/plugins/phpmailer/class.smtp.php");
|
|
|
|
|
|
|
|
class app_t {
|
|
var $DB;
|
|
var $erp;
|
|
var $user;
|
|
var $remote;
|
|
}
|
|
*/
|
|
//ENDE
|
|
|
|
if(file_exists(dirname(__FILE__)."/../www/lib/class.erpapi_custom.php"))include_once(dirname(__FILE__)."/../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) || empty($app->DB->connection)) {
|
|
$app->DB = new DB($app->Conf->WFdbhost, $app->Conf->WFdbname, $app->Conf->WFdbuser, $app->Conf->WFdbpass, null, $app->Conf->WFdbport);
|
|
}
|
|
if(!isset($app->erp) || !$app->erp) {
|
|
if (class_exists('erpAPICustom')) {
|
|
$erp = new erpAPICustom($app);
|
|
} else {
|
|
$erp = new erpAPI($app);
|
|
}
|
|
//$remote = new Remote($app);
|
|
$app->erp = $erp;
|
|
//$app->remote= $remote;
|
|
}
|
|
if(empty($app->remote)) {
|
|
if(is_file(dirname(__DIR__) . '/www/lib/class.remote_custom.php')) {
|
|
if(!class_exists('RemoteCustom')){
|
|
require_once dirname(__DIR__) . '/www/lib/class.remote_custom.php';
|
|
}
|
|
$app->remote = new RemoteCustom($app);
|
|
}
|
|
else {
|
|
$app->remote = new Remote($app);
|
|
}
|
|
}
|
|
|
|
$app->erp->LogFile("Starte Synchronisation");
|
|
|
|
//$app->DB->Update("UPDATE artikel SET cache_lagerplatzinhaltmenge='999'");
|
|
|
|
$firmendatenid = $app->DB->Select("SELECT MAX(id) FROM firmendaten LIMIT 1");
|
|
|
|
|
|
$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
|
|
}
|
|
|
|
$obj = $app->erp->LoadModul('vertriebscockpit');
|
|
if($obj)
|
|
{
|
|
$obj->CalcCache();
|
|
}
|