2f70e7011b296d2a6b2952f6579fa726f1fb1fa8
[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 from contribuinte import Contribuinte
20
21 class RendimentoPJ:
22     def __init__(self, el = None):
23         if el == None:
24             self.rendimento = xml.dom.minidom.Element("item")
25         else:
26             self.rendimento = el
27
28     def get_attr(self, attr):
29         if attr in self.rendimento.attributes.keys():
30             return self.rendimento.attributes[attr].nodeValue
31         return None
32
33     def set_attr(self, attr, val):
34         self.rendimento.setAttribute(attr, val)
35
36 class RendimentosPJ:
37     def __init__(self, contribuinte):
38         self.contribuinte = contribuinte
39         self.rend_PJ = self.contribuinte.dados.getElementsByTagName("rendPJ")[0]
40         self.colecao = self.rend_PJ.getElementsByTagName("colecaoRendPJTitular")[0]
41         self.items = []
42
43         for i in self.colecao.getElementsByTagName("item"):
44             self.items.append(RendimentoPJ(i))
45
46     def _get_attr(self, el, attr):
47         if attr in el.attributes.keys():
48             return el.attributes[attr].nodeValue
49         return None
50
51     def _set_attr(self, el, attr, val):
52         el.attributes[attr].nodeValue = val
53
54     def get_colecao(self, attr):
55         return self._get_attr(self.colecao, attr)
56
57     def set_colecao(self, attr, val):
58         self._set_attr(self.colecao, attr, val)
59
60     def add_item(self, item):
61         self.items.append(item)
62         self.colecao.appendChild(item.rendimento)
63
64 if __name__ == '__main__':
65     import sys
66
67     contribuinte = Contribuinte(sys.argv[1])
68     rendimentos = RendimentosPJ(contribuinte)
69     print "maior fonte pagadora: " + rendimentos.get_colecao("niMaiorFontePagadora")
70     print "total rendimentos: " + rendimentos.get_colecao("totaisRendRecebidoPJ")
71
72     for i in rendimentos.items:
73         print i.get_attr("nomeFontePagadora") + " " + i.get_attr("rendRecebidoPJ")
74
75 # vim:tabstop=4:expandtab:smartindent