Browse Source

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

pull/44/head
Guewen Baconnier 10 years ago
parent
commit
bdda82009e
  1. 6
      account_financial_report_webkit/wizard/aged_partner_balance_wizard.py

6
account_financial_report_webkit/wizard/aged_partner_balance_wizard.py

@ -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 = {

Loading…
Cancel
Save