mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-31 13:25:32 +08:00
25 lines
803 B
PHP
25 lines
803 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class logisticsaccounts_ctl_admin_actualdialog extends desktop_controller{
|
||
function findActual($sid=null){
|
||
$filter['join'] = '0';
|
||
$filter['status'] = '2';
|
||
$params = array(
|
||
'title'=>'实际账单列表',
|
||
'use_buildin_new_dialog' => false,
|
||
'use_buildin_set_tag'=>false,
|
||
'use_buildin_recycle'=>false,
|
||
'use_buildin_export'=>false,
|
||
'use_buildin_import'=>false,
|
||
'base_filter' => $filter,
|
||
);
|
||
$this->finder('logisticsaccounts_mdl_actual', $params);
|
||
}
|
||
|
||
}
|
||
|
||
?>
|