~vauxoo/addons-vauxoo/7.0-changes-in-openerp-alan

740.3.1 by Jorge Angel Naranjo Rogel
[ADD][product_uom_update] This wizard help you to change units in the products
1
# -*- encoding: utf-8 -*-
2
#
3
#    Module Writen to OpenERP, Open Source Management Solution
4
#
5
#    Copyright (c) 2013 Vauxoo - http://www.vauxoo.com/
6
#    All Rights Reserved.
7
#    info Vauxoo (info@vauxoo.com)
8
#
9
#    Coded by: Jorge Angel Naranjo (jorge_nr@vauxoo.com)
10
#
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
14
#    published by the Free Software Foundation, either version 3 of the
15
#    License, or (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
{
1144 by alan guzman
[IMP]space at the end of each line was removed and changed tabs by spaces
27
    "name": "Product uom update",
28
    "version": "1.0",
29
    "author": "Vauxoo",
30
    "category": "Generic Modules",
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
31
    "description": """
740.3.2 by Jorge Angel Naranjo Rogel
[IMP][product_uom_update] Delete sequence of model ir.ui.view
32
Product uom update
33
==================
740.3.1 by Jorge Angel Naranjo Rogel
[ADD][product_uom_update] This wizard help you to change units in the products
34
35
    This wizard help you to change units in the products
1146 by alan guzman
[IMP]4 spaces at the end of the item description and splitting the line in the name
36
    """,
1144 by alan guzman
[IMP]space at the end of each line was removed and changed tabs by spaces
37
    "website": "http://www.vauxoo.com/",
38
    "license": "AGPL-3",
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
39
    "depends": [
40
        "product_do_merge"
1144 by alan guzman
[IMP]space at the end of each line was removed and changed tabs by spaces
41
    ],
42
    "demo": [],
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
43
    "data": [
44
        "wizard/product_uom_update_wizard.xml"
1144 by alan guzman
[IMP]space at the end of each line was removed and changed tabs by spaces
45
    ],
46
    "test": [],
47
    "js": [],
48
    "css": [],
49
    "qweb": [],
50
    "installable": True,
1143 by alan guzman
[IMP] changes in files __openerp__.py on modules
51
    "auto_install": False
740.3.1 by Jorge Angel Naranjo Rogel
[ADD][product_uom_update] This wizard help you to change units in the products
52
}
1144 by alan guzman
[IMP]space at the end of each line was removed and changed tabs by spaces
53
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: