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"); $obj = $app->erp->LoadModul('vertriebscockpit'); if($obj) { $obj->CalcCache(); }