Browse Source

20220921 fix 後台匯出功能

LuluFJ.Ho 2 years ago
parent
commit
5b4ed7eeec

+ 5
- 1
app/Http/Services/Backend/DataManagement/SignupManagementService.php View File

64
 
64
 
65
     public function getExportList($keyword, $trackNo, $createDateStart, $createDateFinal)
65
     public function getExportList($keyword, $trackNo, $createDateStart, $createDateFinal)
66
     {
66
     {
67
-
67
+        \Log::info('keyword: '.$keyword);
68
+        \Log::info('trackNo: '.$trackNo);
69
+        \Log::info('createDateStart: '.$createDateStart);
70
+        \Log::info('createDateFinal: '.$createDateFinal);
71
+        
68
         $res = $this->signupDb
72
         $res = $this->signupDb
69
             ->select('*');
73
             ->select('*');
70
             
74