Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 3454 | Rev 6951 | Ir a la última revisión | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 3454 Rev 4113
Línea 173... Línea 173...
173
     * @param int $company_id
173
     * @param int $company_id
174
     * @param int $id
174
     * @param int $id
175
     * @return JobDescription
175
     * @return JobDescription
176
     */
176
     */
177
    public function fetchAllActiveByCompanyIdWhereIdNotEqual($company_id, $id) {
177
    public function fetchAllActiveByCompanyIdWhereIdNotEqual($company_id, $id) {
-
 
178
        
-
 
179
        
-
 
180
        
-
 
181
        
-
 
182
        
178
        $select = $this->sql->select(self::_TABLE);
183
        $select = $this->sql->select(self::_TABLE);
179
        $select->where->equalTo('company_id', $company_id);
184
        $select->where->equalTo('company_id', $company_id);
180
        $select->where->notEqualTo('id', $id);
185
        $select->where->notEqualTo('id', $id);
181
        $select->where->equalTo('status', JobDescription::STATUS_ACTIVE);
186
        $select->where->equalTo('status', JobDescription::STATUS_ACTIVE);
182
        $select->order('name');
187
        $select->order('name');
Línea 183... Línea 188...
183
 
188
 
184
        $prototype = new JobDescription();
189
        $prototype = new JobDescription();
185
        return $this->executeFetchAllObject($select, $prototype);
190
        return $this->executeFetchAllObject($select, $prototype);
186
    }
191
    }
187
 
192
    
188
    /**
193
     /**
189
     *
194
     *
190
     * @param string $search
195
     * @param string $search
191
     * @param int $page
196
     * @param int $page
192
     * @param int $records_per_page
197
     * @param int $records_per_page
Línea 257... Línea 262...
257
     */
262
     */
258
    public function insert($jobDescription) {
263
    public function insert($jobDescription) {
259
        $hydrator = new ObjectPropertyHydrator();
264
        $hydrator = new ObjectPropertyHydrator();
260
        $values = $hydrator->extract($jobDescription);
265
        $values = $hydrator->extract($jobDescription);
261
        $values = $this->removeEmpty($values);
266
        $values = $this->removeEmpty($values);
-
 
267
        
262
        $values['job_description_id_boss'] = !empty($values['job_description_id_boss']) ? $values['job_description_id_boss'] : null;
268
        $values['job_description_id_boss'] = !empty($values['job_description_id_boss']) ? $values['job_description_id_boss'] : null;
Línea 263... Línea 269...
263
 
269
 
264
 
270
 
Línea 282... Línea 288...
282
     */
288
     */
283
    public function update($jobDescription) {
289
    public function update($jobDescription) {
284
        $hydrator = new ObjectPropertyHydrator();
290
        $hydrator = new ObjectPropertyHydrator();
285
        $values = $hydrator->extract($jobDescription);
291
        $values = $hydrator->extract($jobDescription);
286
        $values = $this->removeEmpty($values);
292
        $values = $this->removeEmpty($values);
-
 
293
 
287
        $values['job_description_id_boss'] = !empty($values['job_description_id_boss']) ? $values['job_description_id_boss'] : null;
294
        $values['job_description_id_boss'] = !empty($values['job_description_id_boss']) ? $values['job_description_id_boss'] : null;
Línea 288... Línea 295...
288
 
295
 
289
        $update = $this->sql->update(self::_TABLE);
296
        $update = $this->sql->update(self::_TABLE);
290
        $update->set($values);
297
        $update->set($values);