mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-16 10:35:34 +08:00
88 lines
3.3 KiB
PHP
88 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_ctl_ome_goodsaftersale extends desktop_controller{
|
|
|
|
|
|
var $name = "商品售后汇总";
|
|
|
|
function index(){
|
|
//修改日期范围
|
|
$_SESSION['data'] = $_REQUEST;
|
|
$this->mod_query_time();
|
|
kernel::single('omeanalysts_ome_goodsaftersale')->set_params($_POST)->display();
|
|
}
|
|
|
|
//商品售后汇总
|
|
/**
|
|
* export
|
|
* @return mixed 返回值
|
|
*/
|
|
public function export(){
|
|
$name = $_POST['name'];
|
|
$filetype = $_POST['filetype'];
|
|
$filter = unserialize($_POST['filter']);
|
|
|
|
$params = array(
|
|
'name' => $name,
|
|
'app' => 'omeanalysts',
|
|
'model' => 'ome_goodsaftersale',
|
|
'type' => 'export',
|
|
'filetype' => $filetype,
|
|
'filter' => $filter,
|
|
'single'=> array(
|
|
'1'=> array(
|
|
'method' => 'get_export_main',
|
|
'offset' => 0,
|
|
'limit' => 500,
|
|
'filename' => 'goodsaftersaleContent',
|
|
),
|
|
),
|
|
);
|
|
$task = kernel::service('service.queue.ietask');
|
|
$task->create($params);
|
|
}
|
|
|
|
function mod_query_time(){
|
|
|
|
$date_arr = $this->get_time_start();
|
|
if(empty($_POST) && !isset($_REQUEST['time_from']) && !isset($_REQUEST['time_to'])){
|
|
$_POST['time_from'] = $date_arr['now_zero_day'];
|
|
$_POST['time_to'] = $date_arr['now_zero_day'];
|
|
}
|
|
|
|
}
|
|
|
|
function get_time_start(){
|
|
$t = time();
|
|
$nowday = date('Y-m-d',mktime(0,0,0,date("m",$t),date("d",$t),date("Y",$t))); //当天零点的时间戳
|
|
$nowmonth = date('Y-m-d',mktime(0,0,0,date("m",$t),1,date("Y",$t))); //当月一号零点的时间戳
|
|
$nextmonth = date('Y-m-d',mktime(0,0,0,date("m",$t)+1,1,date("Y",$t))); //下月一号零点时间戳
|
|
$nowyear = date('Y-m-d',mktime(0,0,0,1,1,date("Y",$t))); //当年一月一号零点时间戳
|
|
$lastmonth = date('Y-m-d',mktime(0,0,0,date("m",$t)-1,1,date("Y",$t))); //上月一号零点时间戳
|
|
$nowendmonth = date('Y-m-d',mktime(0,0,0,date("m",$t)+1,1,date("Y",$t))-24*60*60);
|
|
$nowendyear = date('Y-m-d',mktime(0,0,0,12,31,date("Y",$t)));
|
|
return array('now_zero_day' => $nowday,
|
|
'now_zero_month'=>$nowmonth,
|
|
'now_zero_year'=>$nowyear,
|
|
'next_zero_month'=>$nextmonth,
|
|
'last_zero_month'=>$lastmonth,
|
|
'now_end_month'=>$nowendmonth,
|
|
'now_end_year'=>$nowendyear
|
|
);
|
|
}
|
|
} |