跳至內容
選單
此問題已被標幟
2 回覆
2836 瀏覽次數

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?

頭像
捨棄
最佳答案

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

頭像
捨棄
最佳答案

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.

頭像
捨棄

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.