mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-14 20:17:14 +01:00
Bugfixes importvorlage
This commit is contained in:
parent
526506575a
commit
7e9503e1b6
@ -42,7 +42,7 @@ include_once(dirname(__DIR__) . '/www/lib/class.httpclient.php');
|
||||
if(!class_exists('AES')){
|
||||
$aes = '';
|
||||
$phpversion = phpversion();
|
||||
if($phpversion{0} == '7' && (int)$phpversion{2} > 0) $aes = '2';
|
||||
if($phpversion[0] == '7' && (int)$phpversion[2] > 0) $aes = '2';
|
||||
if($aes == 2 && is_file(dirname(__DIR__) . '/www/lib/class.aes' . $aes . '.php')){
|
||||
include_once(dirname(__DIR__) . '/www/lib/class.aes' . $aes . '.php');
|
||||
}else{
|
||||
|
@ -21,7 +21,7 @@ if(is_file(dirname(__DIR__).'/www/lib/class.erpapi_custom.php')){
|
||||
include_once dirname(__DIR__).'/www/lib/class.httpclient.php';
|
||||
$aes = '';
|
||||
$phpversion = PHP_VERSION;
|
||||
if(strpos($phpversion,'7') === 0 && (int)$phpversion{2} > 0)
|
||||
if(strpos($phpversion,'7') === 0 && (int)$phpversion[2] > 0)
|
||||
{
|
||||
$aes = '2';
|
||||
}
|
||||
|
@ -527,7 +527,7 @@ class User
|
||||
}
|
||||
$this->loadUserRowInCacheProperty();
|
||||
|
||||
return $this->cache[$cacheKey]['adresse'];
|
||||
// return $this->cache[$cacheKey]['adresse'];
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -217,6 +217,7 @@ class Importvorlage extends GenImportvorlage {
|
||||
|
||||
public function doCronjob()
|
||||
{
|
||||
|
||||
$jobs = $this->app->DB->SelectArr(
|
||||
sprintf(
|
||||
"SELECT * FROM `importmasterdata` WHERE `status` = 'in_queue' ORDER BY `created_at` LIMIT 1"
|
||||
@ -4283,6 +4284,10 @@ class Importvorlage extends GenImportvorlage {
|
||||
$uhrzeit = $tmp['uhrzeit'][$i];
|
||||
}
|
||||
|
||||
if (is_null($mitarbeiteradresse)) {
|
||||
$mitarbeiteradresse = '';
|
||||
}
|
||||
|
||||
if($mitarbeiteradresse>0){
|
||||
$bearbeiter = $this->app->DB->Select("SELECT CONCAT(mitarbeiternummer,' ',name) FROM adresse WHERE id='$mitarbeiteradresse' LIMIT 1");
|
||||
}
|
||||
@ -4290,8 +4295,10 @@ class Importvorlage extends GenImportvorlage {
|
||||
$bearbeiter='Import';
|
||||
}
|
||||
|
||||
$this->app->DB->Insert("INSERT INTO dokumente (id,adresse_to,adresse_from,typ,betreff,content,datum,uhrzeit,bearbeiter)
|
||||
VALUES ('',$adresse,$mitarbeiteradresse,'notiz','$betreff','$text','$datum','$uhrzeit','$bearbeiter')");
|
||||
$query = "INSERT INTO dokumente (id,adresse_to,adresse_from,typ,betreff,content,datum,uhrzeit,bearbeiter)
|
||||
VALUES ('','$adresse','$mitarbeiteradresse','notiz','$betreff','$text','$datum','$uhrzeit','$bearbeiter')";
|
||||
|
||||
$this->app->DB->Insert($query);
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
@ -728,6 +728,7 @@ class Prozessstarter extends GenProzessstarter {
|
||||
*/
|
||||
public function setCronjobStatus($status, $prozessstarter = null)
|
||||
{
|
||||
|
||||
if($prozessstarter !== null) {
|
||||
$this->currentCronjobId = $prozessstarter;
|
||||
if(emptY($this->currentCronjobId)) {
|
||||
@ -1180,6 +1181,7 @@ class Prozessstarter extends GenProzessstarter {
|
||||
$task['bezeichnung'], $uid, $task['id'], $runningTask['id']
|
||||
)
|
||||
);
|
||||
|
||||
$this->setCronjobStatus('error', $task['id']);
|
||||
$this->setCronjobRunning($uid, $task['id'], false);
|
||||
}
|
||||
@ -1190,6 +1192,9 @@ class Prozessstarter extends GenProzessstarter {
|
||||
*/
|
||||
public function closeAndLogCronjob($uid, $fromStarter2 = false)
|
||||
{
|
||||
|
||||
// REMARK: this never gets called -> Check
|
||||
|
||||
$cronjob = $this->getCronjobByUid($uid);
|
||||
if(empty($cronjob)) {
|
||||
return;
|
||||
@ -1205,6 +1210,7 @@ class Prozessstarter extends GenProzessstarter {
|
||||
}
|
||||
$this->app->erp->LogFile('Cronjob with uid: '.$uid.' was killed by module: '.$cronjob['cronjob_name']);
|
||||
if(!empty($cronjob['task_id'])) {
|
||||
|
||||
$this->setCronjobStatus('error', $cronjob['task_id']);
|
||||
try {
|
||||
/** @var Systemhealth $systemhealth */
|
||||
@ -1419,11 +1425,13 @@ class Prozessstarter extends GenProzessstarter {
|
||||
* @param bool $active
|
||||
*/
|
||||
public function setCronjobRunning($uid, $task = null, $active = true) {
|
||||
|
||||
if($active === false) {
|
||||
if(!empty($task)) {
|
||||
$this->app->DB->Update(
|
||||
sprintf(
|
||||
'UPDATE cronjob_starter_running SET `task_id` = 0, last_time = NOW() WHERE uid = \'%s\' AND `active` = 1',
|
||||
// 'UPDATE cronjob_starter_running SET `task_id` = 0, last_time = NOW() WHERE uid = \'%s\' AND `active` = 1',
|
||||
'UPDATE cronjob_starter_running SET `active` = 0, last_time = NOW() WHERE uid = \'%s\' AND `active` = 1',
|
||||
$this->app->DB->real_escape_string($uid)
|
||||
)
|
||||
);
|
||||
@ -1435,11 +1443,13 @@ class Prozessstarter extends GenProzessstarter {
|
||||
$this->app->DB->real_escape_string($uid)
|
||||
)
|
||||
);
|
||||
|
||||
if(is_numeric($uid)){
|
||||
$this->changeUid($uid);
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
$check = $this->app->DB->SelectRow(
|
||||
sprintf(
|
||||
'SELECT * FROM cronjob_starter_running WHERE uid = \'%s\' LIMIT 1',
|
||||
@ -1456,6 +1466,7 @@ class Prozessstarter extends GenProzessstarter {
|
||||
);
|
||||
return;
|
||||
}
|
||||
|
||||
if(!empty($check['task_id']) && ($uid != $check['uid'] || $check['task_id'] != $task['id'])) {
|
||||
$this->app->erp->LogFile(
|
||||
$this->app->DB->real_escape_string(
|
||||
|
Loading…
Reference in New Issue
Block a user