From cf184ce95ff7984f0e5d6705c2846604d53be4f3 Mon Sep 17 00:00:00 2001 From: ced <> Date: Mon, 2 Jul 2007 13:06:13 +0000 Subject: [PATCH] hr_timsheet_invoice: fix super call bzr revid: ced-3f4ce9b5c637e2aae0e39de4d2ff480bf851f206 --- addons/hr_timesheet_invoice/hr_timesheet_invoice.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/hr_timesheet_invoice/hr_timesheet_invoice.py b/addons/hr_timesheet_invoice/hr_timesheet_invoice.py index 69409d6a7cf..ffefd2f4df1 100644 --- a/addons/hr_timesheet_invoice/hr_timesheet_invoice.py +++ b/addons/hr_timesheet_invoice/hr_timesheet_invoice.py @@ -77,7 +77,7 @@ account_analytic_line() class hr_analytic_timesheet(osv.osv): _inherit = "hr.analytic.timesheet" def on_change_account_id(self, cr, uid, ids, account_id): - res = super(account_analytic_line,self).on_change_account_id(cr, uid, ids, account_id) + res = super(hr_analytic_timesheet,self).on_change_account_id(cr, uid, ids, account_id) if not account_id: return res res.setdefault('value',{})