mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 19:05:34 +08:00
83 lines
3.0 KiB
PHP
83 lines
3.0 KiB
PHP
<?php
|
|
/**
|
|
* Copyright 2012-2026 ShopeX (https://www.shopex.cn)
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
class ome_ctl_admin_api_orders extends desktop_controller{
|
|
var $workground = 'admin_api_orders';
|
|
|
|
function index($status = 'all'){
|
|
$base_filter = '';
|
|
//$orderby = ' log_id ';
|
|
|
|
switch($status){
|
|
case 'running':
|
|
$this->title = '同步中';
|
|
$base_filter = array('status'=>'running');
|
|
break;
|
|
case 'success':
|
|
$this->title = '同步成功';
|
|
$base_filter = array('status'=>'success');
|
|
break;
|
|
case 'fail':
|
|
$this->title = '同步失败';
|
|
$base_filter = array('status'=>'fail');
|
|
break;
|
|
default:
|
|
$this->title = '前端订单列表同步管理';
|
|
break;
|
|
}
|
|
|
|
$params = array(
|
|
'title'=>$this->title,
|
|
'use_buildin_new_dialog' => false,
|
|
'use_buildin_set_tag'=>false,
|
|
'use_buildin_recycle'=>false,
|
|
'use_buildin_export'=>false,
|
|
'use_buildin_import'=>false,
|
|
'use_buildin_filter'=>true,
|
|
//'orderBy' => $orderby,
|
|
);
|
|
|
|
if($base_filter){
|
|
$params['base_filter'] = $base_filter;
|
|
}
|
|
|
|
$this->finder('ome_mdl_api_order_log',$params);
|
|
}
|
|
|
|
|
|
function _views(){
|
|
$oApiStock = $this->app->model('api_order_log');
|
|
$base_filter = array('disabled'=>'false');
|
|
$sub_menu = array(
|
|
0 => array('label'=>app::get('base')->_('前端订单列表同步管理'),'filter'=>$base_filter,'optional'=>false),
|
|
2 => array('label'=>app::get('base')->_('同步中'),'filter'=>array('status' => 'running'),'optional'=>false),
|
|
3 => array('label'=>app::get('base')->_('同步成功'),'filter'=>array('status' => 'success'),'optional'=>false),
|
|
4 => array('label'=>app::get('base')->_('同步失败'),'filter'=>array('status' => 'fail'),'optional'=>false),
|
|
);
|
|
$i=0;
|
|
foreach($sub_menu as $k=>$v){
|
|
if (!IS_NULL($v['filter'])){
|
|
$v['filter'] = array_merge($v['filter'], $base_filter);
|
|
}
|
|
$sub_menu[$k]['filter'] = $v['filter']?$v['filter']:null;
|
|
$sub_menu[$k]['addon'] = $oApiStock->count($v['filter']);
|
|
$sub_menu[$k]['href'] = 'index.php?app=ome&ctl='.$_GET['ctl'].'&act='.$_GET['act'].'&p[0]='.$v['filter']['status'].'&view='.$i++;
|
|
}
|
|
return $sub_menu;
|
|
}
|
|
|
|
} |