~wowas18/openeam/7.0

« back to all changes in this revision

Viewing changes to mro/__openerp__.py

  • Committer: wowas18
  • Date: 2013-04-03 15:07:09 UTC
  • Revision ID: wowas18@nm.ru-20130403150709-glmzxkh3wwdybu9c
Initial version!

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# -*- coding: utf-8 -*-
 
2
##############################################################################
 
3
#
 
4
#    OpenERP, Open Source Management Solution
 
5
#    Copyright (C) 2013 CodUP (<http://codup.com>).
 
6
#
 
7
#    This program is free software: you can redistribute it and/or modify
 
8
#    it under the terms of the GNU Affero General Public License as
 
9
#    published by the Free Software Foundation, either version 3 of the
 
10
#    License, or (at your option) any later version.
 
11
#
 
12
#    This program is distributed in the hope that it will be useful,
 
13
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
 
14
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
15
#    GNU Affero General Public License for more details.
 
16
#
 
17
#    You should have received a copy of the GNU Affero General Public License
 
18
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
19
#
 
20
##############################################################################
 
21
 
 
22
{
 
23
    'name': 'MRO',
 
24
    'version': '1.0',
 
25
    'summary': 'Asset Maintenance, Repair and Operation',
 
26
    'description': """
 
27
Manage Maintenance process in OpenERP
 
28
=====================================
 
29
Asset Maintenance, Repair and Operation.
 
30
Support Breakdown Maintenance and Corrective Maintenance.
 
31
Implemented:
 
32
- Maintenance Work Orders Management
 
33
- Parts Management
 
34
- Tasks Management (standard job)
 
35
    """,
 
36
    'author': 'CodUP',
 
37
    'website': 'http://codup.com',
 
38
    'category': 'Enterprise Asset Management',
 
39
    'sequence': 0,
 
40
    'depends': ['asset','purchase'],
 
41
    'demo': ['mro_demo.xml'],
 
42
    'data': [
 
43
        'security/mro_security.xml',
 
44
        'security/ir.model.access.csv',
 
45
        'wizard/reject_view.xml',
 
46
        'mro_workflow.xml',
 
47
        'mro_request_workflow.xml',
 
48
        'mro_sequence.xml',
 
49
        'mro_view.xml',
 
50
    ],
 
51
    'application': True,
 
52
}
 
53
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
 
b'\\ No newline at end of file'