Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

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

Rev 2053 Rev 2102
Línea 113... Línea 113...
113
        $update->set($values);
113
        $update->set($values);
114
        $update->where->equalTo('id', $test->id);
114
        $update->where->equalTo('id', $test->id);
Línea 115... Línea 115...
115
        
115
        
116
        return $this->executeUpdate($update); 
116
        return $this->executeUpdate($update); 
117
    }
117
    }
118
    
118
     
119
    /**
119
    /**
120
     *
120
     * 
121
     * @param CompanyPerformanceEvaluationTest $test
121
     * @param int $test
122
     * @return boolean
122
     * @return boolean
123
     */
123
     */
124
    public function delete($test)
124
    public function delete($test)
125
    {
125
    {
-
 
126
        $update = $this->sql->update(self::_TABLE);
126
        $delete = $this->sql->delete(self::_TABLE);
127
        $update->set([
127
        $delete->where->equalTo('id', $test->id);
128
            'status' => CompanyPerformanceEvaluationTest::STATUS_DELETED
128
 
129
        ]);
Línea 129... Línea 130...
129
        //$delete->getSqlString($this->adapter->platform); exit;
130
        $update->where->equalTo('id', $test->id);
130
        
131
        
Línea 131... Línea -...
131
        return $this->executeDelete($delete);
-
 
Línea 132... Línea 132...
132
    }
132
        return $this->executeUpdate($update);
133
    
133
    }