|
...
|
...
|
@@ -610,6 +610,11 @@ class ProjectController extends BaseController |
|
|
|
$hrManagerModel = new ManageHr();
|
|
|
|
if(!isset($this->map['status'])){
|
|
|
|
$this->map['status'] = $hrManagerModel::STATUS_ONE;
|
|
|
|
}else{
|
|
|
|
if(!is_array($this->map['status'])){
|
|
|
|
$this->map['status'] = [$this->map['status']];
|
|
|
|
}
|
|
|
|
$this->map['status'] = ['in',$this->map['status']];
|
|
|
|
}
|
|
|
|
if(isset($this->map['entry_position']) && !empty($this->map['entry_position'])){
|
|
|
|
$this->map['entry_position'] = ['in',$this->map['entry_position']];
|
...
|
...
|
|