e9d0218c06be8e5d8be4f64a870a0d681bf47930
[cascardo/irpf-gui.git] / src / bens.py
1 # coding=utf-8
2 #
3 #   Copyright 2013 Thadeu Lima de Souza Cascardo <cascardo@cascardo.info>
4 #
5 #   This program is free software: you can redistribute it and/or modify
6 #   it under the terms of the GNU General Public License as published by
7 #   the Free Software Foundation, either version 3 of the License, or
8 #   (at your option) any later version.
9 #
10 #   This program is distributed in the hope that it will be useful,
11 #   but WITHOUT ANY WARRANTY; without even the implied warranty of
12 #   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 #   GNU General Public License for more details.
14 #
15 #   You should have received a copy of the GNU General Public License
16 #   along with this program.  If not, see <http://www.gnu.org/licenses/>.
17 # -*- mode: python; encoding: utf-8; -*-
18 import xml.dom.minidom
19 import items
20 from form import AttrForm
21
22 class Bens(items.Items):
23     def __init__(self, contribuinte):
24         contribuinte = contribuinte
25         bens = contribuinte.dados.getElementsByTagName("bens")[0]
26         items.Items.__init__(self, bens)
27     def form(self, item):
28         form = []
29         form.append(AttrForm("Nome", "discriminacao", item))
30         form.append(AttrForm("Valor Anterior", "valorExercicioAnterior", item))
31         form.append(AttrForm("Valor Atual", "valorExercicioAtual", item))
32         return form
33
34 if __name__ == '__main__':
35     import sys
36     from contribuinte import Contribuinte
37
38     contribuinte = Contribuinte(sys.argv[1])
39     bens = Bens(contribuinte)
40     print "anterior: " + bens.get_attr("totalExercicioAnterior")
41     print "atual: " + bens.get_attr("totalExercicioAtual")
42
43     for i in bens.items:
44         print i.get_attr("valorExercicioAtual") + " " + i.get_attr("discriminacao")
45
46 # vim:tabstop=4:expandtab:smartindent