← Back to team overview

openerp-dev-web team mailing list archive

[Merge] lp:~openerp-dev/openobject-addons/trunk-bug-719100-atp into lp:openobject-addons

 

Atul Patel(OpenERP) has proposed merging lp:~openerp-dev/openobject-addons/trunk-bug-719100-atp into lp:openobject-addons.

Requested reviews:
  OpenERP Core Team (openerp)
Related bugs:
  #719100 Terminology issue in priority field of task object in project module.
  https://bugs.launchpad.net/bugs/719100

For more details, see:
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-719100-atp/+merge/50596

1) [Fix]: Terminology issue in priority field of task object in project module.
-- 
https://code.launchpad.net/~openerp-dev/openobject-addons/trunk-bug-719100-atp/+merge/50596
Your team OpenERP R&D Team is subscribed to branch lp:~openerp-dev/openobject-addons/trunk-bug-719100-atp.
=== modified file 'project/project.py'
--- project/project.py	2011-02-18 11:00:57 +0000
+++ project/project.py	2011-02-21 14:14:00 +0000
@@ -389,7 +389,7 @@
         'active': fields.function(_is_template, method=True, 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),
         'description': fields.text('Description'),
-        'priority': fields.selection([('4','Very Low'), ('3','Low'), ('2','Medium'), ('1','Urgent'), ('0','Very urgent')], 'Priority'),
+        'priority': fields.selection([('4','Very Low'), ('3','Low'), ('2','Medium'), ('1','Important'), ('0','Very important')], 'Priority'),
         'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of tasks."),
         'type_id': fields.many2one('project.task.type', 'Stage'),
         'state': fields.selection([('draft', 'Draft'),('open', 'In Progress'),('pending', 'Pending'), ('cancelled', 'Cancelled'), ('done', 'Done')], 'State', readonly=True, required=True,


Follow ups