[IMP] account : Improve the variable naming convention

bzr revid: mdi@tinyerp.com-20111125083352-xdmngxu2m5di8w6f
This commit is contained in:
Divyesh Makwana (Open ERP) 2011-11-25 14:03:52 +05:30
parent c400d0b1a6
commit 1deaa62829
1 changed files with 3 additions and 3 deletions

View File

@ -81,9 +81,9 @@ class hr_job(osv.osv):
def _get_job_position(self, cr, uid, ids, context=None):
result = {}
for data in self.pool.get('hr.employee').browse(cr, uid, ids, context=context):
if data.job_id:
result[data.job_id.id] = True
for employee in self.pool.get('hr.employee').browse(cr, uid, ids, context=context):
if employee.job_id:
result[employee.job_id.id] = True
return result.keys()
_name = "hr.job"