Files
OMS/app/eccommon/lib/analysis/abstract.php
2026-01-04 19:08:31 +08:00

326 lines
12 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.
*/
abstract class eccommon_analysis_abstract
{
protected $_serivce = null;
protected $_params = null;
protected $_render = null;
protected $_extra_view = null;
protected $_title = null;
public $layout = 1;
public $report_type = 'false';
public $logs_options = array();
public $type_options = array();
public $detail_options = array(
'hidden' => false,
'force_ext' => false,
);
public $graph_options = array(
'hidden' => false,
'iframe_height' => 180,
);
public $rank_options = array(
);
public $finder_options = array(
'hidden' => false,
);
function __construct(&$app)
{
$this->app = $app;
$_router = kernel::router();
if(is_object($_router)){
$this->_render = kernel::single('desktop_controller');
}
$this->_params = array();
$this->_service = get_class($this);
$this->_extra_view = array('eccommon' => 'analysis/extra_view.html');
$this->analysis_config = app::get('eccommon')->getConf('analysis_config');
if(isset($this->analysis_config) && is_object($_router)){
$this->_render->pagedata['time_shortcut'] = $this->analysis_config['setting']['time_shortcut'];
}
}//End Function
/**
* 获取_logs
* @param mixed $time time
* @return mixed 返回结果
*/
public function get_logs($time)
{
//todo:各自实现
}//End Function
/**
* 设置_params
* @param mixed $params 参数
* @return mixed 返回操作结果
*/
public function set_params($params)
{
$this->_params = $params;
if(isset($this->analysis_config)){
$time_from = date("Y-m-d", time()-(date('w')?date('w')-$this->analysis_config['setting']['week']:7-$this->analysis_config['setting']['week'])*86400);
}else{
$time_from = date("Y-m-d", time()-(date('w')?date('w')-1:6)*86400);
}
$time_to = date("Y-m-d", strtotime($time_from)+86400*7-1);
$this->_params['time_from'] = ($this->_params['time_from']) ? $this->_params['time_from'] : $time_from;
$this->_params['time_to'] = ($this->_params['time_to']) ? $this->_params['time_to'] : $time_to;
$this->_params['order_status'] = $this->analysis_config['filter']['order_status'];
return $this;
}//End Function
/**
* 设置_extra_view
* @param mixed $array array
* @return mixed 返回操作结果
*/
public function set_extra_view($array)
{
$this->_extra_view = $array;
return $this;
}//End Function
/**
* 设置_service
* @param mixed $service service
* @return mixed 返回操作结果
*/
public function set_service($service){
$this->_service = $service;
return $this;
}
/**
* graph
* @return mixed 返回值
*/
public function graph()
{
if($this->graph_options['hidden'] == true){
$this->_render->pagedata['graph_hidden'] = 1;
return false;
}
foreach($this->logs_options AS $key=>$val){
$this->_render->pagedata['graph'][$key]['name'] = $this->app->_($val['name']);
}
$this->_render->pagedata['target'] = ($this->_render->pagedata['target']) ? $this->_render->pagedata['target'] : 1;
$this->_render->pagedata['ext_url'] .= '&type='.$this->_params['type'];
$this->_render->pagedata['ext_url'] .= '&time_from='.$this->_params['time_from'];
$this->_render->pagedata['ext_url'] .= '&time_to='.$this->_params['time_to'];
$this->_render->pagedata['ext_url'] .= '&service='.$this->_service;
$this->_render->pagedata['ext_url'] .= '&callback='.$this->graph_options['callback'];
$this->_render->pagedata['ext_url'] .= '&report='.$this->_params['report'];
$this->_render->pagedata['iframe_height'] = $this->graph_options['iframe_height'];
return true;
}//End Function
/**
* detail
* @return mixed 返回值
*/
public function detail()
{
if($this->detail_options['hidden'] == true){
$this->_render->pagedata['detail_hidden'] = 1;
return false;
}
$detail = array();
if($this->detail_options['force_ext'] == false){
$analysis_id = app::get('eccommon')->model('analysis')->select()->columns('id')->where('service = ?', $this->_service)->instance()->fetch_one();
$obj = app::get('eccommon')->model('analysis_logs')->select()->columns('target, sum(value) AS value')->where('analysis_id = ?', $analysis_id);
if(isset($this->_params['type'])) $obj->where('type = ?', $this->_params['type']);
if(isset($this->_params['target'])) $obj->where('target = ?', $this->_params['target']);
if(isset($this->_params['time_from'])) $obj->where('time >= ?', strtotime(sprintf('%s 00:00:00', $this->_params['time_from'])));
if(isset($this->_params['time_to'])) $obj->where('time <= ?', strtotime(sprintf('%s 23:59:59', $this->_params['time_to'])));
$rows = $obj->where('flag = ?', 0)->group(array('target'))->instance()->fetch_all();
foreach($rows AS $row){
$tmp[$row['target']] = $row['value'];
}
foreach($this->logs_options AS $target=>$option){
$detail[$option['name']]['value'] = ($tmp[$target]) ? $tmp[$target] : 0;
$detail[$option['name']]['memo'] = $this->logs_options[$target]['memo'];
$detail[$option['name']]['icon'] = $this->logs_options[$target]['icon'];
}
}
if(method_exists($this, 'ext_detail')){
$this->ext_detail($detail);
}
foreach($detail AS $key=>$val){
$name = $this->app->_($key);
$data[$name]['value'] = $val['value'];
$data[$name]['memo'] = $this->app->_($val['memo']);
$data[$name]['icon'] = $val['icon'];
}
$this->_render->pagedata['detail'] = $data;
return true;
}//End Function
/**
* 获取_type
* @return mixed 返回结果
*/
public function get_type()
{
//todo:各自实现
}//End Function
// 展示报表配置中的报表统计时间
/**
* 获取_time_explain
* @return mixed 返回结果
*/
public function get_time_explain()
{
$time_explain = '';
$config = app::get('eccommon')->getConf('analysis_config');
if(isset($config['filter']['order_status']) && $config['filter']['order_status']){
switch($config['filter']['order_status']){
case 'createorder':
$time_explain = '(创建时间)';
break;
case 'confirmed':
$time_explain = '(确认时间)';
break;
case 'pay':
$time_explain = '(付款时间)';
break;
case 'ship':
$time_explain = '(发货时间)';
break;
}
}
return $time_explain;
}
/**
* rank
* @return mixed 返回值
*/
public function rank()
{
//todo:各自实现
}//End Function
/**
* 查找er
* @return mixed 返回结果
*/
public function finder()
{
//todo:各自实现
}//End Function
/**
* headers
* @return mixed 返回值
*/
public function headers()
{
$this->_render->pagedata['title'] = $this->_title;
$this->_render->pagedata['time_from'] = $this->_params['time_from'];
$this->_render->pagedata['time_to'] = $this->_params['time_to'];
$this->_render->pagedata['today'] = date("Y-m-d");
$this->_render->pagedata['yesterday'] = date("Y-m-d", time()-86400);
if(isset($this->analysis_config)){
$this->_render->pagedata['this_week_from'] = date("Y-m-d", time()-(date('w')?date('w')-$this->analysis_config['setting']['week']:7-$this->analysis_config['setting']['week'])*86400);
}else{
$this->_render->pagedata['this_week_from'] = date("Y-m-d", time()-(date('w')?date('w')-1:6)*86400);
}
$this->_render->pagedata['this_week_to'] = date("Y-m-d", strtotime($this->_render->pagedata['this_week_from'])+86400*7-1);
$this->_render->pagedata['last_week_from'] = date("Y-m-d", strtotime($this->_render->pagedata['this_week_from'])-7*86400);
$this->_render->pagedata['last_week_to'] = date("Y-m-d", strtotime($this->_render->pagedata['last_week_from'])+86400*7-1);
$this_month_t = date('t');
$this->_render->pagedata['this_month_from'] = date("Y-m-" . 01);
$this->_render->pagedata['this_month_to'] = date("Y-m-" . $this_month_t);
$last_month_t = date('t', strtotime("last month"));
$this->_render->pagedata['last_month_from'] = date("Y-m-" . 01, strtotime("last month"));
$this->_render->pagedata['last_month_to'] = date("Y-m-" . $last_month_t, strtotime("last month"));
$this->_render->pagedata['layout'] = $this->layout;
if($this->report_type == 'true'){
$this->_render->pagedata['report'] = $this->_params['report'];
$this->_render->pagedata['report_type'] = $this->report_type;
$this->_render->pagedata['month'] = array(1,2,3,4,5,6,7,8,9,10,11,12);
for($i = 2000;$i<=date("Y",time());$i++){
$year[] = $i;
}
$this->_render->pagedata['year'] = $year;
$this->_render->pagedata['from_selected'] = explode('-',$this->_params['time_from']);
$this->_render->pagedata['to_selected'] = explode('-',$this->_params['time_to']);
}
if($this->type_options['display'] == 'true'){
$this->_render->pagedata['type_display'] = 'true';
$this->_render->pagedata['typeData'] = $this->get_type();
$this->_render->pagedata['type_selected'] = $this->_params['type_id'];
}
}//End Function
/**
* display
* @param mixed $fetch fetch
* @return mixed 返回值
*/
public function display($fetch=false)
{
$this->headers();
$this->detail();
$this->graph();
$this->rank();
if($this->finder_options['hidden']){
foreach($this->_extra_view AS $app_id=>$view){
$content = $this->_render->fetch($view, $app_id);
break;
}
}else{
$finder = $this->finder();
$finder['params']['base_filter'] = $this->_params;
$finder['params']['top_extra_view'] = $this->_extra_view;
ob_start();
$this->_render->finder($finder['model'], $finder['params']);
$content = ob_get_contents();
ob_end_clean();
}
if($fetch){
return $content;
}else{
echo $content;
}
}//End Function
/**
* fetch
* @return mixed 返回值
*/
public function fetch()
{
return $this->display(true);
}//End Function
}//End Function