|
From: | Bounmy Sihaphom |
Subject: | Re: [Health-dev] Loop in report file odt is not executing and gives me the internal server error 500 |
Date: | Sat, 18 Oct 2014 15:10:09 +0700 |
Hi Bounmy2014-10-12 20:34 GMT-03:00 Bounmy Sihaphom <address@hidden>:Hi all!I am trying to print number of daily appointments from the Tree view to odt file, it gives me the internal server error 500, here is my genshi code on the file:
<for each="appointment in objects">
<for each="appointment in appointment">
<appointment.appointment_date_time>,<appointment.ref>,
<appointment.patient>, <appointment.sex>, <appointment.age>
</for>
</for>
My target model :
class AppointmentReportbm(ModelSQL, ModelView)
...
appointment = pool.get('gnuhealth.appointment').__table__()
...If I took the internal loop out, it prints only the first record from the list, in this case, how can i define the second loop so that I can print all the records from the list?I think you can delete the internal loop. Normally the objects variable it's a list with all the selected records from the tree view [0]. Have you tried selecting the records before printing the report?By the way, i believe that the AppointmentReportbm model definition is not needed and only if you want to pass custom data to a report, you have to define a class that inherits from Report [1]Regards !
--Sebastián Marróthymbr@
Converging Ideas for Emerging Realities
www.thymbra.com
[Prev in Thread] | Current Thread | [Next in Thread] |