~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to mrp_production_cancel/__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:
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
#
25
25
##############################################################################
 
26
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
26
27
{
27
 
    'name': 'MRP Production Cancel',
28
 
    "version" : "1.1",
29
 
    'author': 'Vauxoo',
30
 
    'depends': ['mrp','stock_picking_cancel'],
31
 
    'description': """
 
28
    "name": "MRP Production Cancel", 
 
29
    "version": "1.1", 
 
30
    "author": "Vauxoo", 
 
31
    "category": "", 
 
32
    "description": """
32
33
        Add Button Cancel in Order Production when Producton is done
33
 
    """,
34
 
    'update_xml':[
35
 
        'security/production_cancel_security.xml',
36
 
        'mrp_view.xml',
37
 
        'mrp_workflow.xml',
38
 
    ],
39
 
    'active': False,
40
 
    'installable': True
41
 
}
42
 
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
 
34
    """, 
 
35
    "website": "", 
 
36
    "license": "", 
 
37
    "depends": [
 
38
        "mrp", 
 
39
        "stock_picking_cancel"
 
40
    ], 
 
41
    "demo": [], 
 
42
    "data": [
 
43
        "security/production_cancel_security.xml", 
 
44
        "mrp_view.xml", 
 
45
        "mrp_workflow.xml"
 
46
    ], 
 
47
    "test": [], 
 
48
    "js": [], 
 
49
    "css": [], 
 
50
    "qweb": [], 
 
51
    "installable": True, 
 
52
    "auto_install": False, 
 
53
    "active": False
 
54
}
 
 
b'\\ No newline at end of file'