Browse Source

[IMP] account_bank_statement_import_online: always create a statement

12.0
Alexey Pelykh 5 years ago
parent
commit
5e3af43531
  1. 7
      account_bank_statement_import_online/models/online_bank_statement_provider.py

7
account_bank_statement_import_online/models/online_bank_statement_provider.py

@ -214,9 +214,12 @@ class OnlineBankStatementProvider(models.Model):
statement_date_until,
)
if not data:
statement_date_since = statement_date_until
continue
data = ([], {})
lines_data, statement_values = data
if not lines_data:
lines_data = []
if not statement_values:
statement_values = {}
statement = AccountBankStatement.search([
('journal_id', '=', provider.journal_id.id),
('state', '=', 'open'),

Loading…
Cancel
Save