mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-14 01:35:35 +08:00
24 lines
659 B
PHP
24 lines
659 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class taoguaninventory_finder_encoded_state{
|
||
var $column_view = '操作';
|
||
var $column_view_width = "100";
|
||
var $addon_cols = "eid";
|
||
function column_view($row){
|
||
$id = $row[$this->col_prefix.'eid'];
|
||
$finder_id = $_GET['_finder']['finder_id'];
|
||
$button= <<<EOF
|
||
<a href="index.php?app=taoguaninventory&ctl=admin_codestate&act=edit_state&p[0]=$id&finder_id=$finder_id" class="lnk" " target="dialog::{width:600,height:400,title:'编码编辑'}">编辑</a>
|
||
|
||
EOF;
|
||
return $button;
|
||
|
||
}
|
||
|
||
}
|
||
|
||
?>
|