[FIX]account: If you delete an invoice entry, invoice still exists

lp bug: https://launchpad.net/bugs/675494 fixed

bzr revid: ara@tinyerp.com-20101228102236-anr2cd6aunkmfqui
This commit is contained in:
ARA (OpenERP) 2010-12-28 15:52:36 +05:30
parent eece769abc
commit 2d16e982e9
1 changed files with 1 additions and 1 deletions

View File

@ -246,7 +246,7 @@ class account_invoice(osv.osv):
'invoice_line': fields.one2many('account.invoice.line', 'invoice_id', 'Invoice Lines', readonly=True, states={'draft':[('readonly',False)]}),
'tax_line': fields.one2many('account.invoice.tax', 'invoice_id', 'Tax Lines', readonly=True, states={'draft':[('readonly',False)]}),
'move_id': fields.many2one('account.move', 'Journal Entry', readonly=True, select=1, help="Link to the automatically generated Journal Items."),
'move_id': fields.many2one('account.move', 'Journal Entry', readonly=True, select=1, ondelete='restrict', help="Link to the automatically generated Journal Items."),
'amount_untaxed': fields.function(_amount_all, method=True, digits_compute=dp.get_precision('Account'), string='Untaxed',
store={
'account.invoice': (lambda self, cr, uid, ids, c={}: ids, ['invoice_line'], 20),