Skip to Content
Menu
This question has been flagged
2 Replies
3434 Views

Scenario---

From The Accounting

Product Name                                        qty            Unit Price    Tax            Amount

USB     dsd     200000 Product Sales     1.00000    55.56000     ITAX X     55.5500000


Subtotal
55.5500000 €

---------------------------
Tax 0.0000000 €


Total 55.5500000 €

-------------------------------

Balance

0.0000000


When I click on this  Invoice report  ,I got  below out put..,


 Total Without Taxes 55.52 €
Taxes 0.00 €
Total 55.52 €

=======================================================================================

I dont want to round this value..How its possible Need a help...........


I need  same output in  Form view and Reports  ..

Total Without Taxes 55.550000  €

Taxes 0.00 €

Total55.550000 €

 Same Issue I am Facing in Profit and Loss,Balance Sheet.I want to avoid odoo rounding methods from the all the reports..


Thanks in advane..


Avatar
Discard
Author

Find Solution myown way-- Go to Account->views->change report_trialbalance.xml --and add this code

Author Best Answer

Find Solution myown way-- Go to Account->views->change report_trialbalance.xml --and change like below code


<td class="text-right">

<!--<span t-esc="formatLang(sum_debit_account(childrenaccount), digits=get_digits(dp='Account'), currency_obj=res_company.currency_id)"/>-->

<span t-att-style="style" t-esc="formatLang(childrenaccount['balance'], digits=get_digits(dp='Account'),currency_obj=res_company.currency_id)"/>

</td>

Avatar
Discard