跳至内容
菜单
此问题已终结
5 回复
5226 查看

How can I show the diferent taxes I have and their untaxed ammount separately.

Any idea



形象
丢弃

Do you want it for a particular module ?

编写者

Let me explain you. I have 3 different taxes VAT 15%, VAT 18% and Exent tax, In the report_invoice_document I have Total Without taxes = XXXX Taxes= XXXX Total= XXXX I need as next Total Taxed 15% = XXXX Total Taxed 18% = XXXX Total Exent = XXXX Tax 15%= XXXX Tax 18%= XXXX Total= XXXX Both Invoice and Receipt POS

最佳答案

Maybe editing report invoice document, calling fields.


形象
丢弃
编写者 最佳答案

I finally get it.

Share the xml code.

You have to edit report_invoice_document



<div class="row">

<div class="col-xs-4 pull-right">

<table class="table table-condensed">

<tr class="border-black">

<td><strong>SUBTOTAL</strong></td>

<td class="text-right">

<span t-field="o.amount_untaxed" t-field-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: &quot;o.currency_id&quot;}"/>

</td>

</tr>

<!--SUBTOTAL-->

<tr class="text-right" t-foreach="o.tax_line" t-as="t">

<td class="text-right" >Base <span t-field="t.name"/></td>

<td class="text-right"><span t-field="t.base" t-field-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: &quot;o.currency_id&quot;}"/>

</td>

</tr>

<tr class="border-black">

<td><strong>IMPUESTOS</strong></td>

<td class="text-right">

<span t-field="o.amount_tax" t-field-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: &quot;o.currency_id&quot;}"/>

</td>

</tr>

<!--IMPUESTOS-->

<tr class="text-right" t-foreach="o.tax_line" t-as="t">

<td class="text-right" ><span t-field="t.name"/></td>

<td class="text-right"><span t-field="t.amount" t-field-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: &quot;o.currency_id&quot;}"/>

</td>

</tr>

<tr class="border-black">

<td><strong>TOTAL</strong></td>

<td class="text-right">

<span t-field="o.amount_total" t-field-options="{&quot;widget&quot;: &quot;monetary&quot;, &quot;display_currency&quot;: &quot;o.currency_id&quot;}"/>

</td>

</tr>

</table>

</div>S

形象
丢弃
最佳答案

Good evening somebody inside the community of odoo honduras that can communicate with me to Mr. Edwin Hndez since you are contracted to provide some services and the gentleman does not appear.

形象
丢弃
相关帖文 回复 查看 活动
4
3月 15
11069
0
7月 23
1434
2
7月 24
2685
TAX 15% 已解决
1
4月 24
2533
2
7月 24
2387