mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2025-01-26 04:31:14 +01:00
cronjobs/shop_rueckmeldungen.php format
This commit is contained in:
parent
4ed783a7ca
commit
ea515b0727
@ -1,393 +1,389 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
||||||
if(!class_exists('ApplicationCore') && is_file(dirname(__DIR__).'/xentral_autoloader.php')) {
|
if (!class_exists('ApplicationCore') && is_file(dirname(__DIR__) . '/xentral_autoloader.php')) {
|
||||||
include_once dirname(__DIR__).'/xentral_autoloader.php';
|
include_once dirname(__DIR__) . '/xentral_autoloader.php';
|
||||||
}
|
}
|
||||||
include_once dirname(__DIR__).'/conf/main.conf.php';
|
include_once dirname(__DIR__) . '/conf/main.conf.php';
|
||||||
include_once dirname(__DIR__).'/phpwf/plugins/class.mysql.php';
|
include_once dirname(__DIR__) . '/phpwf/plugins/class.mysql.php';
|
||||||
include_once dirname(__DIR__).'/phpwf/plugins/class.secure.php';
|
include_once dirname(__DIR__) . '/phpwf/plugins/class.secure.php';
|
||||||
include_once dirname(__DIR__).'/phpwf/plugins/class.user.php';
|
include_once dirname(__DIR__) . '/phpwf/plugins/class.user.php';
|
||||||
if(file_exists(dirname(__DIR__).'/conf/user_defined.php')) {
|
if (file_exists(dirname(__DIR__) . '/conf/user_defined.php')) {
|
||||||
include_once dirname(__DIR__).'/conf/user_defined.php';
|
|
||||||
}
|
|
||||||
if(!class_exists('FPDFWAWISION')){
|
|
||||||
if(file_exists(dirname(__DIR__).'/conf/user_defined.php')){
|
|
||||||
include_once dirname(__DIR__) . '/conf/user_defined.php';
|
include_once dirname(__DIR__) . '/conf/user_defined.php';
|
||||||
}
|
|
||||||
if(defined('USEFPDF3') && USEFPDF3 && file_exists(dirname(__DIR__) . '/www/lib/pdf/fpdf_3.php')){
|
|
||||||
require_once dirname(__DIR__) . '/www/lib/pdf/fpdf_3.php';
|
|
||||||
}else if(defined('USEFPDF2') && USEFPDF2 && file_exists(dirname(__DIR__) . '/www/lib/pdf/fpdf_2.php')){
|
|
||||||
require_once dirname(__DIR__) . '/www/lib/pdf/fpdf_2.php';
|
|
||||||
}else{
|
|
||||||
require_once dirname(__DIR__) . '/www/lib/pdf/fpdf.php';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
include_once dirname(__DIR__).'/www/lib/pdf/fpdf_final.php';
|
if (!class_exists('FPDFWAWISION')) {
|
||||||
include_once dirname(__DIR__).'/www/lib/imap.inc.php';
|
if (file_exists(dirname(__DIR__) . '/conf/user_defined.php')) {
|
||||||
include_once dirname(__DIR__).'/www/lib/class.erpapi.php';
|
include_once dirname(__DIR__) . '/conf/user_defined.php';
|
||||||
include_once dirname(__DIR__).'/www/lib/class.remote.php';
|
}
|
||||||
include_once dirname(__DIR__).'/www/lib/class.httpclient.php';
|
if (defined('USEFPDF3') && USEFPDF3 && file_exists(dirname(__DIR__) . '/www/lib/pdf/fpdf_3.php')) {
|
||||||
|
require_once dirname(__DIR__) . '/www/lib/pdf/fpdf_3.php';
|
||||||
|
} else if (defined('USEFPDF2') && USEFPDF2 && file_exists(dirname(__DIR__) . '/www/lib/pdf/fpdf_2.php')) {
|
||||||
|
require_once dirname(__DIR__) . '/www/lib/pdf/fpdf_2.php';
|
||||||
|
} else {
|
||||||
|
require_once dirname(__DIR__) . '/www/lib/pdf/fpdf.php';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
include_once dirname(__DIR__) . '/www/lib/pdf/fpdf_final.php';
|
||||||
|
include_once dirname(__DIR__) . '/www/lib/imap.inc.php';
|
||||||
|
include_once dirname(__DIR__) . '/www/lib/class.erpapi.php';
|
||||||
|
include_once dirname(__DIR__) . '/www/lib/class.remote.php';
|
||||||
|
include_once dirname(__DIR__) . '/www/lib/class.httpclient.php';
|
||||||
$aes = '';
|
$aes = '';
|
||||||
$phpversion = (String)phpversion();
|
$phpversion = (String) phpversion();
|
||||||
if($phpversion[0] == '7' && (int)$phpversion[2] > 0) {
|
if ($phpversion[0] == '7' && (int) $phpversion[2] > 0) {
|
||||||
$aes = '2';
|
$aes = '2';
|
||||||
}
|
}
|
||||||
if($aes == 2 && is_file(dirname(__DIR__).'/www/lib/class.aes2.php')) {
|
if ($aes == 2 && is_file(dirname(__DIR__) . '/www/lib/class.aes2.php')) {
|
||||||
include_once dirname(__DIR__).'/www/lib/class.aes2.php';
|
include_once dirname(__DIR__) . '/www/lib/class.aes2.php';
|
||||||
}
|
} else {
|
||||||
else{
|
include_once dirname(__DIR__) . '/www/lib/class.aes.php';
|
||||||
include_once dirname(__DIR__) . '/www/lib/class.aes.php';
|
|
||||||
}
|
}
|
||||||
|
|
||||||
$classes = array('briefpapier','lieferschein','auftrag','anfrage','gutschrift','bestellung','rechnung','mahnwesen');
|
$classes = array('briefpapier', 'lieferschein', 'auftrag', 'anfrage', 'gutschrift', 'bestellung', 'rechnung', 'mahnwesen');
|
||||||
foreach($classes as $class)
|
foreach ($classes as $class) {
|
||||||
{
|
if (file_exists(dirname(__DIR__) . '/www/lib/dokumente/class.' . $class . '_custom.php')) {
|
||||||
if(file_exists(dirname(__DIR__).'/www/lib/dokumente/class.'.$class.'_custom.php'))
|
include_once dirname(__DIR__) . '/www/lib/dokumente/class.' . $class . '_custom.php';
|
||||||
{
|
} elseif (file_exists(dirname(__DIR__) . '/www/lib/dokumente/class.' . $class . '.php')) {
|
||||||
include_once dirname(__DIR__).'/www/lib/dokumente/class.'.$class.'_custom.php';
|
include_once dirname(__DIR__) . '/www/lib/dokumente/class.' . $class . '.php';
|
||||||
}
|
}
|
||||||
elseif(file_exists(dirname(__DIR__).'/www/lib/dokumente/class.'.$class.'.php')) {
|
|
||||||
include_once dirname(__DIR__).'/www/lib/dokumente/class.'.$class.'.php';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.briefpapier.php");
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.briefpapier.php");
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.lieferschein.php");
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.lieferschein.php");
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.auftrag.php");
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.auftrag.php");
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.angebot.php");
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.angebot.php");
|
||||||
if(file_exists(dirname(__FILE__)."/../www/lib/dokumente/class.anfrage.php"))include_once(dirname(__FILE__)."/../www/lib/dokumente/class.anfrage.php");
|
if(file_exists(dirname(__FILE__)."/../www/lib/dokumente/class.anfrage.php"))include_once(dirname(__FILE__)."/../www/lib/dokumente/class.anfrage.php");
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.gutschrift.php");
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.gutschrift.php");
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.bestellung.php");
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.bestellung.php");
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.rechnung.php");
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.rechnung.php");
|
||||||
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.mahnwesen.php");*/
|
include_once(dirname(__FILE__)."/../www/lib/dokumente/class.mahnwesen.php"); */
|
||||||
include_once dirname(__DIR__).'/phpwf/plugins/class.string.php';
|
include_once dirname(__DIR__) . '/phpwf/plugins/class.string.php';
|
||||||
if(!class_exists('app_t2'))
|
if (!class_exists('app_t2')) {
|
||||||
{
|
|
||||||
class app_t2 extends ApplicationCore {
|
class app_t2 extends ApplicationCore {
|
||||||
var $DB;
|
|
||||||
var $erp;
|
var $DB;
|
||||||
var $User;
|
var $erp;
|
||||||
var $mail;
|
var $User;
|
||||||
var $remote;
|
var $mail;
|
||||||
var $Secure;
|
var $remote;
|
||||||
function GetLandLang($isocode)
|
var $Secure;
|
||||||
{
|
|
||||||
$flipped = array_flip($this->GetLaender());
|
function GetLandLang($isocode) {
|
||||||
if(isset($flipped[$isocode]))
|
$flipped = array_flip($this->GetLaender());
|
||||||
$land = $flipped[$isocode];
|
if (isset($flipped[$isocode]))
|
||||||
else {
|
$land = $flipped[$isocode];
|
||||||
$land = 'unkown';
|
else {
|
||||||
}
|
$land = 'unkown';
|
||||||
return $land;
|
}
|
||||||
}
|
return $land;
|
||||||
|
}
|
||||||
|
|
||||||
|
function GetLaender() {
|
||||||
|
$laender = array(
|
||||||
|
'Afghanistan' => 'AF',
|
||||||
|
'Ägypten' => 'EG',
|
||||||
|
'Albanien' => 'AL',
|
||||||
|
'Algerien' => 'DZ',
|
||||||
|
'Andorra' => 'AD',
|
||||||
|
'Angola' => 'AO',
|
||||||
|
'Anguilla' => 'AI',
|
||||||
|
'Antarktis' => 'AQ',
|
||||||
|
'Antigua und Barbuda' => 'AG',
|
||||||
|
'Äquatorial Guinea' => 'GQ',
|
||||||
|
'Argentinien' => 'AR',
|
||||||
|
'Armenien' => 'AM',
|
||||||
|
'Aruba' => 'AW',
|
||||||
|
'Aserbaidschan' => 'AZ',
|
||||||
|
'Äthiopien' => 'ET',
|
||||||
|
'Australien' => 'AU',
|
||||||
|
'Bahamas' => 'BS',
|
||||||
|
'Bahrain' => 'BH',
|
||||||
|
'Bangladesh' => 'BD',
|
||||||
|
'Barbados' => 'BB',
|
||||||
|
'Belgien' => 'BE',
|
||||||
|
'Belize' => 'BZ',
|
||||||
|
'Benin' => 'BJ',
|
||||||
|
'Bermudas' => 'BM',
|
||||||
|
'Bhutan' => 'BT',
|
||||||
|
'Birma' => 'MM',
|
||||||
|
'Bolivien' => 'BO',
|
||||||
|
'Bosnien-Herzegowina' => 'BA',
|
||||||
|
'Botswana' => 'BW',
|
||||||
|
'Bouvet Inseln' => 'BV',
|
||||||
|
'Brasilien' => 'BR',
|
||||||
|
'Britisch-Indischer Ozean' => 'IO',
|
||||||
|
'Brunei' => 'BN',
|
||||||
|
'Bulgarien' => 'BG',
|
||||||
|
'Burkina Faso' => 'BF',
|
||||||
|
'Burundi' => 'BI',
|
||||||
|
'Chile' => 'CL',
|
||||||
|
'China' => 'CN',
|
||||||
|
'Christmas Island' => 'CX',
|
||||||
|
'Cook Inseln' => 'CK',
|
||||||
|
'Costa Rica' => 'CR',
|
||||||
|
'Dänemark' => 'DK',
|
||||||
|
'Deutschland' => 'DE',
|
||||||
|
'Djibuti' => 'DJ',
|
||||||
|
'Dominika' => 'DM',
|
||||||
|
'Dominikanische Republik' => 'DO',
|
||||||
|
'Ecuador' => 'EC',
|
||||||
|
'El Salvador' => 'SV',
|
||||||
|
'Elfenbeinküste' => 'CI',
|
||||||
|
'Eritrea' => 'ER',
|
||||||
|
'Estland' => 'EE',
|
||||||
|
'Falkland Inseln' => 'FK',
|
||||||
|
'Färöer Inseln' => 'FO',
|
||||||
|
'Fidschi' => 'FJ',
|
||||||
|
'Finnland' => 'FI',
|
||||||
|
'Frankreich' => 'FR',
|
||||||
|
'Französisch Guyana' => 'GF',
|
||||||
|
'Französisch Polynesien' => 'PF',
|
||||||
|
'Französisches Süd-Territorium' => 'TF',
|
||||||
|
'Gabun' => 'GA',
|
||||||
|
'Gambia' => 'GM',
|
||||||
|
'Georgien' => 'GE',
|
||||||
|
'Ghana' => 'GH',
|
||||||
|
'Gibraltar' => 'GI',
|
||||||
|
'Grenada' => 'GD',
|
||||||
|
'Griechenland' => 'GR',
|
||||||
|
'Grönland' => 'GL',
|
||||||
|
'Großbritannien' => 'UK',
|
||||||
|
'Großbritannien (UK)' => 'GB',
|
||||||
|
'Guadeloupe' => 'GP',
|
||||||
|
'Guam' => 'GU',
|
||||||
|
'Guatemala' => 'GT',
|
||||||
|
'Guinea' => 'GN',
|
||||||
|
'Guinea Bissau' => 'GW',
|
||||||
|
'Guyana' => 'GY',
|
||||||
|
'Haiti' => 'HT',
|
||||||
|
'Heard und McDonald Islands' => 'HM',
|
||||||
|
'Honduras' => 'HN',
|
||||||
|
'Hong Kong' => 'HK',
|
||||||
|
'Indien' => 'IN',
|
||||||
|
'Indonesien' => 'ID',
|
||||||
|
'Irak' => 'IQ',
|
||||||
|
'Iran' => 'IR',
|
||||||
|
'Irland' => 'IE',
|
||||||
|
'Island' => 'IS',
|
||||||
|
'Israel' => 'IL',
|
||||||
|
'Italien' => 'IT',
|
||||||
|
'Jamaika' => 'JM',
|
||||||
|
'Japan' => 'JP',
|
||||||
|
'Jemen' => 'YE',
|
||||||
|
'Jordanien' => 'JO',
|
||||||
|
'Jugoslawien' => 'YU',
|
||||||
|
'Kaiman Inseln' => 'KY',
|
||||||
|
'Kambodscha' => 'KH',
|
||||||
|
'Kamerun' => 'CM',
|
||||||
|
'Kanada' => 'CA',
|
||||||
|
'Kap Verde' => 'CV',
|
||||||
|
'Kasachstan' => 'KZ',
|
||||||
|
'Kenia' => 'KE',
|
||||||
|
'Kirgisistan' => 'KG',
|
||||||
|
'Kiribati' => 'KI',
|
||||||
|
'Kokosinseln' => 'CC',
|
||||||
|
'Kolumbien' => 'CO',
|
||||||
|
'Komoren' => 'KM',
|
||||||
|
'Kongo' => 'CG',
|
||||||
|
'Kongo, Demokratische Republik' => 'CD',
|
||||||
|
'Kosovo' => 'KO',
|
||||||
|
'Kroatien' => 'HR',
|
||||||
|
'Kuba' => 'CU',
|
||||||
|
'Kuwait' => 'KW',
|
||||||
|
'Laos' => 'LA',
|
||||||
|
'Lesotho' => 'LS',
|
||||||
|
'Lettland' => 'LV',
|
||||||
|
'Libanon' => 'LB',
|
||||||
|
'Liberia' => 'LR',
|
||||||
|
'Libyen' => 'LY',
|
||||||
|
'Liechtenstein' => 'LI',
|
||||||
|
'Litauen' => 'LT',
|
||||||
|
'Luxemburg' => 'LU',
|
||||||
|
'Macao' => 'MO',
|
||||||
|
'Madagaskar' => 'MG',
|
||||||
|
'Malawi' => 'MW',
|
||||||
|
'Malaysia' => 'MY',
|
||||||
|
'Malediven' => 'MV',
|
||||||
|
'Mali' => 'ML',
|
||||||
|
'Malta' => 'MT',
|
||||||
|
'Marianen' => 'MP',
|
||||||
|
'Marokko' => 'MA',
|
||||||
|
'Marshall Inseln' => 'MH',
|
||||||
|
'Martinique' => 'MQ',
|
||||||
|
'Mauretanien' => 'MR',
|
||||||
|
'Mauritius' => 'MU',
|
||||||
|
'Mayotte' => 'YT',
|
||||||
|
'Mazedonien' => 'MK',
|
||||||
|
'Mexiko' => 'MX',
|
||||||
|
'Mikronesien' => 'FM',
|
||||||
|
'Mocambique' => 'MZ',
|
||||||
|
'Moldavien' => 'MD',
|
||||||
|
'Monaco' => 'MC',
|
||||||
|
'Mongolei' => 'MN',
|
||||||
|
'Montenegro' => 'ME',
|
||||||
|
'Montserrat' => 'MS',
|
||||||
|
'Namibia' => 'NA',
|
||||||
|
'Nauru' => 'NR',
|
||||||
|
'Nepal' => 'NP',
|
||||||
|
'Neukaledonien' => 'NC',
|
||||||
|
'Neuseeland' => 'NZ',
|
||||||
|
'Nicaragua' => 'NI',
|
||||||
|
'Niederlande' => 'NL',
|
||||||
|
'Niederländische Antillen' => 'AN',
|
||||||
|
'Niger' => 'NE',
|
||||||
|
'Nigeria' => 'NG',
|
||||||
|
'Niue' => 'NU',
|
||||||
|
'Nord Korea' => 'KP',
|
||||||
|
'Norfolk Inseln' => 'NF',
|
||||||
|
'Norwegen' => 'NO',
|
||||||
|
'Oman' => 'OM',
|
||||||
|
'Österreich' => 'AT',
|
||||||
|
'Pakistan' => 'PK',
|
||||||
|
'Palästina' => 'PS',
|
||||||
|
'Palau' => 'PW',
|
||||||
|
'Panama' => 'PA',
|
||||||
|
'Papua Neuguinea' => 'PG',
|
||||||
|
'Paraguay' => 'PY',
|
||||||
|
'Peru' => 'PE',
|
||||||
|
'Philippinen' => 'PH',
|
||||||
|
'Pitcairn' => 'PN',
|
||||||
|
'Polen' => 'PL',
|
||||||
|
'Portugal' => 'PT',
|
||||||
|
'Puerto Rico' => 'PR',
|
||||||
|
'Qatar' => 'QA',
|
||||||
|
'Reunion' => 'RE',
|
||||||
|
'Ruanda' => 'RW',
|
||||||
|
'Rumänien' => 'RO',
|
||||||
|
'Rußland' => 'RU',
|
||||||
|
'Saint Lucia' => 'LC',
|
||||||
|
'Sambia' => 'ZM',
|
||||||
|
'Samoa' => 'AS',
|
||||||
|
'Samoa' => 'WS',
|
||||||
|
'San Marino' => 'SM',
|
||||||
|
'Sao Tome' => 'ST',
|
||||||
|
'Saudi Arabien' => 'SA',
|
||||||
|
'Schweden' => 'SE',
|
||||||
|
'Schweiz' => 'CH',
|
||||||
|
'Senegal' => 'SN',
|
||||||
|
'Serbien' => 'RS',
|
||||||
|
'Seychellen' => 'SC',
|
||||||
|
'Sierra Leone' => 'SL',
|
||||||
|
'Singapur' => 'SG',
|
||||||
|
'Slowakei -slowakische Republik-' => 'SK',
|
||||||
|
'Slowenien' => 'SI',
|
||||||
|
'Solomon Inseln' => 'SB',
|
||||||
|
'Somalia' => 'SO',
|
||||||
|
'South Georgia, South Sandwich Isl.' => 'GS',
|
||||||
|
'Spanien' => 'ES',
|
||||||
|
'Sri Lanka' => 'LK',
|
||||||
|
'St. Helena' => 'SH',
|
||||||
|
'St. Kitts Nevis Anguilla' => 'KN',
|
||||||
|
'St. Pierre und Miquelon' => 'PM',
|
||||||
|
'St. Vincent' => 'VC',
|
||||||
|
'Süd Korea' => 'KR',
|
||||||
|
'Südafrika' => 'ZA',
|
||||||
|
'Sudan' => 'SD',
|
||||||
|
'Surinam' => 'SR',
|
||||||
|
'Svalbard und Jan Mayen Islands' => 'SJ',
|
||||||
|
'Swasiland' => 'SZ',
|
||||||
|
'Syrien' => 'SY',
|
||||||
|
'Tadschikistan' => 'TJ',
|
||||||
|
'Taiwan' => 'TW',
|
||||||
|
'Tansania' => 'TZ',
|
||||||
|
'Thailand' => 'TH',
|
||||||
|
'Timor' => 'TP',
|
||||||
|
'Togo' => 'TG',
|
||||||
|
'Tokelau' => 'TK',
|
||||||
|
'Tonga' => 'TO',
|
||||||
|
'Trinidad Tobago' => 'TT',
|
||||||
|
'Tschad' => 'TD',
|
||||||
|
'Tschechische Republik' => 'CZ',
|
||||||
|
'Tunesien' => 'TN',
|
||||||
|
'Türkei' => 'TR',
|
||||||
|
'Turkmenistan' => 'TM',
|
||||||
|
'Turks und Kaikos Inseln' => 'TC',
|
||||||
|
'Tuvalu' => 'TV',
|
||||||
|
'Uganda' => 'UG',
|
||||||
|
'Ukraine' => 'UA',
|
||||||
|
'Ungarn' => 'HU',
|
||||||
|
'Uruguay' => 'UY',
|
||||||
|
'Usbekistan' => 'UZ',
|
||||||
|
'Vanuatu' => 'VU',
|
||||||
|
'Vatikan' => 'VA',
|
||||||
|
'Venezuela' => 'VE',
|
||||||
|
'Vereinigte Arabische Emirate' => 'AE',
|
||||||
|
'Vereinigte Staaten von Amerika' => 'US',
|
||||||
|
'Vietnam' => 'VN',
|
||||||
|
'Virgin Island (Brit.)' => 'VG',
|
||||||
|
'Virgin Island (USA)' => 'VI',
|
||||||
|
'Wallis et Futuna' => 'WF',
|
||||||
|
'Weißrußland' => 'BY',
|
||||||
|
'Westsahara' => 'EH',
|
||||||
|
'Zentralafrikanische Republik' => 'CF',
|
||||||
|
'Zimbabwe' => 'ZW',
|
||||||
|
'Zypern' => 'CY'
|
||||||
|
);
|
||||||
|
return $laender;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
function GetLaender()
|
|
||||||
{
|
|
||||||
$laender = array(
|
|
||||||
'Afghanistan' => 'AF',
|
|
||||||
'Ägypten' => 'EG',
|
|
||||||
'Albanien' => 'AL',
|
|
||||||
'Algerien' => 'DZ',
|
|
||||||
'Andorra' => 'AD',
|
|
||||||
'Angola' => 'AO',
|
|
||||||
'Anguilla' => 'AI',
|
|
||||||
'Antarktis' => 'AQ',
|
|
||||||
'Antigua und Barbuda' => 'AG',
|
|
||||||
'Äquatorial Guinea' => 'GQ',
|
|
||||||
'Argentinien' => 'AR',
|
|
||||||
'Armenien' => 'AM',
|
|
||||||
'Aruba' => 'AW',
|
|
||||||
'Aserbaidschan' => 'AZ',
|
|
||||||
'Äthiopien' => 'ET',
|
|
||||||
'Australien' => 'AU',
|
|
||||||
'Bahamas' => 'BS',
|
|
||||||
'Bahrain' => 'BH',
|
|
||||||
'Bangladesh' => 'BD',
|
|
||||||
'Barbados' => 'BB',
|
|
||||||
'Belgien' => 'BE',
|
|
||||||
'Belize' => 'BZ',
|
|
||||||
'Benin' => 'BJ',
|
|
||||||
'Bermudas' => 'BM',
|
|
||||||
'Bhutan' => 'BT',
|
|
||||||
'Birma' => 'MM',
|
|
||||||
'Bolivien' => 'BO',
|
|
||||||
'Bosnien-Herzegowina' => 'BA',
|
|
||||||
'Botswana' => 'BW',
|
|
||||||
'Bouvet Inseln' => 'BV',
|
|
||||||
'Brasilien' => 'BR',
|
|
||||||
'Britisch-Indischer Ozean' => 'IO',
|
|
||||||
'Brunei' => 'BN',
|
|
||||||
'Bulgarien' => 'BG',
|
|
||||||
'Burkina Faso' => 'BF',
|
|
||||||
'Burundi' => 'BI',
|
|
||||||
'Chile' => 'CL',
|
|
||||||
'China' => 'CN',
|
|
||||||
'Christmas Island' => 'CX',
|
|
||||||
'Cook Inseln' => 'CK',
|
|
||||||
'Costa Rica' => 'CR',
|
|
||||||
'Dänemark' => 'DK',
|
|
||||||
'Deutschland' => 'DE',
|
|
||||||
'Djibuti' => 'DJ',
|
|
||||||
'Dominika' => 'DM',
|
|
||||||
'Dominikanische Republik' => 'DO',
|
|
||||||
'Ecuador' => 'EC',
|
|
||||||
'El Salvador' => 'SV',
|
|
||||||
'Elfenbeinküste' => 'CI',
|
|
||||||
'Eritrea' => 'ER',
|
|
||||||
'Estland' => 'EE',
|
|
||||||
'Falkland Inseln' => 'FK',
|
|
||||||
'Färöer Inseln' => 'FO',
|
|
||||||
'Fidschi' => 'FJ',
|
|
||||||
'Finnland' => 'FI',
|
|
||||||
'Frankreich' => 'FR',
|
|
||||||
'Französisch Guyana' => 'GF',
|
|
||||||
'Französisch Polynesien' => 'PF',
|
|
||||||
'Französisches Süd-Territorium' => 'TF',
|
|
||||||
'Gabun' => 'GA',
|
|
||||||
'Gambia' => 'GM',
|
|
||||||
'Georgien' => 'GE',
|
|
||||||
'Ghana' => 'GH',
|
|
||||||
'Gibraltar' => 'GI',
|
|
||||||
'Grenada' => 'GD',
|
|
||||||
'Griechenland' => 'GR',
|
|
||||||
'Grönland' => 'GL',
|
|
||||||
'Großbritannien' => 'UK',
|
|
||||||
'Großbritannien (UK)' => 'GB',
|
|
||||||
'Guadeloupe' => 'GP',
|
|
||||||
'Guam' => 'GU',
|
|
||||||
'Guatemala' => 'GT',
|
|
||||||
'Guinea' => 'GN',
|
|
||||||
'Guinea Bissau' => 'GW',
|
|
||||||
'Guyana' => 'GY',
|
|
||||||
'Haiti' => 'HT',
|
|
||||||
'Heard und McDonald Islands' => 'HM',
|
|
||||||
'Honduras' => 'HN',
|
|
||||||
'Hong Kong' => 'HK',
|
|
||||||
'Indien' => 'IN',
|
|
||||||
'Indonesien' => 'ID',
|
|
||||||
'Irak' => 'IQ',
|
|
||||||
'Iran' => 'IR',
|
|
||||||
'Irland' => 'IE',
|
|
||||||
'Island' => 'IS',
|
|
||||||
'Israel' => 'IL',
|
|
||||||
'Italien' => 'IT',
|
|
||||||
'Jamaika' => 'JM',
|
|
||||||
'Japan' => 'JP',
|
|
||||||
'Jemen' => 'YE',
|
|
||||||
'Jordanien' => 'JO',
|
|
||||||
'Jugoslawien' => 'YU',
|
|
||||||
'Kaiman Inseln' => 'KY',
|
|
||||||
'Kambodscha' => 'KH',
|
|
||||||
'Kamerun' => 'CM',
|
|
||||||
'Kanada' => 'CA',
|
|
||||||
'Kap Verde' => 'CV',
|
|
||||||
'Kasachstan' => 'KZ',
|
|
||||||
'Kenia' => 'KE',
|
|
||||||
'Kirgisistan' => 'KG',
|
|
||||||
'Kiribati' => 'KI',
|
|
||||||
'Kokosinseln' => 'CC',
|
|
||||||
'Kolumbien' => 'CO',
|
|
||||||
'Komoren' => 'KM',
|
|
||||||
'Kongo' => 'CG',
|
|
||||||
'Kongo, Demokratische Republik' => 'CD',
|
|
||||||
'Kosovo' => 'KO',
|
|
||||||
'Kroatien' => 'HR',
|
|
||||||
'Kuba' => 'CU',
|
|
||||||
'Kuwait' => 'KW',
|
|
||||||
'Laos' => 'LA',
|
|
||||||
'Lesotho' => 'LS',
|
|
||||||
'Lettland' => 'LV',
|
|
||||||
'Libanon' => 'LB',
|
|
||||||
'Liberia' => 'LR',
|
|
||||||
'Libyen' => 'LY',
|
|
||||||
'Liechtenstein' => 'LI',
|
|
||||||
'Litauen' => 'LT',
|
|
||||||
'Luxemburg' => 'LU',
|
|
||||||
'Macao' => 'MO',
|
|
||||||
'Madagaskar' => 'MG',
|
|
||||||
'Malawi' => 'MW',
|
|
||||||
'Malaysia' => 'MY',
|
|
||||||
'Malediven' => 'MV',
|
|
||||||
'Mali' => 'ML',
|
|
||||||
'Malta' => 'MT',
|
|
||||||
'Marianen' => 'MP',
|
|
||||||
'Marokko' => 'MA',
|
|
||||||
'Marshall Inseln' => 'MH',
|
|
||||||
'Martinique' => 'MQ',
|
|
||||||
'Mauretanien' => 'MR',
|
|
||||||
'Mauritius' => 'MU',
|
|
||||||
'Mayotte' => 'YT',
|
|
||||||
'Mazedonien' => 'MK',
|
|
||||||
'Mexiko' => 'MX',
|
|
||||||
'Mikronesien' => 'FM',
|
|
||||||
'Mocambique' => 'MZ',
|
|
||||||
'Moldavien' => 'MD',
|
|
||||||
'Monaco' => 'MC',
|
|
||||||
'Mongolei' => 'MN',
|
|
||||||
'Montenegro' => 'ME',
|
|
||||||
'Montserrat' => 'MS',
|
|
||||||
'Namibia' => 'NA',
|
|
||||||
'Nauru' => 'NR',
|
|
||||||
'Nepal' => 'NP',
|
|
||||||
'Neukaledonien' => 'NC',
|
|
||||||
'Neuseeland' => 'NZ',
|
|
||||||
'Nicaragua' => 'NI',
|
|
||||||
'Niederlande' => 'NL',
|
|
||||||
'Niederländische Antillen' => 'AN',
|
|
||||||
'Niger' => 'NE',
|
|
||||||
'Nigeria' => 'NG',
|
|
||||||
'Niue' => 'NU',
|
|
||||||
'Nord Korea' => 'KP',
|
|
||||||
'Norfolk Inseln' => 'NF',
|
|
||||||
'Norwegen' => 'NO',
|
|
||||||
'Oman' => 'OM',
|
|
||||||
'Österreich' => 'AT',
|
|
||||||
'Pakistan' => 'PK',
|
|
||||||
'Palästina' => 'PS',
|
|
||||||
'Palau' => 'PW',
|
|
||||||
'Panama' => 'PA',
|
|
||||||
'Papua Neuguinea' => 'PG',
|
|
||||||
'Paraguay' => 'PY',
|
|
||||||
'Peru' => 'PE',
|
|
||||||
'Philippinen' => 'PH',
|
|
||||||
'Pitcairn' => 'PN',
|
|
||||||
'Polen' => 'PL',
|
|
||||||
'Portugal' => 'PT',
|
|
||||||
'Puerto Rico' => 'PR',
|
|
||||||
'Qatar' => 'QA',
|
|
||||||
'Reunion' => 'RE',
|
|
||||||
'Ruanda' => 'RW',
|
|
||||||
'Rumänien' => 'RO',
|
|
||||||
'Rußland' => 'RU',
|
|
||||||
'Saint Lucia' => 'LC',
|
|
||||||
'Sambia' => 'ZM',
|
|
||||||
'Samoa' => 'AS',
|
|
||||||
'Samoa' => 'WS',
|
|
||||||
'San Marino' => 'SM',
|
|
||||||
'Sao Tome' => 'ST',
|
|
||||||
'Saudi Arabien' => 'SA',
|
|
||||||
'Schweden' => 'SE',
|
|
||||||
'Schweiz' => 'CH',
|
|
||||||
'Senegal' => 'SN',
|
|
||||||
'Serbien' => 'RS',
|
|
||||||
'Seychellen' => 'SC',
|
|
||||||
'Sierra Leone' => 'SL',
|
|
||||||
'Singapur' => 'SG',
|
|
||||||
'Slowakei -slowakische Republik-' => 'SK',
|
|
||||||
'Slowenien' => 'SI',
|
|
||||||
'Solomon Inseln' => 'SB',
|
|
||||||
'Somalia' => 'SO',
|
|
||||||
'South Georgia, South Sandwich Isl.' => 'GS',
|
|
||||||
'Spanien' => 'ES',
|
|
||||||
'Sri Lanka' => 'LK',
|
|
||||||
'St. Helena' => 'SH',
|
|
||||||
'St. Kitts Nevis Anguilla' => 'KN',
|
|
||||||
'St. Pierre und Miquelon' => 'PM',
|
|
||||||
'St. Vincent' => 'VC',
|
|
||||||
'Süd Korea' => 'KR',
|
|
||||||
'Südafrika' => 'ZA',
|
|
||||||
'Sudan' => 'SD',
|
|
||||||
'Surinam' => 'SR',
|
|
||||||
'Svalbard und Jan Mayen Islands' => 'SJ',
|
|
||||||
'Swasiland' => 'SZ',
|
|
||||||
'Syrien' => 'SY',
|
|
||||||
'Tadschikistan' => 'TJ',
|
|
||||||
'Taiwan' => 'TW',
|
|
||||||
'Tansania' => 'TZ',
|
|
||||||
'Thailand' => 'TH',
|
|
||||||
'Timor' => 'TP',
|
|
||||||
'Togo' => 'TG',
|
|
||||||
'Tokelau' => 'TK',
|
|
||||||
'Tonga' => 'TO',
|
|
||||||
'Trinidad Tobago' => 'TT',
|
|
||||||
'Tschad' => 'TD',
|
|
||||||
'Tschechische Republik' => 'CZ',
|
|
||||||
'Tunesien' => 'TN',
|
|
||||||
'Türkei' => 'TR',
|
|
||||||
'Turkmenistan' => 'TM',
|
|
||||||
'Turks und Kaikos Inseln' => 'TC',
|
|
||||||
'Tuvalu' => 'TV',
|
|
||||||
'Uganda' => 'UG',
|
|
||||||
'Ukraine' => 'UA',
|
|
||||||
'Ungarn' => 'HU',
|
|
||||||
'Uruguay' => 'UY',
|
|
||||||
'Usbekistan' => 'UZ',
|
|
||||||
'Vanuatu' => 'VU',
|
|
||||||
'Vatikan' => 'VA',
|
|
||||||
'Venezuela' => 'VE',
|
|
||||||
'Vereinigte Arabische Emirate' => 'AE',
|
|
||||||
'Vereinigte Staaten von Amerika' => 'US',
|
|
||||||
'Vietnam' => 'VN',
|
|
||||||
'Virgin Island (Brit.)' => 'VG',
|
|
||||||
'Virgin Island (USA)' => 'VI',
|
|
||||||
'Wallis et Futuna' => 'WF',
|
|
||||||
'Weißrußland' => 'BY',
|
|
||||||
'Westsahara' => 'EH',
|
|
||||||
'Zentralafrikanische Republik' => 'CF',
|
|
||||||
'Zimbabwe' => 'ZW',
|
|
||||||
'Zypern' => 'CY'
|
|
||||||
);
|
|
||||||
return $laender;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
//ENDE
|
//ENDE
|
||||||
|
|
||||||
|
|
||||||
if(empty($app) || !class_exists('ApplicationCore') || !($app instanceof ApplicationCore)) {
|
if (empty($app) || !class_exists('ApplicationCore') || !($app instanceof ApplicationCore)) {
|
||||||
$app = new app_t2();
|
$app = new app_t2();
|
||||||
}
|
}
|
||||||
if(empty($app->Conf)){
|
if (empty($app->Conf)) {
|
||||||
$conf = new Config();
|
$conf = new Config();
|
||||||
$app->Conf = $conf;
|
$app->Conf = $conf;
|
||||||
}
|
}
|
||||||
if(empty($app->DB)){
|
if (empty($app->DB)) {
|
||||||
$app->DB = new DB($app->Conf->WFdbhost, $app->Conf->WFdbname, $app->Conf->WFdbuser, $app->Conf->WFdbpass, null, $app->Conf->WFdbport);
|
$app->DB = new DB($app->Conf->WFdbhost, $app->Conf->WFdbname, $app->Conf->WFdbuser, $app->Conf->WFdbpass, null, $app->Conf->WFdbport);
|
||||||
}
|
}
|
||||||
if(empty($app->erp)){
|
if (empty($app->erp)) {
|
||||||
$erp = new erpAPI($app);
|
$erp = new erpAPI($app);
|
||||||
$app->erp = $erp;
|
$app->erp = $erp;
|
||||||
}
|
}
|
||||||
$app->String = new WawiString();
|
$app->String = new WawiString();
|
||||||
if(empty($app->remote)){
|
if (empty($app->remote)) {
|
||||||
if(is_file(dirname(__DIR__) . '/www/lib/class.remote_custom.php')){
|
if (is_file(dirname(__DIR__) . '/www/lib/class.remote_custom.php')) {
|
||||||
require_once dirname(__DIR__) . '/www/lib/class.remote_custom.php';
|
require_once dirname(__DIR__) . '/www/lib/class.remote_custom.php';
|
||||||
$app->remote = new RemoteCustom($app);
|
$app->remote = new RemoteCustom($app);
|
||||||
|
} else {
|
||||||
|
$app->remote = new Remote($app);
|
||||||
}
|
}
|
||||||
else{
|
}
|
||||||
$app->remote = new Remote($app);
|
//$app->remote = new Remote($app);
|
||||||
}
|
$app->Secure = new Secure($app);
|
||||||
}
|
$app->User = new User($app);
|
||||||
//$app->remote = new Remote($app);
|
if (!defined('FPDF_FONTPATH')) {
|
||||||
$app->Secure = new Secure($app);
|
define('FPDF_FONTPATH', dirname(__DIR__) . '/www/lib/pdf/font/');
|
||||||
$app->User = new User($app);
|
}
|
||||||
if(!defined('FPDF_FONTPATH')) {
|
|
||||||
define('FPDF_FONTPATH',dirname(__DIR__).'/www/lib/pdf/font/');
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
//ENDE
|
//ENDE
|
||||||
|
|
||||||
const MAXIMUM_NUMBER_OF_TRIES = 10;
|
const MAXIMUM_NUMBER_OF_TRIES = 10;
|
||||||
|
|
||||||
$shops = $app->DB->SelectFirstCols(
|
$shops = $app->DB->SelectFirstCols(
|
||||||
'SELECT id FROM shopexport WHERE auftragabgleich = 1 AND aktiv = 1 AND demomodus <> 1 AND sendonlywithtracking = 0'
|
'SELECT id FROM shopexport WHERE auftragabgleich = 1 AND aktiv = 1 AND demomodus <> 1 AND sendonlywithtracking = 0'
|
||||||
);
|
);
|
||||||
if(empty($shops)) {
|
if (empty($shops)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$app->DB->Update("UPDATE prozessstarter SET mutexcounter = mutexcounter + 1 WHERE mutex = 1 AND (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
$app->DB->Update("UPDATE prozessstarter SET mutexcounter = mutexcounter + 1 WHERE mutex = 1 AND (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
||||||
if(!$app->DB->Select("SELECT id FROM prozessstarter WHERE mutex = 0 AND (parameter = 'shop_rueckmeldungen') AND aktiv = 1")) {
|
if (!$app->DB->Select("SELECT id FROM prozessstarter WHERE mutex = 0 AND (parameter = 'shop_rueckmeldungen') AND aktiv = 1")) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
$app->DB->Update("UPDATE prozessstarter SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now() WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
$app->DB->Update("UPDATE prozessstarter SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now() WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
||||||
|
|
||||||
$subwhere = sprintf(' a.shop IN (%s) ', implode(',', $shops));
|
$subwhere = sprintf(' a.shop IN (%s) ', implode(',', $shops));
|
||||||
$join = '';
|
$join = '';
|
||||||
$where = '';
|
$where = '';
|
||||||
$app->erp->RunHook('shop_rueckmeldung', 2, $join, $where);
|
$app->erp->RunHook('shop_rueckmeldung', 2, $join, $where);
|
||||||
$sql = "SELECT a.id,apro.zeit, a.shop, l.id as lieferschein, v.id as versandid, l.projekt
|
$sql = "SELECT a.id,apro.zeit, a.shop, l.id as lieferschein, v.id as versandid, l.projekt
|
||||||
FROM auftrag AS a
|
FROM auftrag AS a
|
||||||
LEFT JOIN lieferschein AS l on l.auftragid = a.id
|
LEFT JOIN lieferschein AS l on l.auftragid = a.id
|
||||||
LEFT JOIN auftrag_protokoll AS apro ON a.id = apro.auftrag AND apro.grund LIKE 'Auftrag importiert vom Shop'
|
LEFT JOIN auftrag_protokoll AS apro ON a.id = apro.auftrag AND apro.grund LIKE 'Auftrag importiert vom Shop'
|
||||||
@ -403,41 +399,41 @@ function GetLaender()
|
|||||||
((pr.kommissionierverfahren = 'lieferschein' OR pr.kommissionierverfahren = 'rechnungsmail') AND isnull(v.id))
|
((pr.kommissionierverfahren = 'lieferschein' OR pr.kommissionierverfahren = 'rechnungsmail') AND isnull(v.id))
|
||||||
)
|
)
|
||||||
AND (ISNULL(a.shop_status_update_last_attempt_at) OR a.shop_status_update_last_attempt_at < DATE_SUB(NOW(), INTERVAL 4 HOUR))
|
AND (ISNULL(a.shop_status_update_last_attempt_at) OR a.shop_status_update_last_attempt_at < DATE_SUB(NOW(), INTERVAL 4 HOUR))
|
||||||
AND a.shop_status_update_attempt <= ".MAXIMUM_NUMBER_OF_TRIES."
|
AND a.shop_status_update_attempt <= " . MAXIMUM_NUMBER_OF_TRIES . "
|
||||||
$where
|
$where
|
||||||
ORDER BY a.id, l.id DESC, v.id DESC
|
ORDER BY a.id, l.id DESC, v.id DESC
|
||||||
";
|
";
|
||||||
|
|
||||||
$auftraege = $app->DB->SelectArr($sql);
|
$auftraege = $app->DB->SelectArr($sql);
|
||||||
if(!empty($auftraege)) {
|
if (!empty($auftraege)) {
|
||||||
$app->DB->Update(
|
$app->DB->Update(
|
||||||
"UPDATE prozessstarter
|
"UPDATE prozessstarter
|
||||||
SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now()
|
SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now()
|
||||||
WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1"
|
WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1"
|
||||||
);
|
);
|
||||||
$auftragid = null;
|
$auftragid = null;
|
||||||
$countRequests = 0;
|
$countRequests = 0;
|
||||||
foreach($auftraege as $auftrag) {
|
foreach ($auftraege as $auftrag) {
|
||||||
if($auftrag['id'] != $auftragid) {
|
if ($auftrag['id'] != $auftragid) {
|
||||||
$countRequests++;
|
$countRequests++;
|
||||||
$auftragid = $auftrag['id'];
|
$auftragid = $auftrag['id'];
|
||||||
$app->remote->RemoteUpdateAuftrag($auftrag['shop'], $auftrag['id']);
|
$app->remote->RemoteUpdateAuftrag($auftrag['shop'], $auftrag['id']);
|
||||||
if($countRequests % 10 === 0) {
|
if ($countRequests % 10 === 0) {
|
||||||
$app->DB->Update(
|
$app->DB->Update(
|
||||||
"UPDATE prozessstarter
|
"UPDATE prozessstarter
|
||||||
SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now()
|
SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now()
|
||||||
WHERE parameter = 'shop_rueckmeldungen' AND aktiv = 1"
|
WHERE parameter = 'shop_rueckmeldungen' AND aktiv = 1"
|
||||||
);
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
}
|
}
|
||||||
unset($auftraege);
|
unset($auftraege);
|
||||||
}
|
}
|
||||||
$app->DB->Update("UPDATE prozessstarter SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now() WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
$app->DB->Update("UPDATE prozessstarter SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now() WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
||||||
|
|
||||||
//Zahlungsstatus
|
//Zahlungsstatus
|
||||||
$query = $app->DB->Query(
|
$query = $app->DB->Query(
|
||||||
"SELECT a.id
|
"SELECT a.id
|
||||||
FROM `auftrag` AS `a`
|
FROM `auftrag` AS `a`
|
||||||
LEFT JOIN `rechnung` AS `r1` ON r1.id = a.rechnungid
|
LEFT JOIN `rechnung` AS `r1` ON r1.id = a.rechnungid
|
||||||
LEFT JOIN `rechnung` AS `r2` ON r2.auftragid = a.id
|
LEFT JOIN `rechnung` AS `r2` ON r2.auftragid = a.id
|
||||||
@ -448,21 +444,22 @@ function GetLaender()
|
|||||||
AND (r1.zahlungsstatus = 'bezahlt' OR r2.zahlungsstatus = 'bezahlt') AND DATEDIFF(NOW(), a.datum) <= 28
|
AND (r1.zahlungsstatus = 'bezahlt' OR r2.zahlungsstatus = 'bezahlt') AND DATEDIFF(NOW(), a.datum) <= 28
|
||||||
GROUP BY a.id
|
GROUP BY a.id
|
||||||
LIMIT 1000"
|
LIMIT 1000"
|
||||||
);
|
);
|
||||||
if($query) {
|
if ($query) {
|
||||||
$countRequests = 0;
|
$countRequests = 0;
|
||||||
while($row = $app->DB->Fetch_Assoc($query)) {
|
while ($row = $app->DB->Fetch_Assoc($query)) {
|
||||||
$app->erp->ImportUpdateZahlungsstatus($row['id']);
|
$app->erp->ImportUpdateZahlungsstatus($row['id']);
|
||||||
$countRequests++;
|
$countRequests++;
|
||||||
if($countRequests % 10 === 0) {
|
if ($countRequests % 10 === 0) {
|
||||||
$app->DB->Update(
|
$app->DB->Update(
|
||||||
"UPDATE prozessstarter
|
"UPDATE prozessstarter
|
||||||
SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now()
|
SET mutex = 1 , mutexcounter = 0, letzteausfuerhung = now()
|
||||||
WHERE parameter = 'shop_rueckmeldungen' AND aktiv = 1"
|
WHERE parameter = 'shop_rueckmeldungen' AND aktiv = 1"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
$app->DB->free($query);
|
$app->DB->free($query);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
$app->DB->Update("UPDATE prozessstarter SET mutex = 0, mutexcounter = 0, letzteausfuerhung = now() WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
||||||
|
|
||||||
$app->DB->Update("UPDATE prozessstarter SET mutex = 0, mutexcounter = 0, letzteausfuerhung = now() WHERE (parameter = 'shop_rueckmeldungen' ) AND aktiv = 1");
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user