The following query returns the correct record but missing items on its return.
$nota = $this->Nota->find('first', [
'conditions' => ['id' => $numero,
'serie' => $serie
]
]);
For example: When no error, returns the complete array
array {
["id"] => "1"
["nome"] => "nome"
["serie"] => "serie"
["texto"] => "texto"
}
When the error returns the incomplete array
array {
["id"] => "2"
["serie"] => "serie2"
["nome"] => "nome2"
}