~vauxoo/addons-vauxoo/7.0-project_issue_conf-dev_luis

797.1.2 by Katherine Zaoral (Vauxoo)
[ADD] new module structure.
1
#!/usr/bin/python
2
# -*- encoding: utf-8 -*-
3
###############################################################################
4
#    Module Writen to OpenERP, Open Source Management Solution
5
#    Copyright (C) OpenERP Venezuela (<http://openerp.com.ve>).
6
#    All Rights Reserved
7
############# Credits #########################################################
8
#    Coded by: Katherine Zaoral <kathy@vauxoo.com>
9
#    Planified by: Humberto Arocha <hbto@vauxoo.com>
10
#    Audited by: Humberto Arocha <hbto@vauxoo.com>
11
###############################################################################
12
#    This program is free software: you can redistribute it and/or modify
13
#    it under the terms of the GNU Affero General Public License as published
14
#    by the Free Software Foundation, either version 3 of the License, or
15
#    (at your option) any later version.
16
#
17
#    This program is distributed in the hope that it will be useful,
18
#    but WITHOUT ANY WARRANTY; without even the implied warranty of
19
#    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
20
#    GNU Affero General Public License for more details.
21
#
22
#    You should have received a copy of the GNU Affero General Public License
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
###############################################################################
25
26
{
797.1.3 by Katherine Zaoral (Vauxoo)
[ADD] module openerp descriptor information.
27
    'name': 'MRP Button Box',
797.1.2 by Katherine Zaoral (Vauxoo)
[ADD] new module structure.
28
    'version': '1.0',
29
    'author': 'Vauxoo C.A.',
30
    'website': 'http://www.openerp.com.ve',
31
    'category': '',
32
    'description': '''
797.1.3 by Katherine Zaoral (Vauxoo)
[ADD] module openerp descriptor information.
33
MRP Button Box
34
==============
35
36
Dummy module to add a button box at the manufacturing order right uper corner.
37
This module can be find at lp:addons-vauxoo/7.0/mrp_button_box
797.1.2 by Katherine Zaoral (Vauxoo)
[ADD] new module structure.
38
''',
797.1.3 by Katherine Zaoral (Vauxoo)
[ADD] module openerp descriptor information.
39
    'depends': ['base', 'mail', 'mrp'],
797.1.4 by Katherine Zaoral (Vauxoo)
[ADD] div for button box in manufacturing order form view.
40
    'data': [
41
        'view/mrp_button_box_view.xml',
42
        ],
797.1.2 by Katherine Zaoral (Vauxoo)
[ADD] new module structure.
43
    'demo': [],
44
    'test': [],
45
    'active': False,
46
    'installable': True,
47
}