kalenislims/lims_email/party.py

14 lines
410 B
Python

# This file is part of lims_email module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
from trytond.model import fields
from trytond.pool import PoolMeta
class Party(metaclass=PoolMeta):
__name__ = 'party.party'
result_report_format = fields.Many2One('lims.result_report.format',
'Results Report Name Format')