mirror of
https://gitee.com/ShopeX/OMS
synced 2026-03-23 10:55:34 +08:00
22 lines
596 B
PHP
22 lines
596 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class inventorydepth_finder_regulation {
|
||
|
||
public $column_operator = '操作';
|
||
public $column_operator_order = 1;
|
||
public function column_operator($row)
|
||
{
|
||
$regulation_id = $row['regulation_id']; $finder_id = $_GET['_finder']['finder_id'];
|
||
$return = <<<EOF
|
||
<a target="_blank" href="index.php?app=inventorydepth&ctl=regulation&act=edit&p[0]={$regulation_id}&finder_id={$finder_id}">编辑</a>
|
||
EOF;
|
||
return $return;
|
||
|
||
}
|
||
|
||
}
|