4a4dc497bc215c49d18e13616f2cab63b4903016
[cascardo/irpf-gui.git] / src / menu.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 baseui
20 import contribuinte
21 import rendimentoPJ
22 import bens
23 import sys
24 import isentos
25 import exclusivos
26
27 def List(UI, L, display):
28     exit = False
29     while not exit:
30         ls = []
31         for i in L.items:
32             d = i.get_attr(display)
33             if d == None:
34                 d = ""
35             ls.append(d)
36         r = UI.list(ls)
37         if r[1] == None:
38             exit = True
39         elif r[1] == 'add':
40             UI.form(L.form(L.new_item()))
41         elif r[1] == 'edit':
42             UI.form(L.form(L.items[r[0] - 1]))
43         elif r[1] == 'delete':
44             L.remove_item(r[0] - 1)
45     return True
46
47 def RendimentosPJ(UI, contrib):
48     rend = rendimentoPJ.RendimentosPJ(contrib)
49     return List(UI, rend, "nomeFontePagadora")
50
51 def DadosPessoais(UI, contrib):
52     UI.form(contrib.form())
53     return True
54
55 def Bens(UI, contrib):
56     b = bens.Bens(contrib)
57     return List(UI, b, "discriminacao")
58
59 def Quadro(UI, quadro):
60     return List(UI, quadro, "especificacao")
61
62 def Quadros(quadros):
63     def fQuadros(UI, contrib):
64         exit = False
65         while not exit:
66             r = UI.menu(map(lambda x: x.name, quadros.quadros))
67             if r < 0:
68                 exit = True
69             else:
70                 Quadro(UI, quadros.quadros[r])
71     return fQuadros
72
73 def Salvar(UI, contrib):
74     contrib.save()
75
76 def menu(UI, contrib):
77     m = [ 
78         "Sair",
79         "Salvar",
80         "Dados Pessoais",
81         "Rendimentos PJ",
82         "Bens",
83         "Rendimentos Isentos",
84         "Rendimentos Exclusivos na Fonte",
85         ]
86     f = [
87         None,
88         Salvar,
89         DadosPessoais,
90         RendimentosPJ,
91         Bens,
92         Quadros(isentos.RendimentosIsentos(contrib)),
93         Quadros(exclusivos.RendimentosExclusivos(contrib)),
94         ]
95     exit = False
96     while not exit:
97         r = UI.menu(m)
98         if r <= 0:
99             exit = True
100         else:
101             f[r](UI, contrib)
102
103 def main():
104     ret = False
105     UI = baseui.BaseUI()
106     while ret == False:
107         cpf = UI.get_string("Digite seu CPF: ")
108         try:
109             contrib = contribuinte.Contribuinte(cpf)
110             ret = menu(UI, contrib)
111         except RuntimeError, e:
112             print "CPF invalido"
113
114 if __name__ == '__main__':
115     main()
116
117 # vim:tabstop=4:expandtab:smartindent