Move formulário para classe Contribuinte.
[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 sys
23
24 def List(UI, L, display):
25     exit = False
26     while not exit:
27         ls = []
28         for i in L.items:
29             d = i.get_attr(display)
30             if d == None:
31                 d = ""
32             ls.append(d)
33         r = UI.list(ls)
34         if r[1] == None:
35             exit = True
36         elif r[1] == 'add':
37             UI.form(L.form(L.new_item()))
38         elif r[1] == 'edit':
39             UI.form(L.form(L.items[r[0] - 1]))
40         elif r[1] == 'delete':
41             L.remove_item(r[0] - 1)
42     return True
43
44 def RendimentosPJ(UI, contrib):
45     rend = rendimentoPJ.RendimentosPJ(contrib)
46     return List(UI, rend, "nomeFontePagadora")
47
48 def DadosPessoais(UI, contrib):
49     UI.form(contrib.form())
50     return True
51
52 def Salvar(UI, contrib):
53     contrib.save()
54
55 def menu(UI, contrib):
56     m = [ "Sair", "Salvar", "Dados Pessoais", "Rendimentos PJ" ]
57     f = [ None, Salvar, DadosPessoais, RendimentosPJ ]
58     exit = False
59     while not exit:
60         r = UI.menu(m)
61         if r <= 0:
62             exit = True
63         else:
64             f[r](UI, contrib)
65
66 def main():
67     ret = False
68     UI = baseui.BaseUI()
69     while ret == False:
70         cpf = UI.get_string("Digite seu CPF: ")
71         try:
72             contrib = contribuinte.Contribuinte(cpf)
73             ret = menu(UI, contrib)
74         except RuntimeError, e:
75             print "CPF invalido"
76
77 if __name__ == '__main__':
78     main()
79
80 # vim:tabstop=4:expandtab:smartindent