~syleam/syleam-modules/6.1

« back to all changes in this revision

Viewing changes to mrp_maintenance/__openerp__.py

  • Committer: Sebastien LANGE
  • Date: 2012-11-13 21:16:25 UTC
  • Revision ID: git-v1:3f638c30fde5da87f353643c160ff304e56eba34
[IMP] Add Syleam modules

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    mrp_maintenance module for OpenERP, Manage maintenance in production order
 
5
#    Copyright (C) 2012 SYLEAM Info Services (<http://www.syleam.fr/>)
 
6
#              Sebastien LANGE <sebastien.lange@syleam.fr>
 
7
#
 
8
#    This file is a part of mrp_maintenance
 
9
#
 
10
#    mrp_maintenance is free software: you can redistribute it and/or modify
 
11
#    it under the terms of the GNU Affero General Public License as published by
 
12
#    the Free Software Foundation, either version 3 of the License, or
 
13
#    (at your option) any later version.
 
14
#
 
15
#    mrp_maintenance is distributed in the hope that it will be useful,
 
16
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
17
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
18
#    GNU Affero General Public License for more details.
 
19
#
 
20
#    You should have received a copy of the GNU Affero General Public License
 
21
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
22
#
 
23
##############################################################################
 
24
 
 
25
{
 
26
    'name': 'MRP Maintenance',
 
27
    'version': '1.0',
 
28
    "category" : "Manufacturing",
 
29
    'description': """Manage maintenance in production order""",
 
30
    'author': 'SYLEAM',
 
31
    'website': 'http://www.syleam.fr/',
 
32
    'depends': [
 
33
        'base',
 
34
        'mrp',
 
35
        'sale',
 
36
        'stock',
 
37
    ],
 
38
    'init_xml': [],
 
39
    'images': [],
 
40
    'update_xml': [
 
41
        'sale_view.xml',
 
42
        'procurement_workflow.xml',
 
43
        'mrp_view.xml',
 
44
        'mrp_maintenance_view.xml',
 
45
        'mrp_workflow.xml',
 
46
        'stock_view.xml',
 
47
        'wizard/mrp_invoice_view.xml',
 
48
        'security/ir.model.access.csv',
 
49
    ],
 
50
    'demo_xml': [],
 
51
    'test': [],
 
52
    'installable': True,
 
53
    'application': True,
 
54
    'active': False,
 
55
    'license': 'AGPL-3',
 
56
}
 
57
 
 
58
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: