Simplifica Bens e RendimentoPJ usando Items.
[cascardo/irpf-gui.git] / src / rendimentoPJ.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
21 class RendimentosPJ(items.Items):
22     def __init__(self, contribuinte):
23         rend_PJ = contribuinte.dados.getElementsByTagName("rendPJ")[0]
24         colecao = rend_PJ.getElementsByTagName("colecaoRendPJTitular")[0]
25         items.Items.__init__(self, colecao)
26
27 if __name__ == '__main__':
28     import sys
29     from contribuinte import Contribuinte
30
31     contribuinte = Contribuinte(sys.argv[1])
32     rendimentos = RendimentosPJ(contribuinte)
33     print "maior fonte pagadora: " + rendimentos.get_attr("niMaiorFontePagadora")
34     print "total rendimentos: " + rendimentos.get_attr("totaisRendRecebidoPJ")
35
36     for i in rendimentos.items:
37         print i.get_attr("nomeFontePagadora") + " " + i.get_attr("rendRecebidoPJ")
38
39 # vim:tabstop=4:expandtab:smartindent