2013-04-23 71 views
0

我想知道哪些表用于保存OpenERP第7版考勤和留言记录。 我发现resource_resource表,res_users和hr_employee表用于保留员工的记录。保持以上记录。OpenERP HR考勤影响表

回答

0
select 
h.id as employee_id,h.name as leave_reason, 
e.resource_id,e.name_related,s.name,r.id as resource,r.name as res_name 
from 
hr_holidays h,hr_employee e,hr_holidays_status s, 
resource_resource r 
where 
h.employee_id=e.id and 
h.holiday_status_id=s.id and 
e.resource_id=r.id