mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 19:05:34 +08:00
24 lines
603 B
PHP
24 lines
603 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class omeanalysts_ctl_ome_zeroSale extends desktop_controller{
|
||
|
||
var $name = "零销售产品分析";
|
||
|
||
/**
|
||
* index
|
||
* @return mixed 返回值
|
||
*/
|
||
public function index(){
|
||
if(empty($_POST)){
|
||
$_POST['time_from'] = date("Y-m-1");
|
||
$_POST['time_to'] = date("Y-m-d",time()-24*60*60);
|
||
}
|
||
kernel::single('omeanalysts_crontab_script_zeroSale')->statistics();
|
||
kernel::single('omeanalysts_ome_zeroSale')->set_params($_POST)->display();
|
||
}
|
||
|
||
} |