...
|
...
|
@@ -65,6 +65,8 @@ class PayModel |
|
|
$result['orderNum'] = $orderCode;
|
|
|
$result['count'] = $order['payment_amount'];
|
|
|
$result['paymentType'] = ($order['payment_type'] == 1 ? '在线支付' : '货到付款');
|
|
|
// 订单商品(用于订单统计)
|
|
|
$result['orderGoods'] = $order['order_goods'];
|
|
|
|
|
|
//统计成交的skn
|
|
|
$sknList = array();
|
...
|
...
|
@@ -220,8 +222,6 @@ class PayModel |
|
|
// 订单数(用于订单统计)
|
|
|
$result['orderCount'] = $orderCount;
|
|
|
$result['is_advance'] = $order['attribute'] == 5 ? 'Y' : 'N';
|
|
|
// 订单商品(用于订单统计)
|
|
|
$result['orderGoods'] = $order['order_goods'];
|
|
|
// 订单商品数(用于订单统计)
|
|
|
$result['ordersGoodsNums'] = count($order['order_goods']);
|
|
|
} while (false);
|
...
|
...
|
|