|
@@ -296,6 +296,7 @@ Class Manage
|
|
|
(
|
|
|
array('购买数量', $info['num']),
|
|
|
array('支付金额', $info['price']),
|
|
|
+ array('备注',$info['remark']),
|
|
|
),
|
|
|
array
|
|
|
(
|
|
@@ -329,6 +330,15 @@ Class Manage
|
|
|
);
|
|
|
}
|
|
|
$button = array();
|
|
|
+ if (Dever::load('manage/auth')->checkFunc('active.order', 'edit', '备注')) {
|
|
|
+ $purl = Dever::url('project/database/update?project=active&table=order&where_id='.$info['id'].'&col=remark', 'manage');
|
|
|
+ $button[] = array
|
|
|
+ (
|
|
|
+ 'type' => 'edit',
|
|
|
+ 'link' => $purl,
|
|
|
+ 'name' => '备注',
|
|
|
+ );
|
|
|
+ }
|
|
|
if ($info['status'] == 2 && $info['code_num'] < 1 && time() < $active['act_start'] && $active['refund_type'] == 2 ) {
|
|
|
|
|
|
if (Dever::load('manage/auth')->checkFunc('active.order', 'editrefund', '全额退款')) {
|