search for: responsavel

Displaying 1 result from an estimated 1 matches for "responsavel".

Did you mean: responsable
2010 Aug 03
10
Returning last value
...ollowing controller of the update action: [code] def update @projeto = Projeto.find(params[:id]) if (@projeto.update_attributes(params[:projeto])) ## Mesmo raciocínio utilizado no create. @permissaoA = Permissao.find(:first, :conditions => ["usuario_id = ?", @projeto.responsavel.to_i]) @permissaoAvancado1 = Permissao.find(:first, :conditions => ["projeto_id = ? and usuario_id = ?", 0, @projeto.responsavel.to_i]) if @permissaoAvancado1.nil? ## Caso tenham excluido os usuários responsáveis, as permissões seriam nulas. Dai ele verifica se vai alterar...