Skip to content

Commit

Permalink
Fixes output bug in A102
Browse files Browse the repository at this point in the history
Fixes output bug in A102
  • Loading branch information
egarciadiaz committed Feb 18, 2020
1 parent a8f0e2e commit 779ab8d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion gestionatr/output/messages/sw_a1.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def __init__(self):
attributes={'xmlns': 'http://localhost/elegibilidad'})
self.cabecera = CabeceraAutoconsumoRechazo()
self.a102 = A102()
super(MensajeA102, self).__init__('MensajeA102', 'mensaje')
super(MensajeA102, self).__init__('A102', 'mensaje')


class A102(XmlModel):
Expand All @@ -57,6 +57,7 @@ def __init__(self):
self.comentarios = XmlField('Comentarios')
super(A102, self).__init__('A102', 'a102')


class Rechazos(XmlModel):

_sort_order = ('rechazos', 'fecha_rechazo', 'rechazo_list')
Expand Down

0 comments on commit 779ab8d

Please sign in to comment.