kalenislims/lims_digital_sign/configuration.py
Sebastián Marró fe8d687c82 Remove 2to3
2019-03-04 11:41:58 -03:00

21 lines
736 B
Python

# -*- coding: utf-8 -*-
# This file is part of lims_digital_sign 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
__all__ = ['Configuration']
class Configuration(metaclass=PoolMeta):
__name__ = 'lims.configuration'
mail_ack_report_subject = fields.Char('Email subject of Acknowledgment of'
' results report',
help='In the text will be added suffix with the results report number')
mail_ack_report_body = fields.Text('Email body of Acknowledgment of'
' results report',
help='<SAMPLES> will be replaced by the list of sample\'s labels')