|
|
@ -1,12 +1,8 @@ |
|
|
|
# -*- coding: utf-8 -*- |
|
|
|
from __future__ import unicode_literals |
|
|
|
from django.db import migrations |
|
|
|
import json |
|
|
|
import os |
|
|
|
from datetime import timedelta |
|
|
|
|
|
|
|
from django.core.management import call_command |
|
|
|
|
|
|
|
from django.db import migrations |
|
|
|
|
|
|
|
|
|
|
|
def altera_data_inicio_mandato(apps, schema_editor): |
|
|
@ -16,7 +12,9 @@ def altera_data_inicio_mandato(apps, schema_editor): |
|
|
|
for mandato in mandatos: |
|
|
|
data_inicio = mandato.data_inicio_mandato |
|
|
|
data_inicio_legislatura = mandato.legislatura.data_inicio |
|
|
|
days = abs((data_inicio - data_inicio_legislatura).days) |
|
|
|
|
|
|
|
days = abs((data_inicio - data_inicio_legislatura |
|
|
|
).days) if data_inicio else 60 |
|
|
|
|
|
|
|
if days >= 60: |
|
|
|
mandato.data_inicio_mandato = data_inicio_legislatura |
|
|
|