|
@ -263,12 +263,13 @@ class MateriaLegislativa(models.Model): |
|
|
if self.ano and self.numero_protocolo: |
|
|
if self.ano and self.numero_protocolo: |
|
|
protocolo = Protocolo.objects.filter( |
|
|
protocolo = Protocolo.objects.filter( |
|
|
ano=self.ano, |
|
|
ano=self.ano, |
|
|
numero=self.numero_protocolo) |
|
|
numero=self.numero_protocolo).first() |
|
|
if protocolo.first().timestamp: |
|
|
if protocolo: |
|
|
return protocolo.first().timestamp.date() |
|
|
if protocolo.timestamp: |
|
|
else: |
|
|
return protocolo.timestamp.date() |
|
|
return protocolo.data |
|
|
elif protocolo.data: |
|
|
else: |
|
|
return protocolo.data |
|
|
|
|
|
|
|
|
return '' |
|
|
return '' |
|
|
|
|
|
|
|
|
def delete(self, using=None, keep_parents=False): |
|
|
def delete(self, using=None, keep_parents=False): |
|
|