[Merge]with trunk
authorBarad Mahendra <mba@tinyerp.com>
Mon, 31 Mar 2014 09:18:22 +0000 (14:48 +0530)
committerBarad Mahendra <mba@tinyerp.com>
Mon, 31 Mar 2014 09:18:22 +0000 (14:48 +0530)
bzr revid: mba@tinyerp.com-20140331091822-i0f05rcwm3qvxpsd

1  2 
addons/crm/crm_lead.py
addons/crm/crm_lead_view.xml
addons/project/project.py

Simple merge
Simple merge
@@@ -746,9 -745,9 +746,9 @@@ class task(osv.osv)
  
      _columns = {
          'active': fields.function(_is_template, store=True, string='Not a Template Task', type='boolean', help="This field is computed automatically and have the same behavior than the boolean 'active' field: if the task is linked to a template or unactivated project, it will be hidden unless specifically asked."),
-         'name': fields.char('Task Summary', size=128, required=True, select=True),
+         'name': fields.char('Task Summary', track_visibility='onchange', size=128, required=True, select=True),
          'description': fields.text('Description'),
 -        'priority': fields.selection([('4','Very Low'), ('3','Low'), ('2','Medium'), ('1','Important'), ('0','Very important')], 'Priority', select=True),
 +        'priority': fields.selection([('0','Low'), ('1','Normal'), ('2','High')], 'Priority', select=True),
          'sequence': fields.integer('Sequence', select=True, help="Gives the sequence order when displaying a list of tasks."),
          'stage_id': fields.many2one('project.task.type', 'Stage', track_visibility='onchange',
                          domain="[('project_ids', '=', project_id)]"),