Currency symbol hardcoded in Reports (ver 7)
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
Odoo Addons (MOVED TO GITHUB) |
Fix Committed
|
Low
|
OpenERP R&D Addons Team 3 |
Bug Description
Revision 8075 of addons (version 7).
The following RML files hardcode currency symbol printing to the right of the amount, instead of using the format_lang function with the currency_
FILE: account_
LINE: 215
<para style="
[[ line['currency_id'] ]] </para>
FILE: lunch/report/
LINE: 140
<para style="
any_id.currency_id and o.company_
LINE: 158
<para style="
and o.company_
LINE: 175
<para style="
currency_id and o.company_
Related branches
- OpenERP Core Team: Pending requested
-
Diff: 30 lines (+3/-3)1 file modifiedlunch/report/order.rml (+3/-3)
Changed in openobject-addons: | |
assignee: | nobody → OpenERP R&D Addons Team 3 (openerp-dev-addons3) |
importance: | Undecided → Low |
status: | Incomplete → Confirmed |
Changed in openobject-addons: | |
status: | Confirmed → In Progress |
Hello Ray Carnes ,
I have checked you issue with trunk and its working fine with other currency also
If you want to change a currency then you can set it currency in company.
For formatLang(value, digits=2, date=False, date_time=False, grouping=True, monetary=False)
can be used to format a date, time or amount according to the locale ( not for symbol).So you can
change your currency in company.
Correct me if I am wrong...
Thanks and waiting for reply.