23 lines
640 B
PHP
23 lines
640 B
PHP
|
|
<?php
|
||
|
|
error_reporting(E_ERROR | E_WARNING | E_PARSE);
|
||
|
|
if(!defined('sugarEntry'))define('sugarEntry', true);
|
||
|
|
chdir(realpath(dirname(__FILE__)));
|
||
|
|
require_once('include/entryPoint.php');
|
||
|
|
require_once("modules/Schedulers/_AddJobsHere.php");
|
||
|
|
checkEDISales();
|
||
|
|
|
||
|
|
/*
|
||
|
|
foreach ( $orders as $order ) {
|
||
|
|
$s = new EcmSale ();
|
||
|
|
$reader = new readXML ();
|
||
|
|
$reader->loadXMLFile ( 'archive/'.$order );
|
||
|
|
$reader->loader ( $s );
|
||
|
|
if ($s->parent_document_no == '190034733' || $s->parent_document_no == '190168202') {
|
||
|
|
echo $s->parent_document_no.' '.$order.' '.$s->shop_number.PHP_EOL;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
*/
|
||
|
|
?>
|
||
|
|
|
||
|
|
|