[FIX] account: account_move => partner fields set to store=true because it did not work in search view else gave error (partner_id not found)

bzr revid: mra@mra-laptop-20101015132213-umetllpb02d666ha
This commit is contained in:
Mustufa Rangwala 2010-10-15 18:52:13 +05:30
parent 222cb30a1a
commit 1ad2ddbc17
1 changed files with 1 additions and 1 deletions

View File

@ -1105,7 +1105,7 @@ class account_move(osv.osv):
help='All manually created new journal entry are usually in the state \'Unposted\', but you can set the option to skip that state on the related journal. In that case, they will be behave as journal entries automatically created by the system on document validation (invoices, bank statements...) and will be created in \'Posted\' state.'),
'line_id': fields.one2many('account.move.line', 'move_id', 'Entries', states={'posted':[('readonly',True)]}),
'to_check': fields.boolean('To Review', help='Check this box if you are unsure of that journal entry and if you want to note it as \'to be reviewed\' by an accounting expert.'),
'partner_id': fields.related('line_id', 'partner_id', type="many2one", relation="res.partner", string="Partner"),
'partner_id': fields.related('line_id', 'partner_id', type="many2one", relation="res.partner", string="Partner", store=True),
'amount': fields.function(_amount_compute, method=True, string='Amount', digits_compute=dp.get_precision('Account'), type='float', fnct_search=_search_amount),
'date': fields.date('Date', required=True, states={'posted':[('readonly',True)]}),
'narration':fields.text('Narration'),