Skip to Content
Menu
This question has been flagged
7 Replies
28260 Views

See image for better idea.

<span t-field="o.amount_total"/> 

Image is not display here so I have putted shareable link.


see link: https://drive.google.com/file/d/0B763E4hoUk59QjI0S0pqMG5CakE/view?usp=sharing

Avatar
Discard
Best Answer

Hello Jaydeep bhai...

I have done same thing in sale order report with monetary field.

<span t-field="doc.amount_total" t-field-options="{&quot;widget&quot;: &quot;False&quot;}"/>


Hope this will help you...

Avatar
Discard
Best Answer

Try this,

<span t-esc="float(o.amount_total)"/>

Avatar
Discard
Author

Hello CatsandDogs, Is it possible through ?

Author

<span t-field="o.amount_total"/>

I think, is not possible way to achieve that

Best Answer

Try, this one

In .py

_columns = {
    'amount' : fields.float("amount", digits_compute=dp.get_precision('Account'))
    'company_id': fields.many2one('res.company', 'Company', required=True),
    'company_currency_id': fields.related('company_id','currency_id',type="many2one",
         relation="res.currency",string="Company Currency",readonly=True,store=True),
}

In .xml,


<field name="company_currency_id" invisible="1"/>
<field name="amount" widget="monetary" options="{'currency_field': 'company_currency_id'}"/>





Avatar
Discard
Author

thanks

Related Posts Replies Views Activity
1
Jan 24
1778
1
Jun 23
4192
1
Apr 22
9399
1
Nov 21
6046
2
Mar 24
11339