mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
92 lines
3.3 KiB
PHP
92 lines
3.3 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 omeanalysts_ome_goodsrma extends eccommon_analysis_abstract implements eccommon_analysis_interface{
|
|
public $report_type ='false';
|
|
protected $_title = '商品售后量统计';
|
|
public $detail_options = array(
|
|
'hidden' => true,
|
|
'force_ext' => false,
|
|
);
|
|
|
|
public $graph_options = array(
|
|
'hidden' => true,
|
|
);
|
|
|
|
function __construct(&$app)
|
|
{
|
|
parent::__construct($app);
|
|
$this->_render = kernel::single('desktop_controller');
|
|
|
|
for($i=0;$i<=5;$i++){
|
|
if ($i == 1) continue;
|
|
$val = $i+1;
|
|
$this->_render->pagedata['time_shortcut'][$i] = $val;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* 查找er
|
|
* @return mixed 返回结果
|
|
*/
|
|
public function finder(){
|
|
$filter = $this->_params;
|
|
if(isset($filter['report']) && $filter['report']=='month'){
|
|
$filter['time_from'] = date("Y-m-d", $filter['time_from']);
|
|
$filter['time_to'] = date("Y-m-d",$filter['time_to']);
|
|
}
|
|
$base_query_string = 'time_from='.$filter['time_from'].'&time_to='.$filter['time_to'];
|
|
return array(
|
|
'model' => 'omeanalysts_mdl_ome_goodsrma',
|
|
'params' => array(
|
|
'actions'=>array(
|
|
array(
|
|
'class' => 'export',
|
|
'label' => '生成报表',
|
|
'href'=>'index.php?app=omeanalysts&ctl=ome_goodsrma&act=index&action=export',
|
|
'target'=>'{width:400,height:170,title:\'生成报表\'}'
|
|
),
|
|
),
|
|
'title'=>app::get('omeanalysts')->_('商品售后统计<script>if($$(".finder-list").getElement("tbody").get("html") == "\n" || $$(".finder-list").getElement("tbody").get("html") == "" ){$$(".export").set("href","javascript:;").set("onclick", "alert(\"没有可以生成的数据\")");}else{$$(".export").set("href",\'index.php?app=omeanalysts&ctl=ome_goodsrma&act=goods_rma&action=export\');}</script>'),
|
|
'use_buildin_recycle'=>false,
|
|
'use_buildin_selectrow'=>false,
|
|
'base_query_string'=>$base_query_string,
|
|
),
|
|
);
|
|
}
|
|
|
|
/**
|
|
* rank
|
|
* @return mixed 返回值
|
|
*/
|
|
public function rank() {
|
|
$filter = $this->_params;
|
|
$filter['time_from'] = isset($filter['time_from'])?$filter['time_from']:'';
|
|
$filter['time_to'] = isset($filter['time_to'])?$filter['time_to']:'';
|
|
|
|
$render = kernel::single('base_render');
|
|
|
|
$render->pagedata['timefrom'] = $filter['time_from'];
|
|
$render->pagedata['timeto'] = $filter['time_to'];
|
|
|
|
$html = $render->fetch('ome/goodsrma.html','omeanalysts');
|
|
|
|
$this->_render->pagedata['rank_html'] = $html;
|
|
}
|
|
|
|
|
|
} |