2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
class AccountTaxReport(models.TransientModel):
|
|
|
|
_inherit = "account.common.report"
|
|
|
|
_name = 'account.tax.report'
|
|
|
|
_description = 'Tax Report'
|
|
|
|
|
|
|
|
def _print_report(self, data):
|
|
|
|
return self.env.ref('account.action_report_account_tax').report_action(self, data=data)
|