~anna-g/micronaet/anna

« back to all changes in this revision

Viewing changes to intervention_report/__openerp__.py

  • Committer: Anna Micronaet
  • Date: 2013-07-18 09:08:36 UTC
  • Revision ID: anna@micronaet.it-20130718090836-ssmst48rrnvcd69w
Tolti tutti i moduli

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# -*- coding: utf-8 -*-
2
 
##############################################################################
3
 
#
4
 
# Copyright (c) 2009-2011 company (http://sitename) All Rights Reserved.
5
 
#                    General contacts <author.name@company.com>
6
 
#
7
 
# WARNING: This program as such is intended to be used by professional
8
 
# programmers who take the whole responsability of assessing all potential
9
 
# consequences resulting from its eventual inadequacies and bugs
10
 
# End users who are looking for a ready-to-use solution with commercial
11
 
# garantees and support are strongly adviced to contract a Free Software
12
 
# Service Company
13
 
#
14
 
# This program is Free Software; you can redistribute it and/or
15
 
# modify it under the terms of the GNU General Public License
16
 
# as published by the Free Software Foundation; either version 2
17
 
# of the License, or (at your option) any later version.
18
 
#
19
 
# This program is distributed in the hope that it will be useful,
20
 
# but WITHOUT ANY WARRANTY; without even the implied warranty of
21
 
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
22
 
# GNU General Public License for more details.
23
 
#
24
 
# You should have received a copy of the GNU General Public License
25
 
# along with this program; if not, write to the Free Software
26
 
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
27
 
#
28
 
##############################################################################
29
 
 
30
 
{
31
 
    'name' : 'Intervention Report',
32
 
    'version' : '0.2',
33
 
    'category' : 'Report',
34
 
    'description' : """ Module for manage calendar appointment, for fix 
35
 
          date of intervention, a little workflow that can set up state of
36
 
          intervention, from planning, customer comunication, and report
37
 
          for complete intervention""",
38
 
    'author' : 'Micronaet s.r.l.',
39
 
    'website' : 'http://www.micronaet.it',
40
 
    'license' : 'AGPL-3',
41
 
    'depends' : ['base',
42
 
                 'product',
43
 
                 'report_aeroo',
44
 
                 'report_aeroo_ooo',
45
 
                ],
46
 
    'init_xml' : [],
47
 
    'demo_xml' : [],
48
 
    'update_xml' : ['security/ir.model.access.csv',
49
 
    
50
 
                    'intervention.xml',
51
 
                    'intervention_workflow.xml',
52
 
                    
53
 
                    'report/report_intervent.xml',
54
 
                    'report/report_intervent_state.xml',
55
 
                    
56
 
                    'wizard/wizard_report_view.xml', 
57
 
                    
58
 
                    'intervention_dashboard.xml',
59
 
                    ],
60
 
    'active': False,
61
 
    'installable': True,
62
 
}
63
 
 
64
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: