kalenislims/lims_email/configuration.py

45 lines
1.5 KiB
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 Configuration(metaclass=PoolMeta):
__name__ = 'lims.configuration'
mail_ack_report_grouping = fields.Selection([
(None, 'None'),
('party', 'Party'),
], 'Grouping of Results reports by Email')
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')
mail_ack_report_hide_recipients = fields.Boolean('Hide recipients')
result_report_format = fields.Many2One('lims.result_report.format',
'Default Results Report Name Format')
@staticmethod
def default_mail_ack_report_grouping():
return None
@staticmethod
def default_mail_ack_report_hide_recipients():
return True
class Cron(metaclass=PoolMeta):
__name__ = 'ir.cron'
@classmethod
def __setup__(cls):
super().__setup__()
cls.method.selection.extend([
('lims.results_report|cron_send_results_report',
"Send Results Report"),
])