1 | # File: MovimentoOrcamentarioSimulado.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 MovimentoOrcamentario import MovimentoOrcamentario |
---|
28 | from Products.ILSAALOrcamento.interfaces.IMovimentoOrcamentarioSimulado import IMovimentoOrcamentarioSimulado |
---|
29 | |
---|
30 | |
---|
31 | from Products.Archetypes.SQLStorage import * |
---|
32 | # additional imports from tagged value 'import' |
---|
33 | from Products.ILSAAL.saalapi import * |
---|
34 | |
---|
35 | from Products.ILSAALOrcamento.config import * |
---|
36 | ##code-section module-header #fill in your manual code here |
---|
37 | ##/code-section module-header |
---|
38 | |
---|
39 | schema=Schema(( |
---|
40 | ), |
---|
41 | ) |
---|
42 | |
---|
43 | |
---|
44 | ##code-section after-local-schema #fill in your manual code here |
---|
45 | ##/code-section after-local-schema |
---|
46 | |
---|
47 | MovimentoOrcamentarioSimulado_schema = BaseSchema + \ |
---|
48 | getattr(MovimentoOrcamentario,'schema',Schema(())) + \ |
---|
49 | schema |
---|
50 | |
---|
51 | ##code-section after-schema #fill in your manual code here |
---|
52 | ##/code-section after-schema |
---|
53 | |
---|
54 | class MovimentoOrcamentarioSimulado(MovimentoOrcamentario,BaseContent): |
---|
55 | """ |
---|
56 | Para fins de simulacao, mantem os registros de todos lancamentos |
---|
57 | de valores informados e/ou gerados segundo criterios definidos |
---|
58 | para o exercicio por classificacao orcamentaria. |
---|
59 | """ |
---|
60 | security = ClassSecurityInfo() |
---|
61 | __implements__ = (getattr(MovimentoOrcamentario,'__implements__',()),) + (getattr(BaseContent,'__implements__',()),)+ (IMovimentoOrcamentarioSimulado,) |
---|
62 | |
---|
63 | |
---|
64 | # This name appears in the 'add' box |
---|
65 | archetype_name = 'MovimentoOrcamentarioSimulado' |
---|
66 | |
---|
67 | meta_type = 'MovimentoOrcamentarioSimulado' |
---|
68 | portal_type = 'MovimentoOrcamentarioSimulado' |
---|
69 | allowed_content_types = [] + list(getattr(MovimentoOrcamentario, 'allowed_content_types', [])) |
---|
70 | filter_content_types = 0 |
---|
71 | global_allow = 0 |
---|
72 | allow_discussion = 0 |
---|
73 | #content_icon = 'MovimentoOrcamentarioSimulado.gif' |
---|
74 | immediate_view = 'base_view' |
---|
75 | default_view = 'base_view' |
---|
76 | suppl_views = () |
---|
77 | typeDescription = "MovimentoOrcamentarioSimulado" |
---|
78 | typeDescMsgId = 'description_edit_movimentoorcamentariosimulado' |
---|
79 | |
---|
80 | schema = MovimentoOrcamentarioSimulado_schema |
---|
81 | |
---|
82 | ##code-section class-header #fill in your manual code here |
---|
83 | ##/code-section class-header |
---|
84 | |
---|
85 | |
---|
86 | #Methods |
---|
87 | |
---|
88 | registerType(MovimentoOrcamentarioSimulado,PROJECTNAME) |
---|
89 | # end of class MovimentoOrcamentarioSimulado |
---|
90 | |
---|
91 | ##code-section module-footer #fill in your manual code here |
---|
92 | ##/code-section module-footer |
---|
93 | |
---|
94 | |
---|
95 | |
---|