mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-01 21:46:43 +08:00
16 lines
523 B
PHP
16 lines
523 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 ( omequeue_queue::is_allow_exec('04:02') ){
|
||
echo "zeroSale begin(".date('Y-m-d H:i:s',time()).")...\n";
|
||
kernel::single('omeanalysts_crontab_script_zeroSale')->statistics();
|
||
echo "zeroSale end(".date('Y-m-d H:i:s',time()).")...\n";
|
||
exit;
|
||
} |