~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to mrp_production_analytic_acc/__openerp__.py

  • Committer: Moises Lopez
  • Date: 2014-10-09 21:30:17 UTC
  • mfrom: (879.1.7 trunk-addons-vauxoo)
  • Revision ID: moylop260@vauxoo.com-20141009213017-u3jicyg8xery3r8c
[MERGE] upforward 7.0
-Fix unused import
-Fix relative import
-Fix full path import
-Fix trailing whitespace pylint error C0303
-Fix autopep8 ignoring E501 & E128
-Fix reimported
-Fix __openerp__.py files
-Translate update

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
25
25
#
26
26
##############################################################################
 
27
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
27
28
{
28
 
    'name': 'mrp account analytics',
29
 
    "version" : "1.1",
30
 
    'author': 'Vauxoo',
31
 
    "category" : "analytic production",
32
 
    'depends': ['stock','account','mrp'],
33
 
    'description': """
 
29
    "name": "mrp account analytics", 
 
30
    "version": "1.1", 
 
31
    "author": "Vauxoo", 
 
32
    "category": "analytic production", 
 
33
    "description": """
34
34
        Added field for account analitic
35
 
    """,
36
 
    'update_xml':[
37
 
        'stock_view.xml',
38
 
        'mrp_view.xml',
39
 
    ],
40
 
    'active': False,
41
 
    'installable': True
42
 
}
43
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
35
    """, 
 
36
    "website": "", 
 
37
    "license": "", 
 
38
    "depends": [
 
39
        "stock", 
 
40
        "account", 
 
41
        "mrp"
 
42
    ], 
 
43
    "demo": [], 
 
44
    "data": [
 
45
        "stock_view.xml", 
 
46
        "mrp_view.xml"
 
47
    ], 
 
48
    "test": [], 
 
49
    "js": [], 
 
50
    "css": [], 
 
51
    "qweb": [], 
 
52
    "installable": True, 
 
53
    "auto_install": False, 
 
54
    "active": False
 
55
}
 
 
b'\\ No newline at end of file'