[IMP] set the default value for the account to False as the account is not required anymore

This commit is contained in:
Sebastien Beau
2014-04-15 11:52:48 +02:00
parent f56c48b67b
commit f5609b41b5

View File

@@ -241,4 +241,8 @@ class AccountBankStatementLine(Model):
_columns = {
'account_id': fields.many2one('account.account','Account'),
}
_defaults = {
'account_id': False,
}