[IMP] Improved string 'recruitement' => 'recruitment'.

bzr revid: psa@tinyerp.com-20130515132625-r7t7ittv2zqno1rc
This commit is contained in:
Paramjit Singh Sahota 2013-05-15 18:56:25 +05:30
parent 9d3faec1b7
commit 0c62543724
5 changed files with 8 additions and 8 deletions

View File

@ -117,7 +117,7 @@ class hr_job(osv.osv):
'requirements': fields.text('Requirements'),
'department_id': fields.many2one('hr.department', 'Department'),
'company_id': fields.many2one('res.company', 'Company'),
'state': fields.selection([('open', 'No Recruitment'), ('recruit', 'Recruitement in Progress')], 'Status', readonly=True, required=True,
'state': fields.selection([('open', 'No Recruitment'), ('recruit', 'Recruitment in Progress')], 'Status', readonly=True, required=True,
help="By default 'In position', set it to 'In Recruitment' if recruitment process is going on for this job position."),
'color': fields.integer('Color Index'),
}
@ -136,7 +136,7 @@ class hr_job(osv.osv):
context = {}
return {'value': {'expected_employees': no_of_recruitment + no_of_employee}}
def job_recruitement(self, cr, uid, ids, *args):
def job_recruitment(self, cr, uid, ids, *args):
for job in self.browse(cr, uid, ids):
no_of_recruitment = job.no_of_recruitment == 0 and 1 or job.no_of_recruitment
self.write(cr, uid, [job.id], {'state': 'recruit', 'no_of_recruitment': no_of_recruitment})

View File

@ -324,7 +324,7 @@
<field name="arch" type="xml">
<form string="Job" version="7.0">
<header>
<button name="job_recruitement" string="Launch Recruitement" states="open" type="object" class="oe_highlight" groups="base.group_user"/>
<button name="job_recruitment" string="Launch Recruitment" states="open" type="object" class="oe_highlight" groups="base.group_user"/>
<button name="job_open" string="Stop Recruitment" states="recruit" type="object" class="oe_highlight" groups="base.group_user"/>
<field name="state" widget="statusbar" statusbar_visible="recruit,open"/>
</header>

View File

@ -162,7 +162,7 @@ msgstr ""
#. module: hr
#: view:hr.job:0
msgid "Launch Recruitement"
msgid "Launch Recruitment"
msgstr ""
#. module: hr
@ -690,7 +690,7 @@ msgstr ""
#. module: hr
#: selection:hr.job,state:0
msgid "Recruitement in Progress"
msgid "Recruitment in Progress"
msgstr ""
#. module: hr

View File

@ -10,10 +10,10 @@
- state == 'open'
- no_of_recruitment == 0
-
Now, Recruitement is started so I start recruitement of Job Postion of "Developer" Profile.
Now, Recruitment is started so I start recruitment of Job Postion of "Developer" Profile.
-
!python {model: hr.job}: |
self.job_recruitement(cr, uid, [ref('job_developer')])
self.job_recruitment(cr, uid, [ref('job_developer')])
-
I check 'state' and number of 'Expected in Recruitment' after initiating the recruitment
-

View File

@ -375,7 +375,7 @@
<div class="oe_kanban_footer_right">
<a t-if="widget.values.survey_id.value" data-name="action_print_survey" data-type="object" class=" oe_kanban_action oe_kanban_action_a">Print Interview</a>
<a t-if="(widget.values.no_of_recruitment.value lt 1) and (widget.values.survey_id.value)"> | </a>
<a t-if="widget.values.no_of_recruitment.value lt 1" data-name="job_recruitement" data-type="object" class=" oe_kanban_action oe_kanban_action_a">Launch Recruitment</a>
<a t-if="widget.values.no_of_recruitment.value lt 1" data-name="job_recruitment" data-type="object" class=" oe_kanban_action oe_kanban_action_a">Launch Recruitment</a>
</div>
</div>
</div>