Browse Source

[IMP] remove duplicate of company_id

pull/756/head
Yannick Vaucher 11 years ago
committed by Kévin Roche
parent
commit
e8169c1545
  1. 1
      account_export_csv/wizard/account_export_csv.py

1
account_export_csv/wizard/account_export_csv.py

@ -85,7 +85,6 @@ class AccountCSVExport(orm.TransientModel):
'fiscalyear_id': fields.many2one('account.fiscalyear', 'Fiscalyear', required=True),
'periods': fields.many2many('account.period','rel_wizard_period','wizard_id','period_id','Periods',help='All periods in the fiscal year if empty'),
'journal_ids': fields.many2many('account.journal','rel_wizard_journal','wizard_id','journal_id','Journals', help='If empty, use all journals, only used for journal entries'),
'company_id': fields.many2one('res.company', 'Company', invisible=True),
'fiscalyear_id': fields.many2one('account.fiscalyear', 'Fiscalyear', required=True),
'export_filename': fields.char('Export CSV Filename', size=128),
}

Loading…
Cancel
Save