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

How to add measure total with tax in invoice business intelligence report any one have idea or any module?

 

Аватар
Відмінити

Hi, also need this. Did you managed to get it working?

Найкраща відповідь

Hi,

Try the code like below.

in .py

class AccountInvoiceReport(models.Model):
_inherit = 'account.invoice.report'

total_w_tax = fields.Float('Total With Tax', store=True)

def _select(self):
res = super(AccountInvoiceReport, self)._select()
select_str = res + """, move.amount_total AS total_w_tax """
return select_str
in .xml

https://ibb.co/7jRh0Wf

https://ibb.co/ypxm4kV

Regards

Аватар
Відмінити

Is it doable from Odoo Studio so far? I doubt, but who knows...

Найкраща відповідь

Good morning, 

If field total with tax not exist,

Add function calculate TotalWithTAX and affect it to new field,

then you can inherit view graph of invoices then add your field with 

type="measure"
Аватар
Відмінити
Related Posts Відповіді Переглядів Дія
3
вер. 25
254
1
серп. 25
194
1
серп. 25
271
0
серп. 25
169
1
серп. 25
203