Files
OMS/app/console/controller/admin/deliveryrefuse.php
2025-12-28 23:13:25 +08:00

33 lines
735 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.
*/
class console_ctl_admin_deliveryrefuse extends desktop_controller {
var $name = "拒收服务";
var $workground = "console_center";
/**
*
* 拒收退货单列表
*/
function index(){
$params = array(
'use_buildin_new_dialog' => false,
'use_buildin_set_tag'=>false,
'use_buildin_recycle'=>false,
'use_buildin_import'=>false,
'use_buildin_filter'=>true,
);
$params['base_filter']['return_type'] = array('refuse');
$this->finder ( 'ome_mdl_reship_refuse' , $params );
}
}