mirror of
https://github.com/brain-tec/account_ebics.git
synced 2024-11-22 12:12:03 +00:00
Merge pull request #40 from Noviat/14-fix-stack-trace
[14.0]account_ebics - fix stack trace when using Odoo OE statement im…
This commit is contained in:
commit
b0b5ca9e57
@ -3,7 +3,7 @@
|
||||
|
||||
{
|
||||
"name": "EBICS banking protocol",
|
||||
"version": "14.0.1.0.3",
|
||||
"version": "14.0.1.0.4",
|
||||
"license": "LGPL-3",
|
||||
"author": "Noviat",
|
||||
"website": "www.noviat.com",
|
||||
|
@ -168,10 +168,12 @@ class EbicsFile(models.Model):
|
||||
return False
|
||||
return True
|
||||
|
||||
def _process_result_action(self, res):
|
||||
def _process_result_action(self, res, parser="oca"):
|
||||
notifications = []
|
||||
st_line_ids = []
|
||||
statement_ids = []
|
||||
sts_data = []
|
||||
if parser == "oca":
|
||||
if res.get("context"):
|
||||
notifications = res["context"].get("notifications", [])
|
||||
st_line_ids = res["context"].get("statement_line_ids", [])
|
||||
@ -204,8 +206,21 @@ class EbicsFile(models.Model):
|
||||
(tuple(st_line_ids),),
|
||||
)
|
||||
sts_data = self.env.cr.dictfetchall()
|
||||
elif parser == "oe":
|
||||
if res.get("res_id"):
|
||||
st_ids = res["res_id"]
|
||||
else:
|
||||
sts_data = []
|
||||
st_ids = res["domain"][2]
|
||||
statements = self.env["account.bank.statement"].browse(st_ids)
|
||||
for statement in statements:
|
||||
sts_data.append(
|
||||
{
|
||||
"statement_id": statement.id,
|
||||
"date": statement.date,
|
||||
"name": statement.name,
|
||||
"company_name": statement.company_id.name,
|
||||
}
|
||||
)
|
||||
st_cnt = len(sts_data)
|
||||
if st_cnt:
|
||||
self.note_process += _("%s bank statements have been imported: ") % st_cnt
|
||||
@ -414,7 +429,7 @@ class EbicsFile(models.Model):
|
||||
_("No financial journal found for Company Bank Account %s")
|
||||
% bank_account
|
||||
)
|
||||
return self._process_result_action(res)
|
||||
return self._process_result_action(res, parser="oe")
|
||||
|
||||
@staticmethod
|
||||
def _unlink_camt053(self):
|
||||
|
Loading…
Reference in New Issue
Block a user