mirror of
https://gitee.com/zongzhige/shopxo.git
synced 2026-07-05 21:32:31 +08:00
pay
This commit is contained in:
@ -560,9 +560,6 @@ class OrderService
|
||||
$order_pay_status = L('common_order_pay_status');
|
||||
foreach($data as &$v)
|
||||
{
|
||||
// 订单基础
|
||||
$v['payment_name'] = '';
|
||||
|
||||
// 状态
|
||||
$v['status_name'] = $order_status_list[$v['status']]['name'];
|
||||
|
||||
@ -572,6 +569,9 @@ class OrderService
|
||||
// 快递公司
|
||||
$v['express_name'] = ResourcesService::ExpressName($v['express_id']);
|
||||
|
||||
// 支付方式
|
||||
$v['payment_name'] = ($v['status'] <= 1) ? null : ResourcesService::OrderPaymentName($v['id']);
|
||||
|
||||
// 收件人地址
|
||||
$v['receive_province_name'] = ResourcesService::RegionName($v['receive_province']);
|
||||
$v['receive_city_name'] = ResourcesService::RegionName($v['receive_city']);
|
||||
|
||||
Reference in New Issue
Block a user