~nicolariolini/micronaet-quality/trunk

« back to all changes in this revision

Viewing changes to quality/__openerp__.py

  • Committer: nicolariolini
  • Date: 2014-04-24 07:01:05 UTC
  • Revision ID: nicola.riolini@gmail.com-20140424070105-5d55jlsvj2u8qf9n
Inizio progetto gestione qualità

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    Copyright (C) 2001-2014 Micronaet SRL (<http://www.micronaet.it>).
 
5
#
 
6
#    This program is free software: you can redistribute it and/or modify
 
7
#    it under the terms of the GNU Affero General Public License as published
 
8
#    by the Free Software Foundation, either version 3 of the License, or
 
9
#    (at your option) any later version.
 
10
#
 
11
#    This program is distributed in the hope that it will be useful,
 
12
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
13
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
14
#    GNU Affero General Public License for more details.
 
15
#
 
16
#    You should have received a copy of the GNU Affero General Public License
 
17
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
18
#
 
19
##############################################################################
 
20
 
 
21
{
 
22
    'name': 'Quality process',
 
23
    'version': '0.1',
 
24
    'category': 'Quality',
 
25
    'description': """Manage quality process""",
 
26
    'author': 'Micronaet s.r.l.',
 
27
    'website': 'http://www.micronaet.it',
 
28
    'license': 'AGPL-3',
 
29
    'depends': [
 
30
        'base', 
 
31
        'stock',
 
32
        'report_aeroo',
 
33
        'report_aeroo_ooo',
 
34
        #'base_mssql',
 
35
        #'base_mssql_accounting',
 
36
        #'partner_addresses',
 
37
    ],
 
38
    'init_xml': [],
 
39
    'demo_xml': [],
 
40
    'update_xml': [
 
41
        'security/ir.model.access.csv',                     
 
42
 
 
43
        'quality_view.xml',
 
44
        #'scheduler.xml',
 
45
        
 
46
        # Workflow:
 
47
        'workflow/claim_workflow.xml',
 
48
        
 
49
        # Report:
 
50
        #'report/status_webkit.xml',
 
51
        
 
52
        #'data/template.xml',
 
53
        
 
54
        #'counter.xml',
 
55
    ],
 
56
    'active': False,
 
57
    'installable': True,
 
58
}
 
59
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: