[REF] code cleaning

bzr revid: rim@openerp.com-20140212131837-gjbl4nu8d1zdwqy1
This commit is contained in:
Richard Mathot (OpenERP) 2014-02-12 14:18:37 +01:00
parent 78f683d3d4
commit 4691383273
2 changed files with 2 additions and 2 deletions

View File

@ -107,7 +107,7 @@ class hr_employee(osv.Model):
'evaluation_date': fields.date('Next Appraisal Date', help="The date of the next appraisal is computed by the appraisal plan's dates (first appraisal + periodicity)."),
}
def run_employee_evaluation(self, cr, uid, automatic=False, use_new_cursor=False, context=None):
def run_employee_evaluation(self, cr, uid, automatic=False, use_new_cursor=False, context=None): # cronjob
now = parser.parse(datetime.now().strftime('%Y-%m-%d'))
obj_evaluation = self.pool.get('hr_evaluation.evaluation')
emp_ids = self.search(cr, uid, [('evaluation_plan_id', '<>', False), ('evaluation_date', '=', False)], context=context)

View File

@ -65,7 +65,7 @@ You can define the different phases of interviews and easily rate the applicant
'static/src/js/job_position.js',
],
'test': ['test/recruitment_process.yml'],
'css':['static/src/css/job_position.css'],
'css': ['static/src/css/job_position.css'],
'installable': True,
'auto_install': False,
'application': True,