Odoo Help
Odoo is the world's easiest all-in-one management software. It includes hundreds of business apps:
CRM
|
e-Commerce
|
Accounting
|
Inventory
|
PoS
|
Project management
|
MRP
|
etc.
Monetary widget within form
Dear All,
I am trying to display currency symbol within form view, so far I tried these:
<field name="agent_price" widget='monetary' options="{'currency': %(base.EUR)d}" string="Agent Price" />
<field name="agent_price" widget='monetary' options="{'currency': [%(base.EUR)d]}" string="Agent Price" />
The following:
%(base.EUR)d
is translated properly to id, but nothing seems to be working (nothing is displayed nor any error shown, it even seems that the widget attribute is completely ignored). Maybe I am missing something?
Hi Martin,
Try this:
<field name="agent_price" widget='monetary' options="{'currency_field': 'currency_id'}" string="Agent Price"/>
Thanks,
Unfortunately this is not the way, you are using another field to determine the currency_id, if you read javascript code of MonetaryField widget, you can see clearly there is option named 'currency' where you can specify the currency value, the real problem is this time somewhere else :/
Martin, Its 'currency_field' and not 'currency'. check web/addons/web/static/src/js/view_form.js at line 5452 the instance.web.form.FieldMonetary
I've just checked, it resets the 'currency' to false :-/ I assumed the whole time that it sets false default value ;-)
About This Community
This platform is for beginners and experts willing to share their Odoo knowledge. It's not a forum to discuss ideas, but a knowledge base of questions and their answers.
RegisterOdoo Training Center
Access to our E-learning platform and experience all Odoo Apps through learning videos, exercises and Quizz.
Test it nowQuestion tools
Stats
Asked: 4/22/13, 3:41 AM |
Seen: 8314 times |
Last updated: 3/16/15, 8:10 AM |