~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to mrp_workorder_variation/__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:
22
22
#    You should have received a copy of the GNU Affero General Public License
23
23
#    along with this program.  If not, see <http://www.gnu.org/licenses/>.
24
24
###############################################################################
25
 
 
26
25
{
27
 
    'name': 'MRP WorkOrder Variation',
28
 
    'version': '1.0',
29
 
    'summary': 'Allows you to enter actual quantities of products in a workorder',
30
 
    'description': """
 
26
    "name": "MRP WorkOrder Variation", 
 
27
    "version": "1.0", 
 
28
    "author": "Vauxoo C.A", 
 
29
    "category": "MRP", 
 
30
    "description": """
31
31
 
32
32
MRP WorkOrder Variation
33
33
=======================
37
37
In this way the user can make a comparison of the variation of quantities and avoid loss of
38
38
material.
39
39
 
40
 
""",
41
 
    'category': 'MRP',
42
 
    'author': 'Vauxoo C.A',
43
 
    'website': 'http://vauxoo.com',
44
 
    'license': 'AGPL-3',
45
 
    'depends': ['mrp', 'mrp_operations'],
46
 
    'data': [
47
 
        'view/mrp_production_workcenter_line_view.xml',
48
 
    ],
49
 
    'demo': [],
50
 
    'installable': True,
51
 
    'auto_install': False,
52
 
    'js': [],
53
 
    'qweb': [],
54
 
    'css': [],
55
 
    'images': [],
56
 
    'test': [],
57
 
}
 
40
""", 
 
41
    "website": "http://vauxoo.com", 
 
42
    "license": "AGPL-3", 
 
43
    "depends": [
 
44
        "mrp", 
 
45
        "mrp_operations"
 
46
    ], 
 
47
    "demo": [], 
 
48
    "data": [
 
49
        "view/mrp_production_workcenter_line_view.xml"
 
50
    ], 
 
51
    "test": [], 
 
52
    "js": [], 
 
53
    "css": [], 
 
54
    "qweb": [], 
 
55
    "installable": True, 
 
56
    "auto_install": False, 
 
57
    "active": False
 
58
}
 
 
b'\\ No newline at end of file'