[IMP]: Improve 'Employee's Holidays' report.

bzr revid: rch_open_erp-20100915070821-rgamrecwcufc5yk8
This commit is contained in:
rch (Open ERP) 2010-09-15 12:38:21 +05:30
parent 1f9a51f45b
commit a96cc81c02
1 changed files with 1 additions and 8 deletions

View File

@ -69,21 +69,14 @@ def emp_create_xml(self, cr, uid, dept, holiday_type, row_id, empid, name, som,
display[index]=' '
count=''
xml = '''
<time-element index="%d">
<value>%s</value>
</time-element>
'''
time_xml = ([xml % (index, value) for index,value in display.iteritems()])
data_xml=['<info id="%d" number="%d" val="%s" />' % (row_id,x,display[x]) for x in range(1,len(display)+1) ]
# Computing the xml
xml = '''
%s
<employee row="%d" id="%d" name="%s" sum="%s">
%s
</employee>
''' % (data_xml,row_id,dept, toxml(name),count, '\n'.join(time_xml))
''' % (data_xml,row_id,dept, toxml(name),count)
return xml