Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
2845 Visualizzazioni

I am modifying some report and I want to know where do the values come from?

for example,

[[ formatLang(o.amount_total, digits=get_digits(dp='Account') ) ]] [[ o.pricelist_id.currency_id. symbol ]]

Where does the amount_total come from?

Avatar
Abbandona
Risposta migliore

Check corresponding .py file. Usually, the data is defined in __init__ method.
 

Avatar
Abbandona
Risposta migliore

I guess that you.are editing sale_order.rml file, where o. stands for object, for which current report is being processed and amount_total for the field which is defined in current model - to see, which field is called how, enable developer mode and see from there by hovering on each of fields label.

Avatar
Abbandona

Adding on Mariusz' answer: the o actually comes from a for loop, something like repeatIn(objects, 'o') in RML definition. The information is passed to the RML file during rendering as objects variable.