trytond-electronic_mail_wiz.../action.py

14 lines
433 B
Python
Raw Permalink Normal View History

2014-11-07 14:23:04 +01:00
# This file is part electronic_mail_wizard 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
2012-09-17 12:40:18 +02:00
2012-10-25 13:49:54 +02:00
__all__ = ['ActionWizard']
__metaclass__ = PoolMeta
2012-10-25 13:49:54 +02:00
class ActionWizard:
2012-10-25 13:49:54 +02:00
__name__ = 'ir.action.wizard'
2012-09-17 12:40:18 +02:00
template = fields.One2Many("electronic.mail.template", 'wizard', 'Template')