mirror of
https://gitee.com/ShopeX/OMS
synced 2026-04-20 12:05:43 +08:00
21 lines
689 B
PHP
21 lines
689 B
PHP
<?php
|
||
/**
|
||
* Copyright © ShopeX (http://www.shopex.cn). All rights reserved.
|
||
* See LICENSE file for license details.
|
||
*/
|
||
|
||
class ome_finder_order_groupon{
|
||
|
||
var $column_confirm='操作';
|
||
var $column_confirm_width = "80";
|
||
|
||
function column_confirm($row){
|
||
|
||
$result = "<a href='index.php?app=ome&ctl=admin_order_groupon&act=index&action=to_export&order_groupon_id=".$row['order_groupon_id']."&_io_type=csv' target='download'>导出</a>";
|
||
//$result .= ' | ';
|
||
//$result .= "<a href='index.php?app=ome&ctl=admin_consign&act=do_sync&p[0]={$order_id}&finder_id=$find_id' target='download'>查看</a>";
|
||
|
||
return $result;
|
||
}
|
||
}
|
||
?>
|