diff --git a/addons/hr_evaluation/hr_evaluation.py b/addons/hr_evaluation/hr_evaluation.py index 8c9cae13e4f..4c136f49793 100644 --- a/addons/hr_evaluation/hr_evaluation.py +++ b/addons/hr_evaluation/hr_evaluation.py @@ -347,10 +347,6 @@ class hr_evaluation_interview(osv.Model): self.write(cr, uid, ids, {'state': 'done'}, context=context) return True - def survey_req_draft(self, cr, uid, ids, context=None): - self.write(cr, uid, ids, {'state': 'draft'}, context=context) - return True - def survey_req_cancel(self, cr, uid, ids, context=None): self.write(cr, uid, ids, {'state': 'cancel'}, context=context) return True