Files
OMS/app/invoice/controller/admin/order/front.php
2025-12-28 23:13:25 +08:00

29 lines
845 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.
*/
/**
* ============================
* @Author: yaokangming
* @describe: 预发票列表
* ============================
*/
class invoice_ctl_admin_order_front extends desktop_controller {
public function index() {
$actions = array();
$params = array(
'title'=>'预发票列表',
'use_buildin_set_tag'=>false,
'use_buildin_filter'=>false,
'use_buildin_export'=>false,
'use_buildin_recycle'=>false,
'actions'=>$actions,
'base_filter'=>['disabled'=>'false'],
'orderBy'=>'id desc',
);
$this->finder('invoice_mdl_order_front', $params);
}
}