trytond-sale_invoice_period/party.py

22 lines
514 B
Python
Raw Normal View History

2014-03-25 16:57:55 +01:00
# 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__ = ['Party']
__metaclass__ = PoolMeta
GROUPING_PERIODS = [
(None, 'Standard'),
('biweekly', 'Biweekly'),
('monthly', 'Monthly'),
]
class Party:
__name__ = 'party.party'
sale_invoice_grouping_period = fields.Property(fields.Selection(
GROUPING_PERIODS, 'Sale Invoice Grouping Period'))