From 64c19e79ff4fee0d826b3338e7b25ffaa6fb0b58 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ses=C3=B3stris=20Vieira?= Date: Mon, 3 May 2021 11:46:14 -0300 Subject: [PATCH] =?UTF-8?q?Bug=20na=20rotina=20de=20importa=C3=A7=C3=A3o?= =?UTF-8?q?=20de=20Casas?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- sigi/apps/casas/views.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sigi/apps/casas/views.py b/sigi/apps/casas/views.py index 65bc06c..eff23be 100644 --- a/sigi/apps/casas/views.py +++ b/sigi/apps/casas/views.py @@ -163,6 +163,12 @@ class importa_casas(View): def funcionario_update(self, setor, fields, orgao, reg): field_nome = (self.PRESIDENTE_NOME if setor == 'presidente' else self.SERVIDOR_NOME) + + # Se não tem nome do contato (ou presidente), então não há nada a + # atualizar. Volta o reg inalterado. + if field_nome not in reg: + return reg + funcionario = orgao.funcionario_set.filter( setor=setor, nome__iexact=reg[field_nome].strip()