kalenislims/lims_report_html/action.py

33 lines
1.0 KiB
Python

# This file is part of lims_report_html module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.pool import PoolMeta
from trytond.transaction import Transaction
class ActionReport(metaclass=PoolMeta):
__name__ = 'ir.action.report'
@classmethod
def __setup__(cls):
super().__setup__()
lims_option = ('lims', 'Lims Report')
if lims_option not in cls.template_extension.selection:
cls.template_extension.selection.append(lims_option)
@classmethod
def __register__(cls, module_name):
cursor = Transaction().connection.cursor()
table = cls.__table__()
super().__register__(module_name)
cursor.execute(*table.update([table.template_extension], ['lims'],
where=(table.template_extension == 'results')))
class ReportTranslationSet(metaclass=PoolMeta):
__name__ = 'ir.translation.set'
def extract_report_lims(self, content):
return []