trytond-account_dunning_cron/account.py

16 lines
467 B
Python
Raw Normal View History

2014-11-07 13:13:30 +01:00
# This file is part account_dunning_cron module for Tryton.
# The COPYRIGHT file at the top level of this repository contains
# the full copyright notices and license terms.
2013-12-19 17:31:32 +01:00
from trytond.pool import PoolMeta
from trytond.model import fields
__all__ = ['Configuration']
class Configuration:
2016-03-29 12:00:15 +02:00
__metaclass__ = PoolMeta
2013-12-19 17:31:32 +01:00
__name__ = 'account.configuration'
dunning_group_cron = fields.Property(fields.Many2One('res.group',
'Dunning Group Cron'))