Skip to Content
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
810 Представления

I would like to change the 'Total' label to 'Gross'. Can anyone help or does anyone know how to do this?

Аватар
Отменить
Лучший ответ

Hi,


To change the label from "Total" to "Gross" you can create a new template that extends the original one.

Use the following code to change the label:

<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<template id="custom_tax_totals_field" inherit_id="account.TaxTotalsField">
<xpath expr="//label[@class='o_form_label o_tax_total_label'][last()]" position="replace">
<label class="o_form_label o_tax_total_label">Gross</label>
        </xpath>
    </template>
</odoo>

Regards

Аватар
Отменить
Related Posts Ответы Просмотры Активность
9
сент. 20
44065
1
окт. 18
3226
0
окт. 15
2866
1
янв. 25
799
2
нояб. 24
1415