mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 10:25:35 +08:00
25 lines
709 B
PHP
25 lines
709 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class console_ctl_admin_stockaccount extends desktop_controller{
|
||
var $name = "库存对账查询";
|
||
var $workground = "console_center";
|
||
/**
|
||
* index
|
||
* @return mixed 返回值
|
||
*/
|
||
public function index(){
|
||
$account = kernel::single('console_finder_stockaccount');
|
||
$account->set_extra_view(array('console' => 'admin/analysis/account_items_time_header.html'));
|
||
if(empty($_POST['time_from'])){
|
||
$_POST['time_from'] = $_POST['time_to'] = date('Y-m-d');
|
||
}
|
||
|
||
$account->set_params($_POST)->display();
|
||
}
|
||
}
|
||
?>
|