mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-15 18:25:33 +08:00
24 lines
622 B
PHP
24 lines
622 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class omedlyexport_finder_delivery{
|
||
var $actions = array(
|
||
|
||
);
|
||
|
||
function __construct(){
|
||
|
||
$user = kernel::single('desktop_user');
|
||
|
||
// if($user->has_permission('process_receipts_print_export')){
|
||
// $this->actions[] = array(
|
||
// 'label'=>'导出',
|
||
// 'submit'=>'index.php?app=omedlyexport&ctl=ome_delivery&act=index&action=export',
|
||
// 'target'=>'dialog::{width:400,height:170,title:\'导出\'}'
|
||
// );
|
||
// }
|
||
}
|
||
} |