Browse Source

Merge pull request #51 from NL66278/8.0_camt_name

[ENH] Might need info in camt import from PmtInfId element.
pull/64/head
Sylvain LE GAL 9 years ago
parent
commit
9490a049af
  1. 7
      account_bank_statement_import_camt/camt.py

7
account_bank_statement_import_camt/camt.py

@ -137,6 +137,13 @@ class CamtParser(object):
if not transaction.message:
self.add_value_from_node(
ns, node, './ns:AddtlNtryInf', transaction, 'message')
if not transaction.eref:
self.add_value_from_node(
ns, node, [
'./ns:NtryDtls/ns:Btch/ns:PmtInfId',
],
transaction, 'eref'
)
transaction.data = etree.tostring(node)
return transaction

Loading…
Cancel
Save