|
|
@@ -68,6 +68,7 @@ class AlibabaOrder
|
|
68
|
68
|
{
|
|
69
|
69
|
$orderId = request()->param('order_id');
|
|
70
|
70
|
$orderEntryIds = request()->param('order_entry_ids', '');
|
|
|
71
|
+ $goodsStatus = request()->param('goods_status', '');
|
|
71
|
72
|
|
|
72
|
73
|
if (empty($orderId)) {
|
|
73
|
74
|
return app('json')->fail('订单号不能为空');
|
|
|
@@ -78,6 +79,9 @@ class AlibabaOrder
|
|
78
|
79
|
if (!empty($orderEntryIds)) {
|
|
79
|
80
|
$params['orderEntryIds'] = $orderEntryIds;
|
|
80
|
81
|
}
|
|
|
82
|
+ if (!empty($goodsStatus)) {
|
|
|
83
|
+ $params['goodsStatus'] = $goodsStatus;
|
|
|
84
|
+ }
|
|
81
|
85
|
|
|
82
|
86
|
$result = $orderService->getRefundReasonList($params);
|
|
83
|
87
|
if ($result === false) {
|