I try to create a report on OpenERP. There is several methods to do this task (openoffice plugin, XML files, RML files, etc.)

What's the quickest way to do that (and/or the most beautiful) ?

link|improve this question

not programming related. – Daniel A. White Feb 7 '11 at 15:25
2  
@Daniel Yes, it's programming related. XML, RML, Reportlab, OpenERP... what is it for you ? – Sandro Munda Feb 7 '11 at 16:28
Your question wasn't clearly listed as such. – Daniel A. White Feb 7 '11 at 16:38
1  
@Daniel It's your personal opinion and I absolutely do not share – Sandro Munda Feb 7 '11 at 17:39
Hi @Daniel, the report templates in OpenERP contain a mixture of Python code and Report Markup Language (an XML schema). In my opinion, this question is sufficiently programming related for Stack Overflow. – Don Kirkby Feb 7 '11 at 22:55
show 1 more comment
feedback

4 Answers

up vote 2 down vote accepted

I've only used the RML files and I've been happy with the result. I haven't tried the OpenOffice method, but it seems like the conversion step from SXW to RML would be more hassle. When I edit an RML file, I just save it and click on the report button in the client to try it out. No compilation or conversion necessary. OpenOffice might be useful if I wanted to let business users make minor changes to reports, but I suspect that all the weird data extraction code would confuse them.

I haven't tried the XML report technique, so I can't comment on it.

I assume you've seen the documentation on writing reports. I just noticed a section that talks about changing the corporate default headers, and it only seems to be described for XML reports. I haven't looked any further, but that might be a reason to use XML instead of RML. I know we would like to get rid of the corporate headers for some internal documents.

link|improve this answer
feedback

if you know html then webkit report using .mako. webkit report is very easy to create the reports companre to rml.

link|improve this answer
+1 Go with webkit. waaaay easier to figure out in my experience – Timothy Apr 18 at 9:26
feedback

Web kit Report is the easiest way to make a Report, to install webkit report

sudo apt-get install wkhtmltopdf

and install report_webkit module in OpenERP, it will show the tab in the company, within company you can make simple report using OpenERP GUI,

for Advance report You must learn the maco template,

Thanks..!!

link|improve this answer
feedback

the most easiest and simple and quickest way to edit,customize and create your own report is editing the .rml files knowledge from experience so far

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.