mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-24 03:15:32 +08:00
16 lines
548 B
PHP
16 lines
548 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
$root_dir = realpath(dirname(__FILE__).'/../../../../');
|
||
require_once($root_dir."/script/crontab/runtime.php");
|
||
|
||
// 库存状况综合分析
|
||
if ( kernel::single('ome_func')->isRunTime('04:00',$msg) ){
|
||
echo "storeStatus begin(".date('Y-m-d H:i:s',time()).")...\n";
|
||
kernel::single('omeanalysts_crontab_script_storeStatus')->statistics();
|
||
echo "storeStatus end(".date('Y-m-d H:i:s',time()).")...\n";
|
||
exit;
|
||
} |