diff --git a/account_bank_statement_import_camt/models/parser.py b/account_bank_statement_import_camt/models/parser.py index 6c4e188..0adf319 100644 --- a/account_bank_statement_import_camt/models/parser.py +++ b/account_bank_statement_import_camt/models/parser.py @@ -185,12 +185,14 @@ class CamtParser(models.AbstractModel): self.parse_transaction_details(ns, dnode, transaction) # transactions['data'] should be a synthetic xml snippet which # contains only the TxDtls that's relevant. - data = copy(node) - for j, dnode in enumerate(data.xpath( - './ns:NtryDtls/ns:TxDtls', namespaces={'ns': ns})): - if j != i: - dnode.getparent().remove(dnode) - transaction['data'] = etree.tostring(data) + # only set this field if statement lines have it + if 'data' in self.pool['account.bank.statement.line']._fields: + data = copy(node) + for j, dnode in enumerate(data.xpath( + './ns:NtryDtls/ns:TxDtls', namespaces={'ns': ns})): + if j != i: + dnode.getparent().remove(dnode) + transaction['data'] = etree.tostring(data) yield transaction def get_balance_amounts(self, ns, node):