I have an association of tables projeto > auto > anexo
. In the project table I have a field cod_status
, and in the attached table I have a field status
.
How do I make the Anexo.status
change to Projeto.cod_status
automatically when I edit the field 5
to 'I'.
Controller Edit
function edit($id = null)
{
if (!$id && empty($this->data)) {
$this->Session->setFlash(sprintf(__('%s inválido.', true), 'Anexo'));
$this->redirect(array('action' => 'index'));
}
if (!empty($this->data)) {
if ($this->Anexo->save($this->data)) {
$this->Session->setFlash(sprintf(__('%s alterado com sucesso.', true), 'Anexo'), 'default', array('class' => 'success'));
$this->redirect(array('action' => 'index'));
} else {
$this->Session->setFlash(sprintf(__('O %s não pode ser salvo. Por favor, tente novamente.', true), 'anexo'));
}
}
if (empty($this->data)) {
$this->data = $this->Anexo->read(null, $id);
}
}