Files
OMS/app/omeanalysts/lib/misc/task.php
2025-12-28 23:13:25 +08:00

60 lines
1.8 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
class omeanalysts_misc_task{
function week(){
}
function minute(){
// $time = time();
// $minute = date('i',$time);
// base_kvstore::instance('setting_taskmgr')->fetch('crontab_get_shoporderlist',$last_crontab_get_shoporderlist);
// if($last_crontab_get_shoporderlist){
// if($time >= ($last_crontab_get_shoporderlist + 300)){
// base_kvstore::instance('setting_taskmgr')->store('crontab_get_shoporderlist',$time);
// /*检查是否漏单begin*/
// kernel::single('ome_rpc_request_miscorder')->getlist_order();
// $ome_syncorder = kernel::single("ome_syncorder");
// $omequeueModel = kernel::single("ome_syncshoporder");
// $apilog = app::get('ome')->model('api_order_log');
// $orderinfo = $omequeueModel->fetchAll($apilog);
// if(!empty($orderinfo)){
// $i=0;
// while(true){
// if(!$orderinfo[$i]['order_bn']) return false;
// $params['order_bn'] = $orderinfo[$i]['order_bn'];
// $params['shop_id'] = $orderinfo[$i]['shop_id'];
// $params['log_id'] = $orderinfo[$i]['log_id'];
// $res = $ome_syncorder->get_order_list_detial($params);
// $i++;
// }
// }
// /*检查是否漏单end*/
// }
// }else{
// base_kvstore::instance('setting_taskmgr')->store('crontab_get_shoporderlist',$time);
// }
}
function hour(){
}
function day(){
}
function month(){
}
}