[FIX] lp:1313689

Remove default value to False for account_id since it breaks existing code. It's the responsability of the parser to fill a blank/None account_id in the statement_line values if the default one provided by account_statement_ext does not apply to the expected behavior
This commit is contained in:
Laurent Mignon (Acsone)
2014-04-28 17:07:53 +02:00
parent 6b5979fdde
commit 4e02873138
4 changed files with 133 additions and 5 deletions

View File

@@ -240,7 +240,3 @@ class AccountBankStatementLine(Model):
_columns = {
'account_id': fields.many2one('account.account', 'Account'),
}
_defaults = {
'account_id': False,
}