|
@@ -505,6 +505,19 @@ Class Manage
|
|
if ($v['cdate']) {
|
|
if ($v['cdate']) {
|
|
$cdate = date('Y-m-d H:i',$v['cdate']);
|
|
$cdate = date('Y-m-d H:i',$v['cdate']);
|
|
}
|
|
}
|
|
|
|
+ $total_num = '';
|
|
|
|
+ if(isset($v['total_num']) && $v['total_num']) {
|
|
|
|
+ $total_num = $v['total_num'];
|
|
|
|
+ }
|
|
|
|
+ $price = '';
|
|
|
|
+ if (isset($v['price']) && $v['price']) {
|
|
|
|
+ $price = $v['price'];
|
|
|
|
+ }
|
|
|
|
+ $cash = '';
|
|
|
|
+ if (isset($v['cash']) && $v['cash']) {
|
|
|
|
+ $cash = $v['cash'];
|
|
|
|
+ }
|
|
|
|
+
|
|
if ($where['types'] == 1 || $where['types'] == -1) {
|
|
if ($where['types'] == 1 || $where['types'] == -1) {
|
|
$leixing = '发放权益';
|
|
$leixing = '发放权益';
|
|
}
|
|
}
|
|
@@ -611,16 +624,16 @@ Class Manage
|
|
$member_mobile,
|
|
$member_mobile,
|
|
$card,
|
|
$card,
|
|
$leixing,
|
|
$leixing,
|
|
- $v['total_num'],
|
|
|
|
- $v['price'],
|
|
|
|
- $v['cash'],
|
|
|
|
|
|
+ $total_num,
|
|
|
|
+ $price,
|
|
|
|
+ $cash,
|
|
$shop_type,
|
|
$shop_type,
|
|
$shop_sid,
|
|
$shop_sid,
|
|
$shop_name,
|
|
$shop_name,
|
|
$order_num,
|
|
$order_num,
|
|
$desc,
|
|
$desc,
|
|
'',
|
|
'',
|
|
- date('Y-m-d H:i',$v['cdate']),
|
|
|
|
|
|
+ $cdate,
|
|
$member_cdate,
|
|
$member_cdate,
|
|
$youxiao,
|
|
$youxiao,
|
|
);
|
|
);
|