kalenislims/lims_result_warning/task.py

28 lines
796 B
Python

# This file is part of lims_result_warning 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.i18n import gettext
class AdministrativeTaskTemplate(metaclass=PoolMeta):
__name__ = 'lims.administrative.task.template'
@classmethod
def get_types(cls):
types = super().get_types()
types.append(('result_warning',
gettext('lims_result_warning.lbl_result_warning')))
return types
class AdministrativeTask(metaclass=PoolMeta):
__name__ = 'lims.administrative.task'
@classmethod
def _get_origin(cls):
origins = super()._get_origin()
origins.append('lims.notebook.line')
return origins