trytond-internetdomain/company.py
2016-03-29 12:00:25 +02:00

16 lines
477 B
Python

#This file is part internetdomain 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__ = ['Company']
class Company:
__metaclass__ = PoolMeta
__name__ = 'company.company'
idomain_alert_expire = fields.Char('Domain Alert Expire',
help='Days notice of expire (separated with comma. Ex. 30,15,10)')