1 | # File: OrcamentoSimulado.py |
---|
2 | # |
---|
3 | # Copyright (c) 2005 by Interlegis |
---|
4 | # Generator: ArchGenXML Version 1.4.0-beta2 devel |
---|
5 | # http://plone.org/products/archgenxml |
---|
6 | # |
---|
7 | # GNU General Public Licence (GPL) |
---|
8 | # |
---|
9 | # This program is free software; you can redistribute it and/or modify it under |
---|
10 | # the terms of the GNU General Public License as published by the Free Software |
---|
11 | # Foundation; either version 2 of the License, or (at your option) any later |
---|
12 | # version. |
---|
13 | # This program is distributed in the hope that it will be useful, but WITHOUT |
---|
14 | # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS |
---|
15 | # FOR A PARTICULAR PURPOSE. See the GNU General Public License for more |
---|
16 | # details. |
---|
17 | # You should have received a copy of the GNU General Public License along with |
---|
18 | # this program; if not, write to the Free Software Foundation, Inc., 59 Temple |
---|
19 | # Place, Suite 330, Boston, MA 02111-1307 USA |
---|
20 | # |
---|
21 | __author__ = '''STC Interlegis <admin-stc@interlegis.gov.br>''' |
---|
22 | __docformat__ = 'plaintext' |
---|
23 | |
---|
24 | |
---|
25 | from AccessControl import ClassSecurityInfo |
---|
26 | from Products.Archetypes.atapi import * |
---|
27 | from Orcamento import Orcamento |
---|
28 | from Products.ILSAALOrcamento.interfaces.IOrcamentoSimulado import IOrcamentoSimulado |
---|
29 | |
---|
30 | |
---|
31 | from Products.Archetypes.SQLStorage import * |
---|
32 | # additional imports from tagged value 'import' |
---|
33 | from Products.ILSAAL.saalapi import * |
---|
34 | from DateTime import DateTime |
---|
35 | |
---|
36 | from Products.ILSAALOrcamento.config import * |
---|
37 | ##code-section module-header #fill in your manual code here |
---|
38 | ##/code-section module-header |
---|
39 | |
---|
40 | schema=Schema(( |
---|
41 | ), |
---|
42 | ) |
---|
43 | |
---|
44 | |
---|
45 | ##code-section after-local-schema #fill in your manual code here |
---|
46 | ##/code-section after-local-schema |
---|
47 | |
---|
48 | OrcamentoSimulado_schema = BaseFolderSchema + \ |
---|
49 | getattr(Orcamento,'schema',Schema(())) + \ |
---|
50 | schema |
---|
51 | |
---|
52 | ##code-section after-schema #fill in your manual code here |
---|
53 | ##/code-section after-schema |
---|
54 | |
---|
55 | class OrcamentoSimulado(Orcamento,BaseFolder): |
---|
56 | """ |
---|
57 | Para fins de simulacao, reproduz a posicao atualizada dos |
---|
58 | valores orcamentarios |
---|
59 | """ |
---|
60 | security = ClassSecurityInfo() |
---|
61 | __implements__ = (getattr(Orcamento,'__implements__',()),) + (getattr(BaseFolder,'__implements__',()),) + (IOrcamentoSimulado,) |
---|
62 | |
---|
63 | |
---|
64 | # This name appears in the 'add' box |
---|
65 | archetype_name = 'Orcamento Simulado' |
---|
66 | |
---|
67 | meta_type = 'OrcamentoSimulado' |
---|
68 | portal_type = 'OrcamentoSimulado' |
---|
69 | allowed_content_types = ['MovimentoOrcamentarioSimulado'] + list(getattr(Orcamento, 'allowed_content_types', [])) |
---|
70 | filter_content_types = 1 |
---|
71 | global_allow = 0 |
---|
72 | allow_discussion = 0 |
---|
73 | #content_icon = 'OrcamentoSimulado.gif' |
---|
74 | immediate_view = 'base_view' |
---|
75 | default_view = 'base_view' |
---|
76 | suppl_views = () |
---|
77 | typeDescription = "Orcamento Simulado" |
---|
78 | typeDescMsgId = 'description_edit_orcamentosimulado' |
---|
79 | |
---|
80 | schema = OrcamentoSimulado_schema |
---|
81 | |
---|
82 | ##code-section class-header #fill in your manual code here |
---|
83 | ##/code-section class-header |
---|
84 | |
---|
85 | |
---|
86 | #Methods |
---|
87 | #methods from Interface IOrcamentoSimulado |
---|
88 | |
---|
89 | security.declarePrivate('_titulo') |
---|
90 | def _titulo(self): |
---|
91 | """ |
---|
92 | Define um titulo personalizado para este objeto. |
---|
93 | """ |
---|
94 | |
---|
95 | return self.getAno_exercicio() |
---|
96 | |
---|
97 | |
---|
98 | |
---|
99 | registerType(OrcamentoSimulado,PROJECTNAME) |
---|
100 | # end of class OrcamentoSimulado |
---|
101 | |
---|
102 | ##code-section module-footer #fill in your manual code here |
---|
103 | ##/code-section module-footer |
---|
104 | |
---|
105 | |
---|
106 | |
---|