The end period must be set and thus the fiscal year too

pull/44/head
Guewen Baconnier 2015-01-05 11:16:59 +01:00
parent 8671e63f54
commit bdda82009e
1 changed files with 6 additions and 0 deletions

View File

@ -68,6 +68,12 @@ class AccountAgedTrialBalance(orm.TransientModel):
[('filter_period', 'Periods')],
"Filter by",
required=True),
'fiscalyear_id': fields.many2one(
'account.fiscalyear',
'Fiscal Year', help='Keep empty for all open fiscal year',
required=True),
'period_to': fields.many2one('account.period', 'End Period',
required=True),
}
_defaults = {