Files
OMS/app/brush/lib/operation/log.php
2025-12-28 23:13:25 +08:00

25 lines
1.1 KiB
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 brush_operation_log
{
//刷单的发货操作日志
function get_operations()
{
$operations = array(
'delivery_brush_expre' => array('name'=> '发货单快递单打印','type' => 'delivery@brush'),
'delivery_brush_modify' => array('name'=> '发货单快递单修改','type' => 'delivery@brush'),
'delivery_brush_checkdelivery'=>array('name'=>'发货单发货处理','type' => 'delivery@brush'),
'delivery_brush_getwaybill'=>array('name'=>'获取电子面单','type' => 'delivery@brush'),
'delivery_brush_back'=>array('name'=>'发货单撤回','type' => 'delivery@brush'),
'brush_farm_add'=>array('name'=>'特殊订单条件新增','type' => 'farm@brush'),
'brush_farm_modify'=>array('name'=>'特殊订单条件编辑','type' => 'farm@brush'),
);
return array('brush'=>$operations);
}
}
?>