Browse Source
Merge pull request #189 from onesteinbv/11_fix_account_bank_statement_import_camt_oca
[11.0][FIX] account_bank_statement_import_camt_oca: add tag AddtlInf to the name field
pull/193/merge
Pedro M. Baeza
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
2 additions and
2 deletions
-
account_bank_statement_import_camt_oca/__manifest__.py
-
account_bank_statement_import_camt_oca/models/parser.py
|
@ -2,7 +2,7 @@ |
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html). |
|
|
{ |
|
|
{ |
|
|
'name': 'CAMT Format Bank Statements Import', |
|
|
'name': 'CAMT Format Bank Statements Import', |
|
|
'version': '11.0.1.0.3', |
|
|
|
|
|
|
|
|
'version': '11.0.1.0.4', |
|
|
'license': 'AGPL-3', |
|
|
'license': 'AGPL-3', |
|
|
'author': 'Odoo Community Association (OCA), Therp BV', |
|
|
'author': 'Odoo Community Association (OCA), Therp BV', |
|
|
'website': 'https://github.com/OCA/bank-statement-import', |
|
|
'website': 'https://github.com/OCA/bank-statement-import', |
|
|
|
@ -56,7 +56,7 @@ class CamtParser(models.AbstractModel): |
|
|
# message |
|
|
# message |
|
|
self.add_value_from_node( |
|
|
self.add_value_from_node( |
|
|
ns, node, [ |
|
|
ns, node, [ |
|
|
'./ns:RmtInf/ns:Ustrd', |
|
|
|
|
|
|
|
|
'./ns:RmtInf/ns:Ustrd|./ns:RtrInf/ns:AddtlInf', |
|
|
'./ns:AddtlNtryInf', |
|
|
'./ns:AddtlNtryInf', |
|
|
'./ns:Refs/ns:InstrId', |
|
|
'./ns:Refs/ns:InstrId', |
|
|
], transaction, 'name', join_str='\n') |
|
|
], transaction, 'name', join_str='\n') |
|
|