[IMP] mail, project: change string of fields 'alias_name' & 'priority'

bzr revid: cha@tinyerp.com-20130312051759-2ty3vro2l3x9nfol
This commit is contained in:
Ajay Chauhan (OpenERP) 2013-03-12 10:47:59 +05:30
parent c2244b5c1c
commit c36e25c640
2 changed files with 2 additions and 2 deletions

View File

@ -63,7 +63,7 @@ class mail_alias(osv.Model):
return dict.fromkeys(ids, domain or "") return dict.fromkeys(ids, domain or "")
_columns = { _columns = {
'alias_name': fields.char('Alias', required=True, 'alias_name': fields.char('Alias Name', required=True,
help="The name of the email alias, e.g. 'jobs' " help="The name of the email alias, e.g. 'jobs' "
"if you want to catch emails for <jobs@example.my.openerp.com>",), "if you want to catch emails for <jobs@example.my.openerp.com>",),
'alias_model_id': fields.many2one('ir.model', 'Aliased Model', required=True, ondelete="cascade", 'alias_model_id': fields.many2one('ir.model', 'Aliased Model', required=True, ondelete="cascade",

View File

@ -234,7 +234,7 @@ class project(osv.osv):
'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the project without removing it."), 'active': fields.boolean('Active', help="If the active field is set to False, it will allow you to hide the project without removing it."),
'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of Projects."), 'sequence': fields.integer('Sequence', help="Gives the sequence order when displaying a list of Projects."),
'analytic_account_id': fields.many2one('account.analytic.account', 'Contract/Analytic', help="Link this project to an analytic account if you need financial management on projects. It enables you to connect projects with budgets, planning, cost and revenue analysis, timesheets on projects, etc.", ondelete="cascade", required=True), 'analytic_account_id': fields.many2one('account.analytic.account', 'Contract/Analytic', help="Link this project to an analytic account if you need financial management on projects. It enables you to connect projects with budgets, planning, cost and revenue analysis, timesheets on projects, etc.", ondelete="cascade", required=True),
'priority': fields.integer('Sequence', help="Gives the sequence order when displaying the list of projects"), 'priority': fields.integer('Priority', help="Gives the sequence order when displaying the list of projects"),
'members': fields.many2many('res.users', 'project_user_rel', 'project_id', 'uid', 'Project Members', 'members': fields.many2many('res.users', 'project_user_rel', 'project_id', 'uid', 'Project Members',
help="Project's members are users who can have an access to the tasks related to this project.", states={'close':[('readonly',True)], 'cancelled':[('readonly',True)]}), help="Project's members are users who can have an access to the tasks related to this project.", states={'close':[('readonly',True)], 'cancelled':[('readonly',True)]}),
'tasks': fields.one2many('project.task', 'project_id', "Task Activities"), 'tasks': fields.one2many('project.task', 'project_id', "Task Activities"),