Implementa tipos de bens
[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
19 import xml.dom.minidom
20 import items
21 from form import AttrForm, TipoForm
22 import tipos
23
24 class Bens(items.Items):
25     def __init__(self, contribuinte):
26         contribuinte = contribuinte
27         bens = contribuinte.dados.getElementsByTagName("bens")[0]
28         items.Items.__init__(self, bens)
29     def form(self, item):
30         form = []
31         form.append(AttrForm("Nome", "discriminacao", item))
32         form.append(AttrForm("Valor Anterior", "valorExercicioAnterior", item))
33         form.append(AttrForm("Valor Atual", "valorExercicioAtual", item))
34         form.append(BensForm(item))
35         return form
36
37 class tipoBens(tipos.Tipos):
38     def __init__(self):
39         tipos.Tipos.__init__(self, "tipoBens.xml", ["COL1", "COL2"])
40
41 class BensForm(TipoForm):
42     def __init__(self, bem):
43         TipoForm.__init__(self, "Tipo Bem", "codigo", bem, tipoBens(), (0, 1))
44
45 if __name__ == '__main__':
46     import sys
47     from contribuinte import Contribuinte
48
49     contribuinte = Contribuinte(sys.argv[1])
50     bens = Bens(contribuinte)
51     print "anterior: " + bens.get_attr("totalExercicioAnterior")
52     print "atual: " + bens.get_attr("totalExercicioAtual")
53
54     for i in bens.items:
55         print i.get_attr("valorExercicioAtual") + " " + i.get_attr("discriminacao")
56
57 # vim:tabstop=4:expandtab:smartindent