$filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return $this */ function getAll( $limit = null, $page = null, $where = null, $order = null ) { if ( $order == null ) { $order = [ 'company_id' => 'asc', 'status_id' => '= 10 desc', 'last_name' => 'asc' ]; $strict = false; } else { $strict = true; } $query = ' select * from ' . $this->getTable() . ' WHERE deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, null, $limit, $page ); return $this; } /** * @param $status * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return $this */ function getByStatus( $status, $where = null, $order = null ) { $ph = [ 'status_id' => $status, ]; $query = ' select * from ' . $this->getTable() . ' where status_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * Disables all logins past their expire date without going through UserFactory to avoid cases where we aren't able to save records due to validation failures. * @param $login_expire_date * @return $this * @throws DBError */ function disableExpiredLogins( $login_expire_date ) { $ph = [ 'login_expire_date' => $this->db->BindDate( $login_expire_date ), ]; //Login date must be fully passed before we disable login. $query = ' UPDATE ' . $this->getTable() . ' SET enable_login = 0 WHERE enable_login = 1 AND ( login_expire_date < ? AND login_expire_date IS NOT NULL ) AND deleted = 0'; $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool */ function getUniqueCountryByCompanyId( $id, $where = null, $order = null ) { if ( $id == '' ) { return false; } $uf = new UserFactory(); $ph = [ 'id' => TTUUID::castUUID( $id ), ]; $query = ' select distinct a.country from ' . $uf->getTable() . ' as a where a.company_id = ? AND ( a.deleted = 0 )'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); return $this->db->GetCol( $query, $ph ); } /** * @param string $company_id UUID * @param $status * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIdAndStatus( $company_id, $status, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $status == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'status_id' => $status, ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND status_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param string $terminated_permission_control_id UUID * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIdAndTerminatedPermissionControl( $company_id, $terminated_permission_control_id, $limit = null, $page = null, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $terminated_permission_control_id == '' ) { return false; } if ( $order == null ) { $order = [ 'status_id' => 'asc', 'last_name' => 'asc' ]; $strict = false; } else { $strict = true; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'terminated_permission_control_id' => TTUUID::castUUID( $terminated_permission_control_id ), ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND terminated_permission_control_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); return $this; } /** * @param string $id UUID * @return bool */ static function getFullNameById( $id ) { if ( $id == '' ) { return false; } $ulf = new UserListFactory(); $ulf = $ulf->getById( $id ); if ( $ulf->getRecordCount() > 0 ) { $u_obj = $ulf->getCurrent(); return $u_obj->getFullName(); } return false; } /** * @param string $id UUID * @return bool|UserListFactory */ function getById( $id ) { if ( $id == '' ) { return false; } $this->rs = $this->getCache( $id ); if ( $this->rs === false ) { $ph = [ 'id' => TTUUID::castUUID( $id ), ]; $query = ' select * from ' . $this->getTable() . ' where id = ? AND deleted = 0'; $this->rs = $this->ExecuteSQL( $query, $ph ); $this->saveCache( $this->rs, $id ); } return $this; } /** * @param string|string[] $id UUID * @param string $company_id UUID * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByIdAndCompanyId( $id, $company_id, $limit = null, $page = null, $where = null, $order = null ) { if ( $id == '' ) { return false; } if ( $company_id == '' ) { return false; } if ( $order == null ) { $order = [ 'status_id' => 'asc', 'last_name' => 'asc' ]; $strict = false; } else { $strict = true; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND id in (' . $this->getListSQL( $id, $ph, 'uuid' ) . ') AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); //This supports a list of IDs, so we need to make sure paging is also available. $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * @param string $id UUID * @param string $company_id UUID * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByLegalEntityIdAndCompanyId( $id, $company_id, $limit = null, $page = null, $where = null, $order = null ) { if ( $id == '' ) { return false; } if ( $company_id == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND legal_entity_id in (' . $this->getListSQL( $id, $ph, 'uuid' ) . ') AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); //This supports a list of IDs, so we need to make sure paging is also available. $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * Security measure, only returns user_ids that are valid for the specific company. * @param string $id UUID * @param string $company_id UUID * @return bool */ function getCompanyValidUserIds( $id, $company_id ) { if ( $id == '' ) { return false; } if ( $company_id == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select id from ' . $this->getTable() . ' where company_id = ? AND id in (' . $this->getListSQL( $id, $ph, 'uuid' ) . ') AND deleted = 0'; //This supports a list of IDs, so we need to make sure paging is also available. return $this->db->GetCol( $query, $ph ); } /** * @param $user_name * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByUserName( $user_name, $where = null, $order = null ) { if ( $user_name == '' ) { return false; } $ph = [ 'user_name' => TTi18n::strtolower( trim( $user_name ) ), ]; $query = ' select * from ' . $this->getTable() . ' where user_name = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param $email * @return bool|UserListFactory */ function getByHomeEmailOrWorkEmail( $email ) { $email = TTi18n::strtolower( trim( $email ) ); if ( $email == '' ) { return false; } if ( $this->Validator->isEmail( 'email', $email ) == false ) { return false; } $cf = new CompanyFactory(); $ph = [ 'home_email' => $email, 'work_email' => $email, ]; //Only return users of active companies and active users, as they are the only ones that can login anyways. $query = ' select a.* from ' . $this->getTable() . ' as a LEFT JOIN ' . $cf->getTable() . ' as cf ON ( a.company_id = cf.id ) where cf.status_id = 10 AND a.enable_login = 1 AND ( lower(a.home_email) = ? OR lower(a.work_email) = ? ) AND a.deleted = 0'; $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param $key * @return bool|UserListFactory */ function getByEmailIsValidKey( $key ) { $key = trim( $key ); if ( $this->Validator->isRegEx( 'email', $key, null, '/^[a-z0-9]{40}$/i' ) == false ) { return false; } $ph = [ 'key1' => $key, 'key2' => $key, ]; $query = ' select * from ' . $this->getTable() . ' where ( work_email_is_valid_key = ? OR home_email_is_valid_key = ? ) AND deleted = 0'; $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param $key * @return bool|UserListFactory */ function getByPasswordResetKey( $key ) { $key = trim( $key ); if ( $this->Validator->isRegEx( 'key', $key, null, '/^[a-z0-9]{40}$/i' ) == false ) { return false; } $ph = [ 'key' => $this->encryptPasswordResetKey( $key ), ]; $query = ' select * from ' . $this->getTable() . ' where password_reset_key = ? AND deleted = 0'; $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param $user_name * @param string $company_id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByUserNameAndCompanyId( $user_name, $company_id, $where = null, $order = null ) { if ( $user_name == '' ) { return false; } if ( $company_id == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'user_name' => TTi18n::strtolower( trim( $user_name ) ), ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND user_name = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param $user_name * @param $status * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByUserNameAndStatus( $user_name, $status, $where = null, $order = null ) { if ( $user_name == '' ) { return false; } $ph = [ 'user_name' => TTi18n::strtolower( trim( $user_name ) ), 'status' => $status, ]; $query = ' select * from ' . $this->getTable() . ' where user_name = ? AND status_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); return $this; } /** * @param $user_name * @param $enable_login * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByUserNameAndEnableLogin( $user_name, $enable_login, $where = null, $order = null ) { if ( $user_name == '' ) { return false; } $ph = [ 'user_name' => TTi18n::strtolower( trim( $user_name ) ), 'enable_login' => (bool)$enable_login, ]; $query = ' select * from ' . $this->getTable() . ' where user_name = ? AND enable_login = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); return $this; } /** * @param string $phone_id UUID * @param $status * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByPhoneIdAndStatus( $phone_id, $status, $where = null, $order = null ) { if ( $phone_id == '' ) { return false; } $ph = [ 'phone_id' => $phone_id, 'status' => (int)$status, ]; $query = ' select * from ' . $this->getTable() . ' where phone_id = ? AND status_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $id UUID * @param $status * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByIdAndStatus( $id, $status, $where = null, $order = null ) { if ( $id == '' ) { return false; } $ph = [ 'id' => TTUUID::castUUID( $id ), 'status' => $status, ]; $query = ' select * from ' . $this->getTable() . ' where id = ? AND status_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCurrencyID( $id, $where = null, $order = null ) { if ( $id == '' ) { return false; } $ph = [ 'id' => TTUUID::castUUID( $id ), ]; $query = ' select * from ' . $this->getTable() . ' where currency_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param int $level * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIDAndStatusIdAndMinimumPermissionLevelAndRecentNotification( $company_id, $status_id, $level, $object_id, $created_before, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $status_id == '' ) { return false; } if ( $level == '' ) { return false; } if ( $order == null ) { $order = [ 'a.id' => 'asc' ]; $strict = false; } else { $strict = true; } $pcf = new PermissionControlFactory(); $puf = new PermissionUserFactory(); $nf = new NotificationListFactory(); $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'status_id' => (int)$status_id, 'level' => (int)$level, 'object_id' => TTUUID::castUUID( $object_id ), 'created_before' => (int)$created_before, ]; $query = ' select a.* from ' . $this->getTable() . ' as a LEFT JOIN ( SELECT g2.*, g1.user_id FROM ' . $puf->getTable() . ' as g1, ' . $pcf->getTable() . ' as g2 WHERE ( g1.permission_control_id = g2.id AND g2.deleted = 0) ) as g ON ( a.id = g.user_id ) WHERE a.company_id = ? AND a.status_id = ? AND g.level >= ? AND a.deleted = 0 AND NOT EXISTS ( SELECT 1 FROM ' . $nf->getTable() . ' as n WHERE n.user_id = g.user_id AND n.object_id = ? AND n.created_date > ? AND n.deleted = 0 )'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param $level * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIDAndPermissionLevel( $company_id, $level, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $level == '' ) { return false; } if ( $order == null ) { $order = [ 'a.id' => 'asc' ]; $strict = false; } else { $strict = true; } $pcf = new PermissionControlFactory(); $puf = new PermissionUserFactory(); $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'level' => $level, ]; $query = ' select a.* from ' . $this->getTable() . ' as a LEFT JOIN ( SELECT g2.*, g1.user_id FROM ' . $puf->getTable() . ' as g1, ' . $pcf->getTable() . ' as g2 WHERE ( g1.permission_control_id = g2.id AND g2.deleted = 0) ) as g ON ( a.id = g.user_id ) where a.company_id = ? AND g.level = ? AND a.deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param string $id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIDAndGroupID( $company_id, $id, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $id == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'id' => TTUUID::castUUID( $id ), ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND group_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param $employee_number * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIDAndEmployeeNumber( $company_id, $employee_number, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $employee_number == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'employee_number' => $employee_number, ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND employee_number = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param string $station_id UUID * @param int $status_id * @param int $date EPOCH * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIDAndStationIDAndStatusAndDate( $company_id, $station_id, $status_id, $date = null, $limit = null, $page = null, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $station_id == '' ) { return false; } if ( $status_id == '' ) { return false; } if ( $date == '' ) { $date = 0; } if ( $order == null ) { $order = [ 'a.id' => 'asc' ]; $strict = false; } else { $strict = true; } $sf = new StationFactory(); $sugf = new StationUserGroupFactory(); $sbf = new StationBranchFactory(); $sdf = new StationDepartmentFactory(); $siuf = new StationIncludeUserFactory(); $seuf = new StationExcludeUserFactory(); $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'station_id' => TTUUID::castUUID( $station_id ), 'status_id' => (int)$status_id, //'date' => $date, //'date2' => $date, ]; $query = ' select _ADODB_COUNT a.* _ADODB_COUNT from ' . $this->getTable() . ' as a, ' . $sf->getTable() . ' as z where a.company_id = ? AND z.id = ? AND a.status_id = ? AND ( ( ( z.user_group_selection_type_id = 10 OR ( z.user_group_selection_type_id = 20 AND a.group_id in ( select b.group_id from ' . $sugf->getTable() . ' as b WHERE z.id = b.station_id ) ) OR ( z.user_group_selection_type_id = 30 AND a.group_id not in ( select b.group_id from ' . $sugf->getTable() . ' as b WHERE z.id = b.station_id ) ) ) AND ( z.branch_selection_type_id = 10 OR ( z.branch_selection_type_id = 20 AND a.default_branch_id in ( select c.branch_id from ' . $sbf->getTable() . ' as c WHERE z.id = c.station_id ) ) OR ( z.branch_selection_type_id = 30 AND a.default_branch_id not in ( select c.branch_id from ' . $sbf->getTable() . ' as c WHERE z.id = c.station_id ) ) ) AND ( z.department_selection_type_id = 10 OR ( z.department_selection_type_id = 20 AND a.default_department_id in ( select d.department_id from ' . $sdf->getTable() . ' as d WHERE z.id = d.station_id ) ) OR ( z.department_selection_type_id = 30 AND a.default_department_id not in ( select d.department_id from ' . $sdf->getTable() . ' as d WHERE z.id = d.station_id ) ) ) AND a.id not in ( select f.user_id from ' . $seuf->getTable() . ' as f WHERE z.id = f.station_id ) ) OR a.id in ( select e.user_id from ' . $siuf->getTable() . ' as e WHERE z.id = e.station_id ) )'; if ( isset( $date ) && $date > 0 ) { //Append the same date twice for created and updated. $ph[] = $date; $ph[] = $date; $query .= ' AND ( a.created_date >= ? OR a.updated_date >= ? )'; unset( $date_filter ); } $query .= ' AND ( a.deleted = 0 AND z.deleted = 0 )'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * @param string $company_id UUID * @param string $station_id UUID * @param int $status_id * @param int $date EPOCH * @param array $new_user_ids * @param array $all_user_ids * @param string $current_user_id UUID * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIDAndStationIDAndStatusAndDateAndValidUserIDs( $company_id, $station_id, $status_id, $date = null, $new_user_ids = [], $all_user_ids = [], $current_user_id = null, $limit = null, $page = null, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $station_id == '' ) { return false; } if ( $status_id == '' ) { return false; } if ( $date == '' ) { $date = 0; } if ( $order == null ) { $order = [ 'a.id' => 'asc' ]; $strict = false; } else { $strict = true; } $sf = new StationFactory(); $sugf = new StationUserGroupFactory(); $sbf = new StationBranchFactory(); $sdf = new StationDepartmentFactory(); $siuf = new StationIncludeUserFactory(); $seuf = new StationExcludeUserFactory(); $uif = new UserIdentificationFactory(); $hcf = new HierarchyControlFactory(); $hotf = new HierarchyObjectTypeFactory(); $hlf = new HierarchyLevelFactory(); $huf = new HierarchyUserFactory(); $ph = [ 'current_user_id' => TTUUID::castUUID( $current_user_id ), 'company_id' => TTUUID::castUUID( $company_id ), 'station_id' => TTUUID::castUUID( $station_id ), 'status_id' => (int)$status_id, ]; //Also include users with user_identifcation rows that have been *created* after the given date //so the first supervisor/admin enrolled on a timeclock is properly updated to lock the menu. //Make sure we return distinct user rows so there aren't duplicates. $query = ' select distinct on (a.id) a.* from ' . $this->getTable() . ' as a LEFT JOIN ' . $sf->getTable() . ' as z ON (1=1) LEFT JOIN ' . $uif->getTable() . ' as uif ON ( a.id = uif.user_id ) LEFT JOIN ' . $huf->getTable() .' as huf ON ( a.id = huf.user_id ) LEFT JOIN ' . $hotf->getTable() .' as hotf ON ( huf.hierarchy_control_id = hotf.hierarchy_control_id AND hotf.object_type_id = 100 ) LEFT JOIN ' . $hlf->getTable() .' as hlf ON ( hotf.hierarchy_control_id = hlf.hierarchy_control_id AND hlf.user_id = ? ) LEFT JOIN ' . $hcf->getTable() .' as hcf ON ( hlf.hierarchy_control_id = hcf.id ) where a.company_id = ? AND z.id = ? AND a.status_id = ? AND ( ( ( ( ( z.user_group_selection_type_id = 10 OR ( z.user_group_selection_type_id = 20 AND a.group_id in ( select b.group_id from ' . $sugf->getTable() . ' as b WHERE z.id = b.station_id ) ) OR ( z.user_group_selection_type_id = 30 AND a.group_id not in ( select b.group_id from ' . $sugf->getTable() . ' as b WHERE z.id = b.station_id ) ) ) AND ( z.branch_selection_type_id = 10 OR ( z.branch_selection_type_id = 20 AND a.default_branch_id in ( select c.branch_id from ' . $sbf->getTable() . ' as c WHERE z.id = c.station_id ) ) OR ( z.branch_selection_type_id = 30 AND a.default_branch_id not in ( select c.branch_id from ' . $sbf->getTable() . ' as c WHERE z.id = c.station_id ) ) ) AND ( z.department_selection_type_id = 10 OR ( z.department_selection_type_id = 20 AND a.default_department_id in ( select d.department_id from ' . $sdf->getTable() . ' as d WHERE z.id = d.station_id ) ) OR ( z.department_selection_type_id = 30 AND a.default_department_id not in ( select d.department_id from ' . $sdf->getTable() . ' as d WHERE z.id = d.station_id ) ) ) AND a.id not in ( select f.user_id from ' . $seuf->getTable() . ' as f WHERE z.id = f.station_id ) ) OR a.id in ( select e.user_id from ' . $siuf->getTable() . ' as e WHERE z.id = e.station_id ) ) '; if ( isset( $date ) && $date > 0 ) { //Append the same date twice for created and updated. $ph[] = (int)$date; $ph[] = (int)$date; $ph[] = (int)$date; $ph[] = (int)$date; $ph[] = (int)$date; $ph[] = (int)$date; $ph[] = (int)$date; $query .= ' AND ( a.created_date >= ? OR a.updated_date >= ? OR z.updated_date >= ? OR uif.created_date >= ? OR z.updated_date >= ? OR hcf.updated_date >= ? OR hcf.created_date >= ? ) )'; } else { $query .= ' )'; } //This is a list of users *not* on the device already, so they need to be outside the above updated checks and always returned if ( isset( $new_user_ids ) && is_array( $new_user_ids ) && count( $new_user_ids ) > 0 ) { $query .= ' OR a.id in (' . $this->getListSQL( $new_user_ids, $ph, 'uuid' ) . ') '; } $query .= ' )'; //All user records must be returned within this list, as its the users that they have permissions to see. // The station record employee critiera simply further reduces this list. if ( isset( $all_user_ids ) && is_array( $all_user_ids ) && count( $all_user_ids ) > 0 ) { $query .= ' AND a.id in (' . $this->getListSQL( $all_user_ids, $ph, 'uuid' ) . ') '; } $query .= ' AND ( a.deleted = 0 AND z.deleted = 0 )'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); return $this; } /** * @param string $company_id UUID * @param string $station_id UUID * @param int $status_id * @param $employee_number * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIDAndStationIDAndStatusAndEmployeeNumber( $company_id, $station_id, $status_id, $employee_number, $limit = null, $page = null, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $station_id == '' ) { return false; } if ( $status_id == '' ) { return false; } if ( $order == null ) { $order = [ 'a.id' => 'asc' ]; $strict = false; } else { $strict = true; } $sf = new StationFactory(); $sugf = new StationUserGroupFactory(); $sbf = new StationBranchFactory(); $sdf = new StationDepartmentFactory(); $siuf = new StationIncludeUserFactory(); $seuf = new StationExcludeUserFactory(); //$uif = new UserIdentificationFactory(); $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'station_id' => TTUUID::castUUID( $station_id ), 'status_id' => (int)$status_id, 'employee_number' => $employee_number, //'date' => $date, //'date2' => $date, ]; //Also include users with user_identifcation rows that have been *created* after the given date //so the first supervisor/admin enrolled on a timeclock is properly updated to lock the menu. $query = ' select _ADODB_COUNT a.* _ADODB_COUNT from ' . $this->getTable() . ' as a LEFT JOIN ' . $sf->getTable() . ' as z ON (1=1) where a.company_id = ? AND z.id = ? AND a.status_id = ? AND a.employee_number = ? AND ( ( ( ( ( z.user_group_selection_type_id = 10 OR ( z.user_group_selection_type_id = 20 AND a.group_id in ( select b.group_id from ' . $sugf->getTable() . ' as b WHERE z.id = b.station_id ) ) OR ( z.user_group_selection_type_id = 30 AND a.group_id not in ( select b.group_id from ' . $sugf->getTable() . ' as b WHERE z.id = b.station_id ) ) ) AND ( z.branch_selection_type_id = 10 OR ( z.branch_selection_type_id = 20 AND a.default_branch_id in ( select c.branch_id from ' . $sbf->getTable() . ' as c WHERE z.id = c.station_id ) ) OR ( z.branch_selection_type_id = 30 AND a.default_branch_id not in ( select c.branch_id from ' . $sbf->getTable() . ' as c WHERE z.id = c.station_id ) ) ) AND ( z.department_selection_type_id = 10 OR ( z.department_selection_type_id = 20 AND a.default_department_id in ( select d.department_id from ' . $sdf->getTable() . ' as d WHERE z.id = d.station_id ) ) OR ( z.department_selection_type_id = 30 AND a.default_department_id not in ( select d.department_id from ' . $sdf->getTable() . ' as d WHERE z.id = d.station_id ) ) ) AND a.id not in ( select f.user_id from ' . $seuf->getTable() . ' as f WHERE z.id = f.station_id ) ) OR a.id in ( select e.user_id from ' . $siuf->getTable() . ' as e WHERE z.id = e.station_id ) ) ) ) '; $query .= ' AND ( a.deleted = 0 AND z.deleted = 0 )'; //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * @param string $company_id UUID * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyId( $company_id, $limit = null, $page = null, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $order == null ) { $order = [ 'status_id' => 'asc', 'last_name' => 'asc' ]; $strict = false; } else { $strict = true; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * @param string $company_id UUID * @param $longitude * @param $latitude * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getByCompanyIdAndLongitudeAndLatitude( $company_id, $longitude, $latitude, $limit = null, $page = null, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $order == null ) { $order = [ 'longitude' => 'asc', 'latitude' => 'asc' ]; $strict = false; } else { $strict = true; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select * from ' . $this->getTable() . ' where company_id = ? '; //isset() returns false on NULL. $query .= $this->getWhereClauseSQL( 'longitude', $longitude, 'numeric', $ph ); $query .= $this->getWhereClauseSQL( 'latitude', $latitude, 'numeric', $ph ); $query .= ' AND deleted = 0'; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); return $this; } /** * @param string $company_id UUID * @param bool $include_blank * @param bool $include_disabled * @param bool $last_name_first * @return bool */ static function getByCompanyIdArray( $company_id, $include_blank = true, $include_disabled = true, $last_name_first = true ) { $ulf = new UserListFactory(); $ulf->getByCompanyId( $company_id ); if ( $include_blank == true ) { $user_list[TTUUID::getZeroID()] = '--'; } foreach ( $ulf as $user ) { if ( $user->getStatus() > 10 ) { //INACTIVE $status = '(' . Option::getByKey( $user->getStatus(), $user->getOptions( 'status' ) ) . ') '; } else { $status = null; } if ( $include_disabled == true || ( $include_disabled == false && $user->getStatus() == 10 ) ) { $user_list[$user->getID()] = $status . $user->getFullName( $last_name_first ); } } if ( isset( $user_list ) ) { return $user_list; } return false; } /** * @param $lf * @param bool $include_blank * @param bool $include_disabled * @return bool */ static function getArrayByListFactory( $lf, $include_blank = true, $include_disabled = true ) { if ( !is_object( $lf ) ) { return false; } if ( $include_blank == true ) { $list[TTUUID::getZeroID()] = '--'; } foreach ( $lf as $obj ) { if ( !isset( $status_options ) ) { $status_options = $obj->getOptions( 'status' ); } if ( $obj->getStatus() > 10 ) { //INACTIVE $status = '(' . Option::getByKey( $obj->getStatus(), $status_options ) . ') '; //$status = '(INACTIVE) '; } else { $status = null; } if ( $include_disabled == true || ( $include_disabled == false && $obj->getStatus() == 10 ) ) { $list[$obj->getID()] = $status . $obj->getFullName( true ); } } if ( isset( $list ) ) { return $list; } return false; } /** * @param string $company_id UUID * @param int $date EPOCH * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getDeletedByCompanyIdAndDate( $company_id, $date, $limit = null, $page = null, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $date == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'created_date' => $date, 'updated_date' => $date, 'deleted_date' => $date, ]; //INCLUDE Deleted rows in this query. $query = ' select * from ' . $this->getTable() . ' where company_id = ? AND ( created_date >= ? OR updated_date >= ? OR deleted_date >= ? ) AND deleted = 1 '; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); if ( $limit == null ) { $this->rs = $this->ExecuteSQL( $query, $ph ); } else { $this->rs = $this->db->PageExecute( $query, (int)$limit, (int)$page, $ph ); } return $this; } /** * @param string $company_id UUID * @param int $date EPOCH * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool */ function getIsModifiedByCompanyIdAndDate( $company_id, $date, $where = null, $order = null ) { if ( $company_id == '' ) { return false; } if ( $date == '' ) { return false; } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), 'created_date' => $date, 'updated_date' => $date, 'hcf_updated_date' => $date, 'hcf_deleted_date' => $date, 'uif_created_date' => $date, 'deleted_date' => $date, ]; $uif = new UserIdentificationFactory(); $hcf = new HierarchyControlFactory(); $huf = new HierarchyUserFactory(); $hotf = new HierarchyObjectTypeFactory(); //INCLUDE Deleted rows in this query. //Also include users with user_identifcation rows that have been *created* after the given date //so the first supervisor/admin enrolled on a timeclock is properly updated to lock the menu. $query = ' select a.* from ' . $this->getTable() . ' as a LEFT JOIN ' . $uif->getTable() . ' as uif ON ( a.id = uif.user_id ) LEFT JOIN ' . $huf->getTable() .' as huf ON ( a.id = huf.user_id ) LEFT JOIN ' . $hotf->getTable() .' as hotf ON ( huf.hierarchy_control_id = hotf.hierarchy_control_id AND hotf.object_type_id = 100 ) LEFT JOIN ' . $hcf->getTable() .' as hcf ON ( hotf.hierarchy_control_id = hcf.id ) where a.company_id = ? AND ( a.created_date >= ? OR a.updated_date >= ? OR uif.created_date >= ? OR ( a.deleted = 1 AND a.deleted_date >= ? ) OR hcf.updated_date >= ? OR ( hcf.deleted = 1 AND hcf.deleted_date >= ? ) ) '; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->db->SelectLimit( $query, 1, -1, $ph ); if ( $this->getRecordCount() > 0 ) { Debug::text( 'User rows have been modified: ' . $this->getRecordCount(), __FILE__, __LINE__, __METHOD__, 10 ); return true; } Debug::text( 'User rows have NOT been modified', __FILE__, __LINE__, __METHOD__, 10 ); return false; } /** * @param string $id UUID * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getHighestEmployeeNumberByCompanyId( $id, $where = null, $order = null ) { if ( $id == '' ) { return false; } $ph = [ 'id' => TTUUID::castUUID( $id ), 'id2' => TTUUID::castUUID( $id ), ]; //employee_number is a varchar field, so we can't reliably cast it to an integer //however if we left pad it, we can get a similar effect. //Eventually we can change it to an integer field. $query = ' select * from ' . $this->getTable() . ' as a where company_id = ? AND id = ( select id from ' . $this->getTable() . ' where company_id = ? AND employee_number != \'\' AND employee_number IS NOT NULL AND deleted = 0 ORDER BY LPAD( employee_number, 10, \'0\' ) DESC LIMIT 1 ) AND deleted = 0 LIMIT 1 '; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param string $company_id UUID * @param string $user_ids UUID * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return bool|UserListFactory */ function getReportByCompanyIdAndUserIDList( $company_id, $user_ids, $order = null ) { if ( $company_id == '' ) { return false; } if ( $user_ids == '' ) { return false; } /* if ( $order == NULL ) { $order = array( 'status_id' => 'asc', 'last_name' => 'asc' ); $strict = FALSE; } else { $strict = TRUE; } */ if ( $order == null ) { $order = []; $strict = false; } else { $strict = true; } // $utf = new UserTaxFactory(); // LEFT JOIN '. $utf->getTable() .' as b ON a.id = b.user_id AND (b.deleted=0 OR b.deleted IS NULL) $baf = new BankAccountFactory(); $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' select c.*, a.* from ' . $this->getTable() . ' as a LEFT JOIN ' . $baf->getTable() . ' as c ON a.id = c.user_id AND (c.deleted=0 OR c.deleted IS NULL) where a.company_id = ? AND a.id in (' . $this->getListSQL( $user_ids, $ph, 'uuid' ) . ') AND ( a.deleted = 0 ) '; $query .= $this->getSortSQL( $order, $strict ); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * @param null $filter_data * @param int $limit Limit the number of records returned * @param int $page Page number of records to return for pagination * @param array $where Additional SQL WHERE clause in format of array( $column => $filter, ... ). ie: array( 'id' => 1, ... ) * @param array $order Sort order passed to SQL in format of array( $column => 'asc', 'name' => 'desc', ... ). ie: array( 'id' => 'asc', 'name' => 'desc', ... ) * @return $this */ function getAPIEmailAddressDataByArrayCriteria( $filter_data = null, $limit = null, $page = null, $where = null, $order = null ) { if ( $order == null ) { $order = [ 'company_id' => 'asc', 'a.last_name' => 'asc' ]; $strict = false; } else { $strict = true; } $ph = []; $cf = new CompanyFactory(); $pcf = new PermissionControlFactory(); $puf = new PermissionUserFactory(); $query = ' select cf.id as company_id, cf.parent_id as company_parent_id, cf.name as company_name, cf.status_id as company_status_id, g.level as permission_level, cf.created_date as company_created_date, cf.updated_date as company_updated_date, h.company_last_login_date, a.id, a.status_id, a.first_name, a.last_name, a.user_name, a.country, a.province, a.postal_code, a.work_email, a.home_email, a.work_phone, a.home_phone, a.mobile_phone, a.birth_date, a.hire_date, a.termination_date, a.created_date, a.last_login_date from ' . $this->getTable() . ' as a LEFT JOIN ' . $cf->getTable() . ' as cf ON ( a.company_id = cf.id ) LEFT JOIN ( SELECT g2.*, g1.user_id FROM ' . $puf->getTable() . ' as g1, ' . $pcf->getTable() . ' as g2 WHERE ( g1.permission_control_id = g2.id AND g2.deleted = 0) ) as g ON ( a.id = g.user_id ) LEFT JOIN ( SELECT company_id, max(last_login_date) as company_last_login_date FROM ' . $this->getTable() . ' as h1 WHERE h1.deleted = 0 GROUP BY h1.company_id ) as h ON ( a.company_id = h.company_id ) where ( 1 = 1 ) '; $query .= ( isset( $filter_data['company_id'] ) ) ? $this->getWhereClauseSQL( 'a.company_id', $filter_data['company_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['company_status_id'] ) ) ? $this->getWhereClauseSQL( 'cf.status_id', $filter_data['company_status_id'], 'numeric_list', $ph ) : null; $query .= ( isset( $filter_data['status_id'] ) ) ? $this->getWhereClauseSQL( 'a.status_id', $filter_data['status_id'], 'numeric_list', $ph ) : null; $query .= ( isset( $filter_data['permission_level'] ) ) ? $this->getWhereClauseSQL( 'g.level', $filter_data['permission_level'], 'numeric_list', $ph ) : null; $query .= ( isset( $filter_data['product_edition_id'] ) ) ? $this->getWhereClauseSQL( 'cf.product_edition_id', $filter_data['product_edition_id'], 'numeric_list', $ph ) : null; if ( isset( $filter_data['created_date'] ) && !is_array( $filter_data['created_date'] ) && trim( $filter_data['created_date'] ) != '' ) { $date_filter = $this->getDateRangeSQL( $filter_data['created_date'], 'a.created_date' ); if ( $date_filter != false ) { $query .= ' AND ' . $date_filter; } unset( $date_filter ); } if ( isset( $filter_data['last_login_date'] ) && !is_array( $filter_data['last_login_date'] ) && trim( $filter_data['last_login_date'] ) != '' ) { $date_filter = $this->getDateRangeSQL( $filter_data['last_login_date'], 'a.last_login_date' ); if ( $date_filter != false ) { $query .= ' AND ' . $date_filter; } unset( $date_filter ); } if ( isset( $filter_data['updated_date'] ) && !is_array( $filter_data['updated_date'] ) && trim( $filter_data['updated_date'] ) != '' ) { $date_filter = $this->getDateRangeSQL( $filter_data['updated_date'], 'a.updated_date' ); if ( $date_filter != false ) { $query .= ' AND ' . $date_filter; } unset( $date_filter ); } $query .= $this->getSortSQL( $order, $strict ); //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); $this->rs = $this->ExecuteSQL( $query, $ph ); return $this; } /** * Return user records based on advanced filter criteria. * * @param int $company_id Company ID * @param array $filter_data Filter criteria in array('id' => array( 'UUID1', 'UUID2'), 'last_name' => 'smith' ) format, with possible top level array keys as follows: id, exclude_id, status_id, user_group_id, default_branch_id, default_department_id, title_id, currency_id, permission_control_id, pay_period_schedule_id, policy_group_id, sex_id, first_name, last_name, home_phone, work_phone, any_phone, country, province, city, address1, address2, postal_code, employee_number, user_name, sin, email, work_email, home_email, tag, employed_start_date, employed_end_date, partial_employed_start_date, partial_employed_end_date, hire_start_date, hire_end_date, termination_start_date, termination_end_date, birth_start_date, birth_end_date, password_start_date, password_end_date, last_login_start_date, last_login_date, created_by, created_date, updated_by, updated_date * @param int $limit Optional. Restrict the number of records returned * @param int $page Optional. Specify the page of records to return * @param array $where Optional. Additional WHERE clauses in array( 'column' => 'value', 'column' => 'value' ) format. * @param array $order Optional. Sort order in array( 'column' => ASC, 'column2' => DESC ) format. * @param bool $include_last_punch_time * @return bool|object $this */ function getAPISearchByCompanyIdAndArrayCriteria( $company_id, $filter_data, $limit = null, $page = null, $where = null, $order = null, $include_last_punch_time = false ) { if ( $company_id == '' ) { return false; } if ( !is_array( $order ) ) { //Use Filter Data ordering if its set. if ( isset( $filter_data['sort_column'] ) && $filter_data['sort_order'] ) { $order = [ Misc::trimSortPrefix( $filter_data['sort_column'] ) => $filter_data['sort_order'] ]; } } if ( isset( $filter_data['user_status_id'] ) ) { $filter_data['status_id'] = $filter_data['user_status_id']; } if ( isset( $filter_data['include_user_id'] ) ) { $filter_data['id'] = $filter_data['include_user_id']; } if ( isset( $filter_data['exclude_user_id'] ) ) { $filter_data['exclude_id'] = $filter_data['exclude_user_id']; } //Some of these are passed from Flex Schedule view. if ( isset( $filter_data['default_branch_ids'] ) ) { $filter_data['default_branch_id'] = $filter_data['default_branch_ids']; } if ( isset( $filter_data['default_department_ids'] ) ) { $filter_data['default_department_id'] = $filter_data['default_department_ids']; } if ( isset( $filter_data['group_id'] ) ) { $filter_data['user_group_id'] = $filter_data['group_id']; } if ( isset( $filter_data['user_title_id'] ) ) { $filter_data['title_id'] = $filter_data['user_title_id']; } if ( isset( $filter_data['user_tag'] ) ) { $filter_data['tag'] = $filter_data['user_tag']; } $additional_order_fields = [ 'default_branch', 'default_department', 'sex', 'user_group', 'title', 'currency', 'permission_control', 'terminated_permission_control', 'pay_period_schedule', 'policy_group', 'compf.name', 'lef.legal_name', 'a.last_name', ]; if ( $include_last_punch_time == true ) { $additional_order_fields[] = 'max_punch_time_stamp'; } $sort_column_aliases = [ 'type' => 'type_id', 'status' => 'status_id', 'mfa_type' => 'mfa_type_id', 'sex' => 'sex_id', 'full_name' => 'a.last_name', 'company' => 'compf.name', 'legal_name' => 'lef.legal_name', 'ethnic_group' => 'a.ethnic_group_id', 'birth_date_age' => false, 'hire_date_age' => false, 'hierarchy_control_display' => false, 'hierarchy_level_display' => false, 'max_punch_time_stamp' => false, ]; if ( getTTProductEdition() >= TT_PRODUCT_CORPORATE ) { $additional_order_fields = array_merge( [ 'jf.name', 'jif.name', ], $additional_order_fields ); $sort_column_aliases = array_merge( [ 'default_job' => 'jf.name', 'default_job_item' => 'jif.name', ], $sort_column_aliases ); } $order = $this->getColumnsFromAliases( $order, $sort_column_aliases ); if ( $order == null ) { $order = [ 'status_id' => 'asc', 'last_name' => 'asc', 'first_name' => 'asc', 'middle_name' => 'asc' ]; $strict = false; } else { //Do order by column conversions, because if we include these columns in the SQL //query, they contaminate the data array. //Always try to order by status first so INACTIVE employees go to the bottom. if ( !isset( $order['status_id'] ) ) { $order = Misc::prependArray( [ 'status_id' => 'asc' ], $order ); } //Always sort by last name, first name after other columns if ( !isset( $order['last_name'] ) ) { $order['last_name'] = 'asc'; } if ( !isset( $order['first_name'] ) ) { $order['first_name'] = 'asc'; } $strict = true; } //Debug::Arr($order, 'Order Data:', __FILE__, __LINE__, __METHOD__, 10); //Debug::Arr($filter_data, 'Filter Data:', __FILE__, __LINE__, __METHOD__, 10); $compf = new CompanyFactory(); $bf = new BranchFactory(); $df = new DepartmentFactory(); $ugf = new UserGroupFactory(); $utf = new UserTitleFactory(); $cf = new CurrencyFactory(); $pcf = new PermissionControlFactory(); $puf = new PermissionUserFactory(); $ppsuf = new PayPeriodScheduleUserFactory(); $ppsf = new PayPeriodScheduleFactory(); $pguf = new PolicyGroupUserFactory(); $pgf = new PolicyGroupFactory(); $egf = new EthnicGroupFactory(); $lef = new LegalEntityFactory(); $punchf = new PunchFactory(); $punchcf = new PunchControlFactory(); if ( getTTProductEdition() >= TT_PRODUCT_CORPORATE ) { $jf = new JobFactory(); $jif = new JobItemFactory(); } $ph = [ 'company_id' => TTUUID::castUUID( $company_id ), ]; $query = ' SELECT a.*, compf.name as company, b.name as default_branch, b.manual_id as default_branch_manual_id, c.name as default_department, c.manual_id as default_department_manual_id, d.name as user_group, e.name as title, f.name as currency, f.conversion_rate as currency_rate, g.id as permission_control_id, g.name as permission_control, pcf.name as terminated_permission_control, h.id as pay_period_schedule_id, h.name as pay_period_schedule, i.id as policy_group_id, i.name as policy_group, lef.legal_name, lef.trade_name, egf.name as ethnic_group, '; $query .= Permission::getPermissionIsChildIsOwnerSQL( ( isset( $filter_data['permission_current_user_id'] ) ) ? $filter_data['permission_current_user_id'] : TTUUID::getZeroID(), 'a.id' ); if ( getTTProductEdition() >= TT_PRODUCT_CORPORATE ) { $query .= ' jf.name as default_job, jf.manual_id as default_job_manual_id, jif.name as default_job_item, jif.manual_id as default_job_item_manual_id, '; } if ( $include_last_punch_time == true ) { $query .= ' punch.max_punch_time_stamp as max_punch_time_stamp, '; } //We need to use SUB-SELECTs when joining to permission_control/permission_user, pay_period_schedule/pay_period_schedule_user, policy_group/policy_group_user //Since the employee may not be assigned to any of them, or they may be assigned to ones that were already deleted, and a basic LEFT JOIN //will return multiple records for a single employee unless its done with a sub-select. This can be tested by created a new pay period schedule, //assigning the employee to it, then deleting the pay period schedule, doing that a few times. Then the LEFT JOIN will return one record for each pay period schedule that was created. $query .= ' y.first_name as created_by_first_name, y.middle_name as created_by_middle_name, y.last_name as created_by_last_name, z.first_name as updated_by_first_name, z.middle_name as updated_by_middle_name, z.last_name as updated_by_last_name FROM ' . $this->getTable() . ' as a LEFT JOIN ' . $compf->getTable() . ' as compf ON ( a.company_id = compf.id AND compf.deleted = 0) LEFT JOIN ' . $bf->getTable() . ' as b ON ( a.company_id = b.company_id AND a.default_branch_id = b.id AND b.deleted = 0) LEFT JOIN ' . $df->getTable() . ' as c ON ( a.company_id = c.company_id AND a.default_department_id = c.id AND c.deleted = 0) LEFT JOIN ' . $ugf->getTable() . ' as d ON ( a.company_id = d.company_id AND a.group_id = d.id AND d.deleted = 0 ) LEFT JOIN ' . $utf->getTable() . ' as e ON ( a.company_id = e.company_id AND a.title_id = e.id AND e.deleted = 0 ) LEFT JOIN ' . $cf->getTable() . ' as f ON ( a.company_id = f.company_id AND a.currency_id = f.id AND f.deleted = 0 ) LEFT JOIN ' . $lef->getTable() . ' as lef ON ( a.company_id = lef.company_id AND a.legal_entity_id = lef.id AND lef.deleted = 0 ) LEFT JOIN ' . $egf->getTable() . ' as egf ON ( a.company_id = egf.company_id AND a.ethnic_group_id = egf.id AND egf.deleted = 0 ) LEFT JOIN ( SELECT g2.*, g1.user_id FROM ' . $puf->getTable() . ' as g1, ' . $pcf->getTable() . ' as g2 WHERE ( g1.permission_control_id = g2.id AND g2.deleted = 0) ) as g ON ( a.id = g.user_id ) LEFT JOIN ' . $pcf->getTable() . ' as pcf ON ( a.company_id = pcf.company_id AND a.terminated_permission_control_id = pcf.id AND pcf.deleted = 0 ) LEFT JOIN ( SELECT h2.*, h1.user_id FROM ' . $ppsuf->getTable() . ' as h1, ' . $ppsf->getTable() . ' as h2 WHERE ( h1.pay_period_schedule_id = h2.id AND h2.deleted = 0) ) as h ON ( a.id = h.user_id ) LEFT JOIN ( SELECT i2.*, i1.user_id FROM ' . $pguf->getTable() . ' as i1, ' . $pgf->getTable() . ' as i2 WHERE ( i1.policy_group_id = i2.id AND i2.deleted = 0) ) as i ON ( a.id = i.user_id ) '; if ( getTTProductEdition() >= TT_PRODUCT_CORPORATE ) { $query .= ' LEFT JOIN ' . $jf->getTable() . ' as jf ON ( a.company_id = jf.company_id AND a.default_job_id = jf.id AND jf.deleted = 0 ) LEFT JOIN ' . $jif->getTable() . ' as jif ON ( a.company_id = jif.company_id AND a.default_job_item_id = jif.id AND jif.deleted = 0 ) '; } if ( $include_last_punch_time == true ) { $query .= ' LEFT JOIN ( SELECT tmp2_d.id as user_id, max(tmp2_a.time_stamp) as max_punch_time_stamp FROM ' . $punchf->getTable() . ' as tmp2_a LEFT JOIN ' . $punchcf->getTable() . ' as tmp2_b ON tmp2_a.punch_control_id = tmp2_b.id LEFT JOIN ' . $this->getTable() . ' as tmp2_d ON tmp2_b.user_id = tmp2_d.id WHERE tmp2_d.company_id = \'' . TTUUID::castUUID( $company_id ) . '\' AND tmp2_d.status_id = 10 AND tmp2_b.date_stamp >= ' . $this->db->qstr( $this->db->BindDate( TTDate::getBeginDayEpoch( time() - ( 86400 * 31 ) ) ) ) . ' AND tmp2_b.date_stamp <= ' . $this->db->qstr( $this->db->BindDate( TTDate::getEndDayEpoch( time() ) ) ) . ' AND tmp2_a.time_stamp IS NOT NULL AND ( tmp2_a.deleted = 0 AND tmp2_b.deleted = 0 ) GROUP BY tmp2_d.id ) as punch ON ( a.id = punch.user_id ) '; } $query .= Permission::getPermissionHierarchySQL( $company_id, ( isset( $filter_data['permission_current_user_id'] ) ) ? $filter_data['permission_current_user_id'] : 0, 'a.id' ); $query .= ' LEFT JOIN ' . $this->getTable() . ' as y ON ( a.company_id = y.company_id AND a.created_by = y.id AND y.deleted = 0 ) LEFT JOIN ' . $this->getTable() . ' as z ON ( a.company_id = z.company_id AND a.updated_by = z.id AND z.deleted = 0 ) WHERE a.company_id = ? '; $query .= Permission::getPermissionIsChildIsOwnerFilterSQL( $filter_data, 'a.id' ); $query .= ( isset( $filter_data['permission_children_ids'] ) ) ? $this->getWhereClauseSQL( 'a.id', $filter_data['permission_children_ids'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['id'] ) ) ? $this->getWhereClauseSQL( 'a.id', $filter_data['id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['exclude_id'] ) ) ? $this->getWhereClauseSQL( 'a.id', $filter_data['exclude_id'], 'not_uuid_list', $ph ) : null; if ( isset( $filter_data['status'] ) && !is_array( $filter_data['status'] ) && trim( $filter_data['status'] ) != '' && !isset( $filter_data['status_id'] ) ) { $filter_data['status_id'] = Option::getByFuzzyValue( $filter_data['status'], $this->getOptions( 'status' ) ); } $query .= ( isset( $filter_data['status_id'] ) ) ? $this->getWhereClauseSQL( 'a.status_id', $filter_data['status_id'], 'numeric_list', $ph ) : null; if ( isset( $filter_data['include_subgroups'] ) && (bool)$filter_data['include_subgroups'] == true ) { $uglf = new UserGroupListFactory(); $filter_data['user_group_id'] = $uglf->getByCompanyIdAndGroupIdAndSubGroupsArray( $company_id, $filter_data['user_group_id'], true ); } $query .= ( isset( $filter_data['user_group_id'] ) ) ? $this->getWhereClauseSQL( 'a.group_id', $filter_data['user_group_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['user_group'] ) ) ? $this->getWhereClauseSQL( 'd.name', $filter_data['user_group'], 'text', $ph ) : null; $query .= ( isset( $filter_data['legal_entity_id'] ) ) ? $this->getWhereClauseSQL( 'a.legal_entity_id', $filter_data['legal_entity_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['legal_name'] ) ) ? $this->getWhereClauseSQL( 'lef.legal_name', $filter_data['legal_name'], 'text', $ph ) : null; $query .= ( isset( $filter_data['default_branch_id'] ) ) ? $this->getWhereClauseSQL( 'a.default_branch_id', $filter_data['default_branch_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['default_branch'] ) ) ? $this->getWhereClauseSQL( 'b.name', $filter_data['default_branch'], 'text', $ph ) : null; $query .= ( isset( $filter_data['default_department_id'] ) ) ? $this->getWhereClauseSQL( 'a.default_department_id', $filter_data['default_department_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['default_department'] ) ) ? $this->getWhereClauseSQL( 'c.name', $filter_data['default_department'], 'text', $ph ) : null; if ( getTTProductEdition() >= TT_PRODUCT_CORPORATE ) { $query .= ( isset( $filter_data['default_job_id'] ) ) ? $this->getWhereClauseSQL( 'a.default_job_id', $filter_data['default_job_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['default_job'] ) ) ? $this->getWhereClauseSQL( 'jf.name', $filter_data['default_job'], 'text', $ph ) : null; $query .= ( isset( $filter_data['default_job_item_id'] ) ) ? $this->getWhereClauseSQL( 'a.default_job_item_id', $filter_data['default_job_item_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['default_job_item'] ) ) ? $this->getWhereClauseSQL( 'jif.name', $filter_data['default_job_item'], 'text', $ph ) : null; $query .= ( isset( $filter_data['default_punch_tag_id'] ) ) ? $this->getWhereClauseSQL( 'a.default_punch_tag_id', $filter_data['default_punch_tag_id'], 'jsonb_uuid_array', $ph ) : null; } $query .= ( isset( $filter_data['title_id'] ) ) ? $this->getWhereClauseSQL( 'a.title_id', $filter_data['title_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['title'] ) ) ? $this->getWhereClauseSQL( 'e.name', $filter_data['title'], 'text', $ph ) : null; $query .= ( isset( $filter_data['ethnic_group_id'] ) ) ? $this->getWhereClauseSQL( 'a.ethnic_group_id', $filter_data['ethnic_group_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['ethnic_group'] ) ) ? $this->getWhereClauseSQL( 'egf.name', $filter_data['ethnic_group'], 'text', $ph ) : null; $query .= ( isset( $filter_data['currency_id'] ) ) ? $this->getWhereClauseSQL( 'a.currency_id', $filter_data['currency_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['currency'] ) ) ? $this->getWhereClauseSQL( 'f.name', $filter_data['currency'], 'text', $ph ) : null; $query .= ( isset( $filter_data['permission_control_id'] ) ) ? $this->getWhereClauseSQL( 'g.id', $filter_data['permission_control_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['permission_control'] ) ) ? $this->getWhereClauseSQL( 'g.name', $filter_data['permission_control'], 'text', $ph ) : null; $query .= ( isset( $filter_data['pay_period_schedule_id'] ) ) ? $this->getWhereClauseSQL( 'h.id', $filter_data['pay_period_schedule_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['pay_period_schedule'] ) ) ? $this->getWhereClauseSQL( 'h.name', $filter_data['pay_period_schedule'], 'text', $ph ) : null; $query .= ( isset( $filter_data['policy_group_id'] ) ) ? $this->getWhereClauseSQL( 'i.id', $filter_data['policy_group_id'], 'uuid_list', $ph ) : null; $query .= ( isset( $filter_data['policy_group'] ) ) ? $this->getWhereClauseSQL( 'i.name', $filter_data['policy_group'], 'text', $ph ) : null; if ( isset( $filter_data['sex'] ) && !is_array( $filter_data['sex'] ) && trim( $filter_data['sex'] ) != '' && !isset( $filter_data['sex_id'] ) ) { $filter_data['sex_id'] = Option::getByFuzzyValue( $filter_data['sex'], $this->getOptions( 'sex' ) ); } $query .= ( isset( $filter_data['sex_id'] ) ) ? $this->getWhereClauseSQL( 'a.sex_id', $filter_data['sex_id'], 'numeric_list', $ph ) : null; $query .= ( isset( $filter_data['first_name'] ) ) ? $this->getWhereClauseSQL( 'a.first_name', $filter_data['first_name'], 'text_metaphone', $ph ) : null; $query .= ( isset( $filter_data['last_name'] ) ) ? $this->getWhereClauseSQL( 'a.last_name', $filter_data['last_name'], 'text_metaphone', $ph ) : null; $query .= ( isset( $filter_data['full_name'] ) ) ? $this->getWhereClauseSQL( 'a.last_name', $filter_data['full_name'], 'text_metaphone', $ph ) : null; $query .= ( isset( $filter_data['home_phone'] ) ) ? $this->getWhereClauseSQL( 'a.home_phone', $filter_data['home_phone'], 'phone', $ph ) : null; $query .= ( isset( $filter_data['work_phone'] ) ) ? $this->getWhereClauseSQL( 'a.work_phone', $filter_data['work_phone'], 'phone', $ph ) : null; $query .= ( isset( $filter_data['any_phone'] ) ) ? $this->getWhereClauseSQL( [ 'a.work_phone', 'a.home_phone', 'a.mobile_phone' ], $filter_data['any_phone'], 'phone', $ph ) : null; $query .= ( isset( $filter_data['country'] ) ) ? $this->getWhereClauseSQL( 'a.country', $filter_data['country'], 'upper_text_list', $ph ) : null; $query .= ( isset( $filter_data['province'] ) ) ? $this->getWhereClauseSQL( 'a.province', $filter_data['province'], 'upper_text_list', $ph ) : null; $query .= ( isset( $filter_data['city'] ) ) ? $this->getWhereClauseSQL( 'a.city', $filter_data['city'], 'text', $ph ) : null; $query .= ( isset( $filter_data['address1'] ) ) ? $this->getWhereClauseSQL( 'a.address1', $filter_data['address1'], 'text', $ph ) : null; $query .= ( isset( $filter_data['address2'] ) ) ? $this->getWhereClauseSQL( 'a.address2', $filter_data['address2'], 'text', $ph ) : null; $query .= ( isset( $filter_data['postal_code'] ) ) ? $this->getWhereClauseSQL( 'a.postal_code', $filter_data['postal_code'], 'text', $ph ) : null; $query .= ( isset( $filter_data['employee_number'] ) && !is_array( $filter_data['employee_number'] ) && trim( $filter_data['employee_number'] ) != '' ) ? $this->getWhereClauseSQL( 'a.employee_number', $filter_data['employee_number'], 'numeric', $ph ) : null; $query .= ( isset( $filter_data['user_name'] ) ) ? $this->getWhereClauseSQL( 'a.user_name', $filter_data['user_name'], 'text', $ph ) : null; $query .= ( isset( $filter_data['sin'] ) ) ? $this->getWhereClauseSQL( 'a.sin', $filter_data['sin'], 'numeric_string', $ph ) : null; $query .= ( isset( $filter_data['email'] ) && !is_array( $filter_data['email'] ) && $filter_data['email'] != '' ) ? 'AND (' . $this->getWhereClauseSQL( 'a.work_email', $filter_data['email'], 'text', $ph, null, false ) . ' OR ' . $this->getWhereClauseSQL( 'a.home_email', $filter_data['email'], 'text', $ph, null, false ) . ')' : null; $query .= ( isset( $filter_data['work_email'] ) ) ? $this->getWhereClauseSQL( 'a.work_email', $filter_data['work_email'], 'text', $ph ) : null; $query .= ( isset( $filter_data['home_email'] ) ) ? $this->getWhereClauseSQL( 'a.home_email', $filter_data['home_email'], 'text', $ph ) : null; $query .= ( isset( $filter_data['any_email'] ) ) ? $this->getWhereClauseSQL( [ 'a.work_email', 'a.home_email' ], $filter_data['any_email'], 'text', $ph ) : null; $query .= ( isset( $filter_data['tag'] ) ) ? $this->getWhereClauseSQL( 'a.id', [ 'company_id' => TTUUID::castUUID( $company_id ), 'object_type_id' => 200, 'tag' => $filter_data['tag'] ], 'tag', $ph ) : null; $query .= $this->getCustomFieldWhereSQL( $company_id, 'a.custom_field', $filter_data, $ph ); //$query .= ( isset($filter_data['longitude']) ) ? $this->getWhereClauseSQL( 'a.longitude', $filter_data['longitude'], 'numeric', $ph ) : NULL; //Basic start/end dates assume that the employee is *employed* for the entire date range. //Use employed_start/end_date rather than just start/end_date to prevents other reports that use start/end_date from conflicting with this. //As a time period selection of "all years" will always return no results. if ( isset( $filter_data['employed_start_date'] ) && (int)$filter_data['employed_start_date'] != 0 ) { $query .= ' AND ( a.hire_date IS NULL OR a.hire_date <= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['employed_start_date'] ) ) ) . ' ) '; } if ( isset( $filter_data['employed_end_date'] ) && (int)$filter_data['employed_end_date'] != 0 ) { $query .= ' AND ( a.termination_date IS NULL OR a.termination_date >= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['employed_end_date'] ) ) ) . ' ) '; } //employed_[start|end]_date requires the employee to be employed the entire time. This just requires them to be employed for any part of the range. if ( isset( $filter_data['partial_employed_end_date'] ) && (int)$filter_data['partial_employed_end_date'] != 0 ) { $query .= ' AND ( a.hire_date IS NULL OR a.hire_date <= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['partial_employed_end_date'] ) ) ) . ' ) '; } if ( isset( $filter_data['partial_employed_start_date'] ) && (int)$filter_data['partial_employed_start_date'] != 0 ) { $query .= ' AND ( a.termination_date IS NULL OR a.termination_date >= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['partial_employed_start_date'] ) ) ) . ' ) '; } if ( isset( $filter_data['hire_start_date'] ) && (int)$filter_data['hire_start_date'] != 0 && isset( $filter_data['hire_end_date'] ) && (int)$filter_data['hire_end_date'] != 0 ) { $query .= ' AND ( a.hire_date >= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['hire_start_date'] ) ) ) . ' AND a.hire_date <= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['hire_end_date'] ) ) ) . ' ) '; } if ( isset( $filter_data['termination_start_date'] ) && (int)$filter_data['termination_start_date'] != 0 && isset( $filter_data['termination_end_date'] ) && (int)$filter_data['termination_end_date'] != 0 ) { $query .= ' AND ( a.termination_date >= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['termination_start_date'] ) ) ) . ' AND a.termination_date <= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['termination_end_date'] ) ) ) . ' ) '; } if ( isset( $filter_data['birth_start_date'] ) && (int)$filter_data['birth_start_date'] != 0 && isset( $filter_data['birth_end_date'] ) && (int)$filter_data['birth_end_date'] != 0 ) { $query .= ' AND ( a.birth_date >= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['birth_start_date'] ) ) ) . ' AND a.birth_date <= ' . $this->db->qstr( $this->db->BindDate( (int)TTDate::parseDateTime( $filter_data['birth_end_date'] ) ) ) . ' ) '; } if ( isset( $filter_data['last_login_start_date'] ) && (int)$filter_data['last_login_start_date'] != 0 && isset( $filter_data['last_login_end_date'] ) && (int)$filter_data['last_login_end_date'] != 0 ) { $query .= ' AND ( a.last_login_date >= ' . (int)$filter_data['last_login_start_date'] . ' AND a.last_login_date <= ' . (int)$filter_data['last_login_end_date'] . ' ) '; } if ( isset( $filter_data['password_start_date'] ) && (int)$filter_data['password_start_date'] != 0 && isset( $filter_data['password_end_date'] ) && (int)$filter_data['password_end_date'] != 0 ) { $query .= ' AND ( a.password_updated_date >= ' . (int)$filter_data['password_start_date'] . ' AND a.password_updated_date <= ' . (int)$filter_data['password_end_date'] . ' ) '; } if ( isset( $filter_data['last_login_date'] ) && !is_array( $filter_data['last_login_date'] ) && trim( $filter_data['last_login_date'] ) != '' ) { $date_filter = $this->getDateRangeSQL( $filter_data['last_login_date'], 'a.last_login_date' ); if ( $date_filter != false ) { $query .= ' AND ' . $date_filter; } unset( $date_filter ); } if ( isset( $filter_data['created_date'] ) && !is_array( $filter_data['created_date'] ) && trim( $filter_data['created_date'] ) != '' ) { $date_filter = $this->getDateRangeSQL( $filter_data['created_date'], 'a.created_date' ); if ( $date_filter != false ) { $query .= ' AND ' . $date_filter; } unset( $date_filter ); } if ( isset( $filter_data['updated_date'] ) && !is_array( $filter_data['updated_date'] ) && trim( $filter_data['updated_date'] ) != '' ) { $date_filter = $this->getDateRangeSQL( $filter_data['updated_date'], 'a.updated_date' ); if ( $date_filter != false ) { $query .= ' AND ' . $date_filter; } unset( $date_filter ); } $query .= ( isset( $filter_data['created_by'] ) ) ? $this->getWhereClauseSQL( [ 'a.created_by', 'y.first_name', 'y.last_name' ], $filter_data['created_by'], 'user_id_or_name', $ph ) : null; $query .= ( isset( $filter_data['updated_by'] ) ) ? $this->getWhereClauseSQL( [ 'a.updated_by', 'z.first_name', 'z.last_name' ], $filter_data['updated_by'], 'user_id_or_name', $ph ) : null; $query .= ' AND ( a.deleted = 0 ) '; $query .= $this->getWhereSQL( $where ); $query .= $this->getSortSQL( $order, $strict, $additional_order_fields ); $this->rs = $this->ExecuteSQL( $query, $ph, $limit, $page ); //Debug::Query( $query, $ph, __FILE__, __LINE__, __METHOD__, 10); return $this; } } ?>