mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-24 18:04:30 +08:00
24 lines
658 B
PHP
24 lines
658 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class ome_finder_branch_flow
|
||
{
|
||
public $column_opt = "操作";
|
||
public $column_opt_order = 1;
|
||
/**
|
||
* column_opt
|
||
* @param mixed $row row
|
||
* @return mixed 返回值
|
||
*/
|
||
public function column_opt($row)
|
||
{
|
||
$buttons['edit'] = sprintf("<a href='index.php?app=ome&ctl=admin_branch_flow&act=edit&p[]=%s&finder_id=%s' target='dialog::{width:600,height:300,title:\"仓业务设置\"}'>编辑</a>", $row['id'], $_GET['_finder']['finder_id']);
|
||
|
||
return implode(' ', $buttons);
|
||
}
|
||
|
||
}
|