|
@@ -61,7 +61,7 @@ class SignupManagementService
|
61
|
61
|
return $result;
|
62
|
62
|
}
|
63
|
63
|
|
64
|
|
- public function getExportList($keyword)
|
|
64
|
+ public function getExportList($keyword, $trackNo, $createDateStart, $createDateFinal)
|
65
|
65
|
{
|
66
|
66
|
$res = $this->signupDb
|
67
|
67
|
->select('*');
|
|
@@ -80,6 +80,11 @@ class SignupManagementService
|
80
|
80
|
->orWhere('typeOfJob', $keyword)
|
81
|
81
|
->orWhere('jobTitle', $keyword);
|
82
|
82
|
}
|
|
83
|
+
|
|
84
|
+ $res->where('trackNo','LIKE', $trackNo.'%')
|
|
85
|
+ ->where('createDate', '>', $createDateStart)
|
|
86
|
+ ->where('createDate', '<', $createDateFinal);
|
|
87
|
+
|
83
|
88
|
$res = $this->signupDb
|
84
|
89
|
->get()
|
85
|
90
|
->toArray();
|