我需要一个关于odoo税务报告的额外专栏。目前有两列净和税。我需要添加名为 Gross 的列。这个视图与其他qweb视图不同,并没有得到它。截图:
模块 account_reports ,生成报告的文件我认为 account_generic_tax_report 。
如果有人能建议我该做什么,那就太好了。
问候。
答案 0 :(得分:0)
您可以在列表column_header
中添加新的列名称
在功能get_column_names
,addons/account_reports/models/account_generic_tax_report.py
columns_header = [{}, {'name': '%s \n %s' % (_('NET'), self.format_date(dt_to, dt_from, options)), 'class': 'number', 'style': 'white-space: pre;'}, {'name': _('TAX'), 'class': 'number'} , {'name': _('New Field'), 'class': 'number'}]
请参阅附件图片。