Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
3517 Переглядів

Hi, I would like to know how could I use tax's 'description' instead of tax's 'name' in below extract of code (invoice template).

Reason is that Spanish accounting module swaps (for some odd reason) name and description for taxes .

So Instead of:  

t-field="t.name"  

I would like to find how to do:

t-field="t.description"

But description is not a field of tax_line.

I guess I have to search t.name into another model to get tax description. Any help on how to do it is really welcomed.

<tr t-foreach="o.tax_line" t-as="t">
<td>
<span t-field="t.name"/>
</td>
<td class="text-right">
<span t-field="t.base" t-field-options='{"widget": "monetary", "display_currency": "o.currency_id"}'/>
</td>
<td class="text-right">
<span t-field="t.amount" t-field-options='{"widget": "monetary", "display_currency": "o.currency_id"}'/>
</td>
</tr>



Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
0
січ. 24
1663
1
груд. 23
1849
2
груд. 24
7584
2
жовт. 19
8887
2
вер. 15
8040