ipaylinks fixed 退款查询 结果处理xml bug

feature/trippest
lyt 8 years ago
parent 0c73968fff
commit 09b62f9150

@ -1016,7 +1016,8 @@ class IPayLinksService extends CI_Controller
// echo "No record."; // echo "No record.";
return false; return false;
} }
$refund_list = $query_resp->data->refundDetails->detail; $refund_list_obj = @ json_decode(@ json_encode($query_resp->data->refundDetails));
$refund_list = $refund_list_obj->detail;
foreach ($refund_list as $key => $refund) { foreach ($refund_list as $key => $refund) {
// 由于ipaylinks批量查询的bug,这里要用单笔查询校对 // 由于ipaylinks批量查询的bug,这里要用单笔查询校对
$this_info = $this->get_refund($refund->refundOrderId); $this_info = $this->get_refund($refund->refundOrderId);

Loading…
Cancel
Save