[FIX] removed wrong bugfix

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

bzr revid: qdp@tinyerp.com-20090128134613-eado0sbj5mziog2x
This commit is contained in:
qdp 2009-01-28 14:46:13 +01:00
parent 26f4dbbcd3
commit a9b7443c9c
1 changed files with 1 additions and 1 deletions

View File

@ -1077,7 +1077,7 @@ class account_invoice_tax(osv.osv):
_description = "Invoice Tax"
_columns = {
'invoice_id': fields.many2one('account.invoice', 'Invoice Line', ondelete='cascade', select=True),
'name': fields.char('Tax Description', size=64, required=True, translate=True),
'name': fields.char('Tax Description', size=64, required=True),
'account_id': fields.many2one('account.account', 'Tax Account', required=True, domain=[('type','<>','view'),('type','<>','income'), ('type', '<>', 'closed')]),
'base': fields.float('Base', digits=(16,2)),
'amount': fields.float('Amount', digits=(16,2)),