This question has been flagged
1 Reply
7175 Views

I want to manually modify rml report, but don't know how to get the "field name" like

o.partner_order_id and o.partner_order_id.phone
o.user_id and o.user_id.name
etc.

Don't want to use base_report_designer module, it's too slow even on Ubuntu.

Any other ways to get a list of available fields that can be used in rml file.

Avatar
Discard
Best Answer

single attributes can you get e.g.:

  1. via tooltip on the labels after activate developer mode *)

or for fields not shown on the form

  1. see in the database for the columns names

  2. see in the py files for calculated fields (_columns= ... fields.function)

*) in Version 7 click on the username in top righ corner -> about openerp -- developer mode or add ?debug=# to the url http://127.0.01:8069/?debug=#

Avatar
Discard