Browse Source

Merge pull request #1330 from interlegis/1294-data-errada-mandato

fix #1294 - Arruma a data_fim_mandato
pull/1333/head
Luciano Henrique Nunes de Almeida 8 years ago
committed by GitHub
parent
commit
3ce16cfd0c
  1. 2
      sapl/legacy/migration.py

2
sapl/legacy/migration.py

@ -661,6 +661,8 @@ def adjust_documentoadministrativo(new, old):
def adjust_mandato(new, old):
if old.dat_fim_mandato:
new.data_fim_mandato = old.dat_fim_mandato
if not new.data_fim_mandato:
legislatura = Legislatura.objects.latest('data_fim')
new.data_fim_mandato = legislatura.data_fim

Loading…
Cancel
Save