From 05a9fecbb86b6119e30729a93836e7f96100c3e2 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Thibault=20Delavall=C3=A9e?= Date: Thu, 13 Nov 2014 11:45:21 +0100 Subject: [PATCH] [IMP] hr_recruitment: applicant kanban customization - stage model: add field holding the eventual star (priority) management + updated applicant kanban view --- addons/hr_recruitment/hr_recruitment.py | 3 +++ addons/hr_recruitment/hr_recruitment_view.xml | 7 ++++--- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/addons/hr_recruitment/hr_recruitment.py b/addons/hr_recruitment/hr_recruitment.py index a265965..071441a 100644 --- a/addons/hr_recruitment/hr_recruitment.py +++ b/addons/hr_recruitment/hr_recruitment.py @@ -53,6 +53,9 @@ class hr_recruitment_stage(osv.osv): 'department_id':fields.many2one('hr.department', 'Specific to a Department', help="Stages of the recruitment process may be different per department. If this stage is common to all departments, keep this field empty."), 'requirements': fields.text('Requirements'), 'template_id': fields.many2one('email.template', 'Use template', help="If set, a message is posted on the applicant using the template when the applicant is set to the stage."), + 'legend_priority': fields.text( + 'Priority Management Explanation', translate=True, + help='Explanation text to help users using the star and priority mechanism on applicants that are in this stage.'), 'fold': fields.boolean('Folded in Kanban View', help='This stage is folded in the kanban view when' 'there are no records in that stage to display.'), diff --git a/addons/hr_recruitment/hr_recruitment_view.xml b/addons/hr_recruitment/hr_recruitment_view.xml index 82acc5a..9c035c7 100644 --- a/addons/hr_recruitment/hr_recruitment_view.xml +++ b/addons/hr_recruitment/hr_recruitment_view.xml @@ -241,7 +241,7 @@ hr.applicant - + @@ -551,11 +551,12 @@ + + - - + -- 1.7.10.4