[REM]: Remove print statement

bzr revid: atp@tinyerp.com-20121010111151-cgylp0roe61vhzs9
This commit is contained in:
Atul Patel (OpenERP) 2012-10-10 16:41:51 +05:30
parent 98eaf2c2bc
commit eb20086d59
2 changed files with 0 additions and 3 deletions

View File

@ -107,7 +107,6 @@ class hr_analytic_timesheet(osv.osv):
return res
def on_change_user_id(self, cr, uid, ids, user_id, account_id, unit_amount=0):
print "---------------onchageuser id",user_id
res = {}
if not (user_id):
#avoid a useless call to super

View File

@ -405,7 +405,6 @@ class hr_attendance(osv.osv):
return time.strftime('%Y-%m-%d %H:%M:%S')
def _get_hr_timesheet_sheet(self, cr, uid, ids, context=None):
print "-----------get_hr_time sheet"
attendance_ids = []
for ts in self.browse(cr, uid, ids, context=context):
cr.execute("""
@ -472,7 +471,6 @@ class hr_attendance(osv.osv):
return super(hr_attendance,self).unlink(cr, uid, ids,*args, **kwargs)
def write(self, cr, uid, ids, vals, context=None):
print "------------write "
if context is None:
context = {}
if isinstance(ids, (int, long)):