~vauxoo/addons-vauxoo/6.0-trunk

« back to all changes in this revision

Viewing changes to mrp_workorder_lot/model/res_config.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
###############################################################################
25
25
 
26
26
 
27
 
from openerp.osv import fields, osv, orm
28
 
from openerp.tools.translate import _
29
 
from openerp import tools
 
27
from openerp.osv import osv, fields
30
28
 
31
29
 
32
30
class mrp_config_settings(osv.osv_memory):
55
53
            _get_batch_modes,
56
54
            'Production Batch Process Type',
57
55
            help=('Two options when management the batch work orders:\n\n'
58
 
                   ' - Maxime Workcenter Productivity / Minimizing Production'
59
 
                   ' Cost: For every workcenter will'
60
 
                   ' create a batch of works orders that always explotes the'
61
 
                   ' product capacity of the workcenter.\n'
62
 
                   ' - Avoid Production Bottleneck: Will create the batch'
63
 
                   ' work orders taking into a count the minium workcenter'
64
 
                   ' capacity.')),
 
56
                  ' - Maxime Workcenter Productivity / Minimizing Production'
 
57
                  ' Cost: For every workcenter will'
 
58
                  ' create a batch of works orders that always explotes the'
 
59
                  ' product capacity of the workcenter.\n'
 
60
                  ' - Avoid Production Bottleneck: Will create the batch'
 
61
                  ' work orders taking into a count the minium workcenter'
 
62
                  ' capacity.')),
65
63
    }
66
64
 
67
65
    _defaults = {