|
|
@@ -24,7 +24,6 @@ use App\Services\OrderRejectedBillRelationService;
|
|
|
use App\Services\OrderService;
|
|
|
use App\Services\OwnerService;
|
|
|
use App\Services\OrderRejectingStatusService;
|
|
|
-use App\Services\RejectedService;
|
|
|
use App\Shop;
|
|
|
use App\UserOwnerGroup;
|
|
|
use App\UserWorkgroup;
|
|
|
@@ -580,7 +579,7 @@ class OrderIssueController extends Controller
|
|
|
{
|
|
|
$json = [];
|
|
|
$row = [
|
|
|
- '登记日期', '创建日期', '客户', '客户订单号', '原始承运商', '收货人', '收货电话', '省', '市', '区', '收货人地址',
|
|
|
+ '登记日期', '创建日期', '客户','商铺' ,'客户订单号', '原始承运商', '收货人', '收货电话', '省', '市', '区', '收货人地址',
|
|
|
'原始运单号', '原始商品', '原始商品名称', '原始商品数量',
|
|
|
'退回单号', '退单商品名', '退单商品条码', '退单商品数量', '是否正品', '退单状态', '退单备注',
|
|
|
'操作类型', '说明', '操作者', '情况说明', '问题类别',
|
|
|
@@ -660,7 +659,8 @@ class OrderIssueController extends Controller
|
|
|
isset($order_issue->created_at) ? str_split($order_issue->created_at, 10)[0] : '', // 登记日期
|
|
|
isset($order->created_at) ? str_split($order->created_at, 10)[0] : '', // 创建日期
|
|
|
$order->owner->name ?? '', // 客户
|
|
|
- $order->client_code, // 客户订单号
|
|
|
+ $order->shop->name ?? '', // 商铺
|
|
|
+ $order->client_code, // 客户订单号
|
|
|
$order->logistic->name ?? '', // 原始承运商
|
|
|
$order->consignee_name, // 收货人
|
|
|
$order->consignee_phone, // 收货电话
|