|
@@ -165,12 +165,16 @@ class LinkController extends Controller
|
|
|
*/
|
|
|
public function queryReportLog(QueryReportRequest $request)
|
|
|
{
|
|
|
+ request()->offsetSet('qapp_account', $this->qapp_account);
|
|
|
+
|
|
|
$result = $this->service->findUserReportInfos($this->channel_id, $request->all());
|
|
|
return response()->pagination(new ReportOrderTramsformer, $result);
|
|
|
}
|
|
|
|
|
|
public function reportLogExport(QueryReportRequest $request)
|
|
|
{
|
|
|
+ request()->offsetSet('qapp_account', $this->qapp_account);
|
|
|
+
|
|
|
$result = $this->service->findUserReportInfos($this->channel_id, $request->all(), false);
|
|
|
$result = collectionTransform(new ReportOrderTramsformer, $result);
|
|
|
$headers = [
|