Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 192 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 192 Rev 193
Línea 139... Línea 139...
139
        
139
        
Línea 140... Línea 140...
140
        return $this->executeDelete($delete);
140
        return $this->executeDelete($delete);
Línea -... Línea 141...
-
 
141
        
-
 
142
    }
-
 
143
    
-
 
144
    
-
 
145
    /**
-
 
146
     *
-
 
147
     * @param int $company_id
-
 
148
     * @param string $search
-
 
149
     * @param int $page
-
 
150
     * @param int $records_per_page
-
 
151
     * @param string $order_field
-
 
152
     * @param string $order_direction
-
 
153
     * @return Paginator
-
 
154
     */
-
 
155
    public function fetchAllDataTableByCompanyId($company_id, $search,  $page = 1, $records_per_page = 10, $order_field= 'name', $order_direction = 'ASC')
-
 
156
    {
-
 
157
        $select = $this->sql->select();
-
 
158
        $select->from(['p' => PositionMapper::_TABLE ]);
-
 
159
        $select->columns(['uuid', 'user_id', 'job_description_id', 'status']);
-
 
160
        $select->join(['u' => UserMapper::_TABLE], 'p.user_id = u.id', ['first_name', 'last_name', 'email']);
-
 
161
        $select->join(['jd' => JobDescriptionMapper::_TABLE], 'p.job_description_id = jd.id', ['job_description' => 'name']);
-
 
162
        
-
 
163
        $select->where->equalTo('p.company_id', $company_id);
-
 
164
        
-
 
165
        if($search) {
-
 
166
            $select->where->nest()->like('jd.name', '%' . $search . '%')
-
 
167
            ->or->like('u.first_name', '%' . $search . '%')
-
 
168
            ->or->like('u.last_name', '%' . $search . '%')
-
 
169
            ->or->like('u.email', '%' . $search . '%')
-
 
170
            ->unnest();
-
 
171
        }
-
 
172
        $select->order($order_field . ' ' . $order_direction);
-
 
173
        
-
 
174
        //echo $select->getSqlString($this->adapter->platform);
-
 
175
        
-
 
176
        $resultset  = new HydratingResultSet();
-
 
177
        
-
 
178
        $adapter = new DbSelect($select, $this->sql, $resultset);
-
 
179
        $paginator = new Paginator($adapter);
-
 
180
        $paginator->setItemCountPerPage($records_per_page);
-
 
181
        $paginator->setCurrentPageNumber($page);
-
 
182
        
-
 
183
        
Línea 141... Línea 184...
141
        
184
        return $paginator;
142
    }
185
    }