Files
OMS/app/ome/lib/syncshoporder.php
2025-12-28 23:13:25 +08:00

34 lines
850 B
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.
*/
/**
* ShopEx licence
*
* @copyright Copyright (c) 2005-2012 ShopEx Technologies Inc. (http://www.shopex.cn)
* @license http://ecos.shopex.cn/ ShopEx License
* @version tg---yangminsheng
* @date 2012-06-19
*/
class ome_syncshoporder{
function create($queue_title,$method,$params,&$oApi_log,$status){
$log_id = $oApi_log->gen_id();
$oApi_log->write_log($log_id,$queue_title,'ome_rpc_request','rpc_request',$params,'request',$status,'');
return true;
}
function fetchAll(&$apilog){
$params = array();
$params = $apilog->getList('order_bn,shop_id,log_id',array('status'=>'running','order_bn|noequal'=>''));
return $params;
}
}