mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-22 18:35:35 +08:00
29 lines
871 B
PHP
29 lines
871 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class console_ctl_admin_interface_iostocksearchs extends desktop_controller{
|
||
var $name = "库存异动查询";
|
||
var $workground = "interface_iostocksearchs_center";
|
||
|
||
|
||
/**
|
||
* index
|
||
* @return mixed 返回值
|
||
*/
|
||
public function index()
|
||
{
|
||
$iostocksearchs = kernel::single('console_finder_interface_iostocksearchs');
|
||
|
||
//$user_branch = kernel::single("ome_userbranch");
|
||
//$branch_id= $user_branch->get_user_branch_id();
|
||
if($branch_id)$base_filter['branch_id'] = $branch_id;
|
||
$iostocksearchs->set_extra_view(array('eccommon' => 'analysis/extra_view.html'));
|
||
//$_POST['store_name'] = $branch_id;
|
||
$iostocksearchs->set_params($_POST)->display();
|
||
}
|
||
}
|
||
?>
|