Files
OMS/app/vop/controller/admin/bill/detail.php
2025-12-28 23:13:25 +08:00

34 lines
871 B
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
/**
* Copyright © ShopeX http://www.shopex.cn. All rights reserved.
* See LICENSE file for license details.
*/
/**
* sunjing@shopex.cn
*/
class vop_ctl_admin_bill_detail extends desktop_controller {
public function index() {
$actions = array();
$base_filter = array();
if($_GET['bill_id']){
$base_filter['bill_id'] = $_GET['bill_id'];
}
$params = array(
'title'=>'JIT费用项',
'base_filter' => $base_filter,
'use_buildin_set_tag'=>false,
'use_buildin_filter'=>true,
'use_buildin_export'=>false,
'use_buildin_import'=>false,
'use_buildin_recycle'=>false,
'actions'=>$actions,
);
$this->finder('vop_mdl_source_detail', $params);
}
}