From 2fddb26ec9146e32b4342c83ece7b3fc343662ab Mon Sep 17 00:00:00 2001 From: Sergio Zanchetta Date: Thu, 9 Sep 2021 21:41:20 +0200 Subject: [PATCH 01/31] [MIG] account_bank_statement_import_txt_xlsx: Migration to 14.0 [FIX] Mostly currency-related fixes [IMP] sample_statement_en test: add dates on description Co-authored-by: Marco Colombo --- account_statement_import_txt_xlsx/README.rst | 124 +++++ account_statement_import_txt_xlsx/__init__.py | 2 + .../__manifest__.py | 29 + .../data/map_data.xml | 23 + ...account_bank_statement_import_txt_xlsx.pot | 515 +++++++++++++++++ account_statement_import_txt_xlsx/i18n/nl.po | 521 ++++++++++++++++++ .../i18n/zh_CN.po | 518 +++++++++++++++++ .../models/__init__.py | 6 + .../models/account_journal.py | 18 + .../models/account_statement_import.py | 36 ++ .../account_statement_import_sheet_mapping.py | 166 ++++++ .../account_statement_import_sheet_parser.py | 384 +++++++++++++ .../readme/CONFIGURE.rst | 4 + .../readme/CONTRIBUTORS.rst | 15 + .../readme/DESCRIPTION.rst | 2 + .../readme/HISTORY.rst | 7 + .../readme/USAGE.rst | 4 + .../security/ir.model.access.csv | 5 + .../static/description/icon.png | Bin 0 -> 9455 bytes .../static/description/index.html | 472 ++++++++++++++++ .../tests/__init__.py | 3 + .../tests/fixtures/balance.csv | 3 + .../tests/fixtures/debit_credit.csv | 3 + .../tests/fixtures/empty_statement_en.csv | 1 + .../tests/fixtures/empty_statement_en.xlsx | Bin 0 -> 9041 bytes .../tests/fixtures/multi_currency.csv | 3 + .../tests/fixtures/original_currency.csv | 2 + .../fixtures/original_currency_empty.csv | 2 + .../tests/fixtures/sample_statement_en.csv | 3 + .../tests/fixtures/sample_statement_en.xlsx | Bin 0 -> 5101 bytes .../test_account_statement_import_txt_xlsx.py | 345 ++++++++++++ .../views/account_journal_views.xml | 17 + .../views/account_statement_import.xml | 23 + ...account_statement_import_sheet_mapping.xml | 89 +++ .../wizards/__init__.py | 3 + ...t_statement_import_sheet_mapping_wizard.py | 198 +++++++ ..._statement_import_sheet_mapping_wizard.xml | 162 ++++++ 37 files changed, 3708 insertions(+) create mode 100644 account_statement_import_txt_xlsx/README.rst create mode 100644 account_statement_import_txt_xlsx/__init__.py create mode 100644 account_statement_import_txt_xlsx/__manifest__.py create mode 100644 account_statement_import_txt_xlsx/data/map_data.xml create mode 100644 account_statement_import_txt_xlsx/i18n/account_bank_statement_import_txt_xlsx.pot create mode 100644 account_statement_import_txt_xlsx/i18n/nl.po create mode 100644 account_statement_import_txt_xlsx/i18n/zh_CN.po create mode 100644 account_statement_import_txt_xlsx/models/__init__.py create mode 100644 account_statement_import_txt_xlsx/models/account_journal.py create mode 100644 account_statement_import_txt_xlsx/models/account_statement_import.py create mode 100644 account_statement_import_txt_xlsx/models/account_statement_import_sheet_mapping.py create mode 100644 account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py create mode 100644 account_statement_import_txt_xlsx/readme/CONFIGURE.rst create mode 100644 account_statement_import_txt_xlsx/readme/CONTRIBUTORS.rst create mode 100644 account_statement_import_txt_xlsx/readme/DESCRIPTION.rst create mode 100644 account_statement_import_txt_xlsx/readme/HISTORY.rst create mode 100644 account_statement_import_txt_xlsx/readme/USAGE.rst create mode 100644 account_statement_import_txt_xlsx/security/ir.model.access.csv create mode 100644 account_statement_import_txt_xlsx/static/description/icon.png create mode 100644 account_statement_import_txt_xlsx/static/description/index.html create mode 100644 account_statement_import_txt_xlsx/tests/__init__.py create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/balance.csv create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/debit_credit.csv create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/empty_statement_en.csv create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/empty_statement_en.xlsx create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/multi_currency.csv create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/original_currency.csv create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/original_currency_empty.csv create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/sample_statement_en.csv create mode 100644 account_statement_import_txt_xlsx/tests/fixtures/sample_statement_en.xlsx create mode 100644 account_statement_import_txt_xlsx/tests/test_account_statement_import_txt_xlsx.py create mode 100644 account_statement_import_txt_xlsx/views/account_journal_views.xml create mode 100644 account_statement_import_txt_xlsx/views/account_statement_import.xml create mode 100644 account_statement_import_txt_xlsx/views/account_statement_import_sheet_mapping.xml create mode 100644 account_statement_import_txt_xlsx/wizards/__init__.py create mode 100644 account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py create mode 100644 account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.xml diff --git a/account_statement_import_txt_xlsx/README.rst b/account_statement_import_txt_xlsx/README.rst new file mode 100644 index 000000000..15e7b9ff5 --- /dev/null +++ b/account_statement_import_txt_xlsx/README.rst @@ -0,0 +1,124 @@ +================================== +Bank Statement TXT/CSV/XLSX Import +================================== + +.. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png + :target: https://odoo-community.org/page/development-status + :alt: Beta +.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png + :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html + :alt: License: AGPL-3 +.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github + :target: https://github.com/OCA/bank-statement-import/tree/14.0/account_statement_import_txt_xlsx + :alt: OCA/bank-statement-import +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/bank-statement-import-14-0/bank-statement-import-14-0-account_statement_import_txt_xlsx + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png + :target: https://runbot.odoo-community.org/runbot/174/14.0 + :alt: Try me on Runbot + +|badge1| |badge2| |badge3| |badge4| |badge5| + +This module allows you to import any TXT/CSV or XLSX file in Odoo as bank +statements. + +**Table of contents** + +.. contents:: + :local: + +Configuration +============= + +To create TXT/CSV/XLSX statement sheet columns mapping: + +#. Open *Invoicing > Configuration > Accounting > Statement Sheet Mappings* +#. Create mapping(s) according to your online banking software statement format + +Usage +===== + +To use this module, you need to: + +#. Get statement in TXT/CSV or XLSX from your online banking software +#. Go to Odoo and and import the statement file, selecting corresponding format + +Changelog +========= + +12.0.2.0.0 +~~~~~~~~~~ + +* [BREAKING] New mapping, please review mappings after upgrade. +* [BREAKING] Different bank accounts have to be used per each currency. +* [ADD] Support for both Statement and Activity reports. +* [ADD] Separate fee and currency exchange parsing. + +Bug Tracker +=========== + +Bugs are tracked on `GitHub Issues `_. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* ForgeFlow +* CorporateHub + +Contributors +~~~~~~~~~~~~ + +* Alexis de Lattre +* Sebastien BEAU +* Tecnativa (https://www.tecnativa.com) + + * Vicent Cubells + * Victor M.M. Torres + +* ForgeFlow (https://www.forgeflow.com) + + * Jordi Ballester Alomar + * Miquel Raïch Regué + +* `CorporateHub `__ + + * Alexey Pelykh + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-alexey-pelykh| image:: https://github.com/alexey-pelykh.png?size=40px + :target: https://github.com/alexey-pelykh + :alt: alexey-pelykh + +Current `maintainer `__: + +|maintainer-alexey-pelykh| + +This module is part of the `OCA/bank-statement-import `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/account_statement_import_txt_xlsx/__init__.py b/account_statement_import_txt_xlsx/__init__.py new file mode 100644 index 000000000..aee8895e7 --- /dev/null +++ b/account_statement_import_txt_xlsx/__init__.py @@ -0,0 +1,2 @@ +from . import models +from . import wizards diff --git a/account_statement_import_txt_xlsx/__manifest__.py b/account_statement_import_txt_xlsx/__manifest__.py new file mode 100644 index 000000000..dbf2bd88f --- /dev/null +++ b/account_statement_import_txt_xlsx/__manifest__.py @@ -0,0 +1,29 @@ +# Copyright 2019 ForgeFlow, S.L. +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +{ + "name": "Bank Statement TXT/CSV/XLSX Import", + "summary": "Import TXT/CSV or XLSX files as Bank Statements in Odoo", + "version": "14.0.1.0.0", + "category": "Accounting", + "website": "https://github.com/OCA/bank-statement-import", + "author": "ForgeFlow, CorporateHub, Odoo Community Association (OCA)", + "maintainers": ["alexey-pelykh"], + "license": "AGPL-3", + "installable": True, + "depends": [ + "account_statement_import", + "multi_step_wizard", + "web_widget_dropdown_dynamic", + ], + "external_dependencies": {"python": ["xlrd"]}, + "data": [ + "security/ir.model.access.csv", + "data/map_data.xml", + "views/account_statement_import_sheet_mapping.xml", + "views/account_statement_import.xml", + "views/account_journal_views.xml", + "wizards/account_statement_import_sheet_mapping_wizard.xml", + ], +} diff --git a/account_statement_import_txt_xlsx/data/map_data.xml b/account_statement_import_txt_xlsx/data/map_data.xml new file mode 100644 index 000000000..f87466015 --- /dev/null +++ b/account_statement_import_txt_xlsx/data/map_data.xml @@ -0,0 +1,23 @@ + + + + + Sample Statement + comma + dot + comma + " + %m/%d/%Y + Date + Amount + Currency + Amount Currency + Label + Partner Name + Bank Account + + diff --git a/account_statement_import_txt_xlsx/i18n/account_bank_statement_import_txt_xlsx.pot b/account_statement_import_txt_xlsx/i18n/account_bank_statement_import_txt_xlsx.pot new file mode 100644 index 000000000..429d0a300 --- /dev/null +++ b/account_statement_import_txt_xlsx/i18n/account_bank_statement_import_txt_xlsx.pot @@ -0,0 +1,515 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_bank_statement_import_txt_xlsx +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"Last-Translator: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: \n" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_mapping +msgid "Account Bank Statement Import Sheet Mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_mapping_wizard +msgid "Account Bank Statement Import Sheet Mapping Wizard" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_parser +msgid "Account Bank Statement Import Sheet Parser" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Account: %s; " +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__allow_back +msgid "Allow Back" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__amount_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__amount_column +msgid "Amount column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__amount_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__amount_column +msgid "Amount of transaction in journal's currency" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__balance_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__balance_column +msgid "Balance after transaction in journal's currency" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__balance_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__balance_column +msgid "Balance column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-4 +msgid "Baltic (Latin-4 / ISO 8859-4)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_account_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_account_column +msgid "Bank Account column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_name_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_name_column +msgid "Bank Name column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Bank: %s; " +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-2 +msgid "Central European (Latin-2 / ISO 8859-2)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_tree +msgid "Columns" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__create_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__create_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__create_uid +msgid "Created by" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__create_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__create_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__create_date +msgid "Created on" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__credit_value +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__credit_value +msgid "Credit value" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__currency_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__currency_column +msgid "Currency column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__koi8_r +msgid "Cyrillic (KOI8-R)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__koi8_u +msgid "Cyrillic (KOI8-U)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__windows-1251 +msgid "Cyrillic (Windows-1251)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_value +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_value +msgid "Debit value" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Debit/Credit column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_credit_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_credit_column +msgid "Debit/credit column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__float_decimal_sep +msgid "Decimals Separator" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_journal_creation__default_sheet_mapping_id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id +msgid "Default Sheet Mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__delimiter +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__delimiter +msgid "Delimiter" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__description_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__description_column +msgid "Description column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__display_name +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__display_name +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__display_name +msgid "Display Name" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__file_encoding +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__file_encoding +msgid "Encoding" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__attachment_ids +msgid "Files" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__header +msgid "Header" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__id +msgid "ID" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Import" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.actions.act_window,name:account_bank_statement_import_txt_xlsx.action_account_bank_statement_import_sheet_mapping_wizard +msgid "Import Mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/wizards/account_bank_statement_import_sheet_mapping_wizard.py:0 +#, python-format +msgid "Imported Mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__currency_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__currency_column +msgid "" +"In case statement is multi-currency, column to get currency of transaction " +"from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_currency_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_currency_column +msgid "" +"In case statement provides original currency for transactions with automatic" +" currency conversion, column to get original currency of transaction from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_amount_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_amount_column +msgid "" +"In case statement provides original currency for transactions with automatic" +" currency conversion, column to get original transaction amount in original " +"transaction currency from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__shift_jis +msgid "Japanese (Shift JIS)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_journal +msgid "Journal" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping____last_update +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard____last_update +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__write_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__write_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__write_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__write_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/wizards/account_bank_statement_import_sheet_mapping_wizard.py:0 +#, python-format +msgid "Mapping from %s" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__n/a +#, python-format +msgid "N/A" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__name +msgid "Name" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__notes_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__notes_column +msgid "Notes column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Options" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_amount_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_amount_column +msgid "Original amount column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_currency_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_currency_column +msgid "Original currency column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__partner_name_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__partner_name_column +msgid "Partner Name column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_name_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_name_column +msgid "Partner's bank" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_account_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_account_column +msgid "Partner's bank account" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__reference_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__reference_column +msgid "Reference column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Select a statement file to import mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import__sheet_mapping_id +msgid "Sheet mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_credit_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_credit_column +msgid "" +"Some statement formats use absolute amount value and indicate signof the " +"transaction by specifying if it was a debit or a credit one" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__state +msgid "State" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.view_account_journal_form_n43 +msgid "Statement Import Map" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.actions.act_window,name:account_bank_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings +#: model:ir.ui.menu,name:account_bank_statement_import_txt_xlsx.menu_statement_import_sheet_mapping +msgid "Statement Sheet Mappings" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_view +msgid "TXT/CSV/XLSX mapping:" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__quotechar +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__quotechar +msgid "Text qualifier" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__float_thousands_sep +msgid "Thousands Separator" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__timestamp_format +msgid "Timestamp Format" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__timestamp_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__timestamp_column +msgid "Timestamp column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__big5 +msgid "Traditional Chinese (big5)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Transaction ID: %s; " +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-16 +msgid "UTF-16" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-16-sig +msgid "UTF-16 (with BOM)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-8-sig +msgid "UTF-8 (with BOM)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__gb18030 +msgid "Unified Chinese (gb18030)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__transaction_id_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__transaction_id_column +msgid "Unique transaction ID column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Upload Files" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__credit_value +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__credit_value +msgid "Value of debit/credit column that indicates if it's a credit" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_value +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_value +msgid "Value of debit/credit column that indicates if it's a debit" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-1 +msgid "Western (Latin-1 / ISO 8859-1)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__windows-1252 +msgid "Western (Windows-1252)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__comma +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__comma +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__comma +msgid "comma (,)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__dot +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__dot +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__dot +msgid "dot (.)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__none +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__none +msgid "none" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__semicolon +msgid "semicolon (;)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__space +msgid "space" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__tab +msgid "tab" +msgstr "" diff --git a/account_statement_import_txt_xlsx/i18n/nl.po b/account_statement_import_txt_xlsx/i18n/nl.po new file mode 100644 index 000000000..03783e195 --- /dev/null +++ b/account_statement_import_txt_xlsx/i18n/nl.po @@ -0,0 +1,521 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_bank_statement_import_txt_xlsx +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2021-01-22 23:45+0000\n" +"Last-Translator: Bosd \n" +"Language-Team: none\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.3.2\n" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_mapping +msgid "Account Bank Statement Import Sheet Mapping" +msgstr "Bankafschrift import mapping" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_mapping_wizard +#, fuzzy +msgid "Account Bank Statement Import Sheet Mapping Wizard" +msgstr "Bankafschrift mapping guids" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_parser +#, fuzzy +msgid "Account Bank Statement Import Sheet Parser" +msgstr "Bankafschrift parser" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Account: %s; " +msgstr "Rekening: %s; " + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__allow_back +msgid "Allow Back" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__amount_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__amount_column +msgid "Amount column" +msgstr "Bedrag kolom" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__amount_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__amount_column +msgid "Amount of transaction in journal's currency" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__balance_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__balance_column +msgid "Balance after transaction in journal's currency" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__balance_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__balance_column +msgid "Balance column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-4 +msgid "Baltic (Latin-4 / ISO 8859-4)" +msgstr "Baltic (Latin-4 / ISO 8859-4)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_account_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_account_column +msgid "Bank Account column" +msgstr "Bankrekening Kolom" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_name_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_name_column +msgid "Bank Name column" +msgstr "Bank naam kolom" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Bank: %s; " +msgstr "Bank: %s; " + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-2 +msgid "Central European (Latin-2 / ISO 8859-2)" +msgstr "Central European (Latin-2 / ISO 8859-2)" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_tree +msgid "Columns" +msgstr "Kolommen" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__create_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__create_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__create_uid +msgid "Created by" +msgstr "Aangemaakt door" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__create_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__create_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__create_date +msgid "Created on" +msgstr "Aangemaakt op" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__credit_value +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__credit_value +msgid "Credit value" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__currency_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__currency_column +msgid "Currency column" +msgstr "Valuta Kolom" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__koi8_r +msgid "Cyrillic (KOI8-R)" +msgstr "Cyrillic (KOI8-R)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__koi8_u +msgid "Cyrillic (KOI8-U)" +msgstr "Cyrillic (KOI8-U)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__windows-1251 +msgid "Cyrillic (Windows-1251)" +msgstr "Cyrillic (Windows-1251)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_value +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_value +msgid "Debit value" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Debit/Credit column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_credit_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_credit_column +msgid "Debit/credit column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__float_decimal_sep +msgid "Decimals Separator" +msgstr "Decimaal scheidingsteken" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_journal_creation__default_sheet_mapping_id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id +msgid "Default Sheet Mapping" +msgstr "Standaard afschrift mapping" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__delimiter +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__delimiter +msgid "Delimiter" +msgstr "Scheidingsteken" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__description_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__description_column +msgid "Description column" +msgstr "Kolom omschrijving" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__display_name +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__display_name +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__display_name +msgid "Display Name" +msgstr "Weergavenaam" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__file_encoding +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__file_encoding +msgid "Encoding" +msgstr "Codering" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__attachment_ids +msgid "Files" +msgstr "Bestanden" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__header +msgid "Header" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__id +msgid "ID" +msgstr "ID" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Import" +msgstr "Import" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "Importeer bankafschrift" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.actions.act_window,name:account_bank_statement_import_txt_xlsx.action_account_bank_statement_import_sheet_mapping_wizard +msgid "Import Mapping" +msgstr "Import Mapping" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/wizards/account_bank_statement_import_sheet_mapping_wizard.py:0 +#, python-format +msgid "Imported Mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__currency_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__currency_column +msgid "" +"In case statement is multi-currency, column to get currency of transaction " +"from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_currency_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_currency_column +msgid "" +"In case statement provides original currency for transactions with automatic" +" currency conversion, column to get original currency of transaction from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_amount_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_amount_column +msgid "" +"In case statement provides original currency for transactions with automatic" +" currency conversion, column to get original transaction amount in original " +"transaction currency from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__shift_jis +msgid "Japanese (Shift JIS)" +msgstr "Japanese (Shift JIS)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_journal +msgid "Journal" +msgstr "Dagboek" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping____last_update +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard____last_update +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser____last_update +msgid "Last Modified on" +msgstr "Laatst gewijzigt op" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__write_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__write_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__write_uid +msgid "Last Updated by" +msgstr "Laatst gewijzigt door" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__write_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__write_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__write_date +#, fuzzy +msgid "Last Updated on" +msgstr "Laatst bewerkt door" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/wizards/account_bank_statement_import_sheet_mapping_wizard.py:0 +#, python-format +msgid "Mapping from %s" +msgstr "Mapping van %s" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__n/a +#, python-format +msgid "N/A" +msgstr "N.V.T." + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__name +msgid "Name" +msgstr "Naam" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__notes_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__notes_column +msgid "Notes column" +msgstr "Notitie Kolom" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Options" +msgstr "opties" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_amount_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_amount_column +msgid "Original amount column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_currency_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_currency_column +msgid "Original currency column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__partner_name_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__partner_name_column +msgid "Partner Name column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_name_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_name_column +msgid "Partner's bank" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_account_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_account_column +msgid "Partner's bank account" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__reference_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__reference_column +msgid "Reference column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Select a statement file to import mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import__sheet_mapping_id +msgid "Sheet mapping" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_credit_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_credit_column +msgid "" +"Some statement formats use absolute amount value and indicate signof the " +"transaction by specifying if it was a debit or a credit one" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__state +msgid "State" +msgstr "Status" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.view_account_journal_form_n43 +msgid "Statement Import Map" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.actions.act_window,name:account_bank_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings +#: model:ir.ui.menu,name:account_bank_statement_import_txt_xlsx.menu_statement_import_sheet_mapping +msgid "Statement Sheet Mappings" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_view +msgid "TXT/CSV/XLSX mapping:" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__quotechar +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__quotechar +msgid "Text qualifier" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__float_thousands_sep +msgid "Thousands Separator" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__timestamp_format +msgid "Timestamp Format" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__timestamp_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__timestamp_column +msgid "Timestamp column" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__big5 +msgid "Traditional Chinese (big5)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Transaction ID: %s; " +msgstr "Transactie ID: %s; " + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-16 +msgid "UTF-16" +msgstr "UTF-16" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-16-sig +msgid "UTF-16 (with BOM)" +msgstr "UTF-16 (with BOM)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-8 +msgid "UTF-8" +msgstr "UTF-8" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-8-sig +msgid "UTF-8 (with BOM)" +msgstr "UTF-8 (with BOM)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__gb18030 +msgid "Unified Chinese (gb18030)" +msgstr "Unified Chinese (gb18030)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__transaction_id_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__transaction_id_column +msgid "Unique transaction ID column" +msgstr "Unieke transactie ID kolom" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Upload Files" +msgstr "Upload bestanden" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__credit_value +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__credit_value +msgid "Value of debit/credit column that indicates if it's a credit" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_value +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_value +msgid "Value of debit/credit column that indicates if it's a debit" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-1 +msgid "Western (Latin-1 / ISO 8859-1)" +msgstr "Western (Latin-1 / ISO 8859-1)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__windows-1252 +msgid "Western (Windows-1252)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__comma +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__comma +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__comma +msgid "comma (,)" +msgstr "comma (,)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__dot +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__dot +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__dot +msgid "dot (.)" +msgstr "punt (,)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__none +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__none +msgid "none" +msgstr "geen" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__semicolon +msgid "semicolon (;)" +msgstr "puntcomma (;)" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__space +msgid "space" +msgstr "spatie" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__tab +msgid "tab" +msgstr "tab" diff --git a/account_statement_import_txt_xlsx/i18n/zh_CN.po b/account_statement_import_txt_xlsx/i18n/zh_CN.po new file mode 100644 index 000000000..41123037b --- /dev/null +++ b/account_statement_import_txt_xlsx/i18n/zh_CN.po @@ -0,0 +1,518 @@ +# Translation of Odoo Server. +# This file contains the translation of the following modules: +# * account_bank_statement_import_txt_xlsx +# +msgid "" +msgstr "" +"Project-Id-Version: Odoo Server 13.0\n" +"Report-Msgid-Bugs-To: \n" +"PO-Revision-Date: 2020-08-07 04:59+0000\n" +"Last-Translator: Dong \n" +"Language-Team: none\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: \n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 3.10\n" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_mapping +msgid "Account Bank Statement Import Sheet Mapping" +msgstr "银行对帐表格导入方案" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_mapping_wizard +msgid "Account Bank Statement Import Sheet Mapping Wizard" +msgstr "银行对帐表格导入映射向导" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import_sheet_parser +msgid "Account Bank Statement Import Sheet Parser" +msgstr "银行对帐表格导入解析" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Account: %s; " +msgstr "账户: %s; " + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__allow_back +msgid "Allow Back" +msgstr "允许返回" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__amount_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__amount_column +msgid "Amount column" +msgstr "交易金额列" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__amount_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__amount_column +msgid "Amount of transaction in journal's currency" +msgstr "原币的交易金额" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__balance_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__balance_column +msgid "Balance after transaction in journal's currency" +msgstr "交易后的原币余额" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__balance_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__balance_column +msgid "Balance column" +msgstr "余额列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-4 +msgid "Baltic (Latin-4 / ISO 8859-4)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_account_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_account_column +msgid "Bank Account column" +msgstr "对方银行账号列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_name_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_name_column +msgid "Bank Name column" +msgstr "对方开户行列名" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Bank: %s; " +msgstr "银行 %s; " + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-2 +msgid "Central European (Latin-2 / ISO 8859-2)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_tree +msgid "Columns" +msgstr "列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__create_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__create_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__create_uid +msgid "Created by" +msgstr "创建人" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__create_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__create_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__create_date +msgid "Created on" +msgstr "创建时间" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__credit_value +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__credit_value +msgid "Credit value" +msgstr "贷方标志值" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__currency_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__currency_column +msgid "Currency column" +msgstr "币别列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__koi8_r +msgid "Cyrillic (KOI8-R)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__koi8_u +msgid "Cyrillic (KOI8-U)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__windows-1251 +msgid "Cyrillic (Windows-1251)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_value +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_value +msgid "Debit value" +msgstr "借方标志值" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Debit/Credit column" +msgstr "借贷标志列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_credit_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_credit_column +msgid "Debit/credit column" +msgstr "借贷标志列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__float_decimal_sep +msgid "Decimals Separator" +msgstr "小数分隔符" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_journal_creation__default_sheet_mapping_id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_journal__default_sheet_mapping_id +msgid "Default Sheet Mapping" +msgstr "默认表格导入方案" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__delimiter +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__delimiter +msgid "Delimiter" +msgstr "分隔符" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__description_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__description_column +msgid "Description column" +msgstr "摘要列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__display_name +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__display_name +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__display_name +msgid "Display Name" +msgstr "显示名称" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__file_encoding +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__file_encoding +msgid "Encoding" +msgstr "表格编码格式" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__attachment_ids +msgid "Files" +msgstr "文件" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__header +msgid "Header" +msgstr "头部" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__id +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__id +msgid "ID" +msgstr "ID" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Import" +msgstr "导入" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_bank_statement_import +msgid "Import Bank Statement" +msgstr "导入银行对账单" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.actions.act_window,name:account_bank_statement_import_txt_xlsx.action_account_bank_statement_import_sheet_mapping_wizard +msgid "Import Mapping" +msgstr "导入方案" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/wizards/account_bank_statement_import_sheet_mapping_wizard.py:0 +#, python-format +msgid "Imported Mapping" +msgstr "已导入方案" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__currency_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__currency_column +msgid "" +"In case statement is multi-currency, column to get currency of transaction " +"from" +msgstr "如果对账单包含多币别,指定获取交易币别的列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_currency_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_currency_column +msgid "" +"In case statement provides original currency for transactions with automatic " +"currency conversion, column to get original currency of transaction from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_amount_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_amount_column +msgid "" +"In case statement provides original currency for transactions with automatic " +"currency conversion, column to get original transaction amount in original " +"transaction currency from" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__shift_jis +msgid "Japanese (Shift JIS)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model,name:account_bank_statement_import_txt_xlsx.model_account_journal +msgid "Journal" +msgstr "资金账户" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping____last_update +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard____last_update +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser____last_update +msgid "Last Modified on" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__write_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__write_uid +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__write_uid +msgid "Last Updated by" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__write_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__write_date +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_parser__write_date +msgid "Last Updated on" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/wizards/account_bank_statement_import_sheet_mapping_wizard.py:0 +#, python-format +msgid "Mapping from %s" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__n/a +#, python-format +msgid "N/A" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__name +msgid "Name" +msgstr "名称" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__notes_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__notes_column +msgid "Notes column" +msgstr "备注列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Options" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_amount_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_amount_column +msgid "Original amount column" +msgstr "原币金额列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__original_currency_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__original_currency_column +msgid "Original currency column" +msgstr "币别列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__partner_name_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__partner_name_column +msgid "Partner Name column" +msgstr "对方账户名列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_name_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_name_column +msgid "Partner's bank" +msgstr "对方开户行" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__bank_account_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__bank_account_column +msgid "Partner's bank account" +msgstr "对方银行账号" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__reference_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__reference_column +msgid "Reference column" +msgstr "编号列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Select a statement file to import mapping" +msgstr "选择要导入的银行对账单" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import__sheet_mapping_id +msgid "Sheet mapping" +msgstr "表格方案" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_credit_column +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_credit_column +msgid "" +"Some statement formats use absolute amount value and indicate signof the " +"transaction by specifying if it was a debit or a credit one" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__state +msgid "State" +msgstr "状态" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.view_account_journal_form_n43 +msgid "Statement Import Map" +msgstr "银行对账导入方案" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.actions.act_window,name:account_bank_statement_import_txt_xlsx.action_statement_import_sheet_report_mappings +#: model:ir.ui.menu,name:account_bank_statement_import_txt_xlsx.menu_statement_import_sheet_mapping +msgid "Statement Sheet Mappings" +msgstr "银行对账表格导入方案" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_view +msgid "TXT/CSV/XLSX mapping:" +msgstr "TXT/CSV/XLSX 表格导入方案:" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__quotechar +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__quotechar +msgid "Text qualifier" +msgstr "文本限定符" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__float_thousands_sep +msgid "Thousands Separator" +msgstr "千位符" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__timestamp_format +msgid "Timestamp Format" +msgstr "日期格式" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__timestamp_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__timestamp_column +msgid "Timestamp column" +msgstr "日期列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__big5 +msgid "Traditional Chinese (big5)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: code:addons/account_bank_statement_import_txt_xlsx/models/account_bank_statement_import_sheet_parser.py:0 +#, python-format +msgid "Transaction ID: %s; " +msgstr "交易 ID: %s; " + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-16 +msgid "UTF-16" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-16-sig +msgid "UTF-16 (with BOM)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-8 +msgid "UTF-8" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__utf-8-sig +msgid "UTF-8 (with BOM)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__gb18030 +msgid "Unified Chinese (gb18030)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__transaction_id_column +#: model:ir.model.fields,field_description:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__transaction_id_column +msgid "Unique transaction ID column" +msgstr "唯一交易ID列名" + +#. module: account_bank_statement_import_txt_xlsx +#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_txt_xlsx.account_bank_statement_import_sheet_mapping_wizard_form +msgid "Upload Files" +msgstr "上传文件" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__credit_value +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__credit_value +msgid "Value of debit/credit column that indicates if it's a credit" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping__debit_value +#: model:ir.model.fields,help:account_bank_statement_import_txt_xlsx.field_account_bank_statement_import_sheet_mapping_wizard__debit_value +msgid "Value of debit/credit column that indicates if it's a debit" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__iso-8859-1 +msgid "Western (Latin-1 / ISO 8859-1)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__file_encoding__windows-1252 +msgid "Western (Windows-1252)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__comma +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__comma +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__comma +msgid "comma (,)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__dot +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__dot +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__dot +msgid "dot (.)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_decimal_sep__none +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__float_thousands_sep__none +msgid "none" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__semicolon +msgid "semicolon (;)" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__space +msgid "space" +msgstr "" + +#. module: account_bank_statement_import_txt_xlsx +#: model:ir.model.fields.selection,name:account_bank_statement_import_txt_xlsx.selection__account_bank_statement_import_sheet_mapping__delimiter__tab +msgid "tab" +msgstr "" diff --git a/account_statement_import_txt_xlsx/models/__init__.py b/account_statement_import_txt_xlsx/models/__init__.py new file mode 100644 index 000000000..af86f7c78 --- /dev/null +++ b/account_statement_import_txt_xlsx/models/__init__.py @@ -0,0 +1,6 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import account_statement_import_sheet_mapping +from . import account_statement_import_sheet_parser +from . import account_statement_import +from . import account_journal diff --git a/account_statement_import_txt_xlsx/models/account_journal.py b/account_statement_import_txt_xlsx/models/account_journal.py new file mode 100644 index 000000000..b6c3f86c3 --- /dev/null +++ b/account_statement_import_txt_xlsx/models/account_journal.py @@ -0,0 +1,18 @@ +# Copyright 2019 ForgeFlow, S.L. +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import fields, models + + +class AccountJournal(models.Model): + _inherit = "account.journal" + + default_sheet_mapping_id = fields.Many2one( + comodel_name="account.statement.import.sheet.mapping", + ) + + def _get_bank_statements_available_import_formats(self): + res = super()._get_bank_statements_available_import_formats() + res.append("TXT/CSV/XSLX") + return res diff --git a/account_statement_import_txt_xlsx/models/account_statement_import.py b/account_statement_import_txt_xlsx/models/account_statement_import.py new file mode 100644 index 000000000..be961fb17 --- /dev/null +++ b/account_statement_import_txt_xlsx/models/account_statement_import.py @@ -0,0 +1,36 @@ +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import logging + +from odoo import fields, models + +_logger = logging.getLogger(__name__) + + +class AccountStatementImport(models.TransientModel): + _inherit = "account.statement.import" + + def _get_default_mapping_id(self): + return ( + self.env["account.journal"] + .browse(self.env.context.get("journal_id")) + .default_sheet_mapping_id + ) + + sheet_mapping_id = fields.Many2one( + string="Sheet mapping", + comodel_name="account.statement.import.sheet.mapping", + default=_get_default_mapping_id, + ) + + def _parse_file(self, data_file): + self.ensure_one() + try: + Parser = self.env["account.statement.import.sheet.parser"] + return Parser.parse(data_file, self.sheet_mapping_id) + except BaseException: + if self.env.context.get("account_statement_import_txt_xlsx_test"): + raise + _logger.warning("Sheet parser error", exc_info=True) + return super()._parse_file(data_file) diff --git a/account_statement_import_txt_xlsx/models/account_statement_import_sheet_mapping.py b/account_statement_import_txt_xlsx/models/account_statement_import_sheet_mapping.py new file mode 100644 index 000000000..4d7e7b579 --- /dev/null +++ b/account_statement_import_txt_xlsx/models/account_statement_import_sheet_mapping.py @@ -0,0 +1,166 @@ +# Copyright 2019 ForgeFlow, S.L. +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from odoo import api, fields, models + + +class AccountStatementImportSheetMapping(models.Model): + _name = "account.statement.import.sheet.mapping" + _description = "Bank Statement Import Sheet Mapping" + + name = fields.Char( + required=True, + ) + float_thousands_sep = fields.Selection( + string="Thousands Separator", + selection=[("dot", "dot (.)"), ("comma", "comma (,)"), ("none", "none")], + default="dot", + ) + float_decimal_sep = fields.Selection( + string="Decimals Separator", + selection=[("dot", "dot (.)"), ("comma", "comma (,)"), ("none", "none")], + default="comma", + ) + file_encoding = fields.Selection( + string="Encoding", + selection=[ + ("utf-8", "UTF-8"), + ("utf-8-sig", "UTF-8 (with BOM)"), + ("utf-16", "UTF-16"), + ("utf-16-sig", "UTF-16 (with BOM)"), + ("windows-1252", "Western (Windows-1252)"), + ("iso-8859-1", "Western (Latin-1 / ISO 8859-1)"), + ("iso-8859-2", "Central European (Latin-2 / ISO 8859-2)"), + ("iso-8859-4", "Baltic (Latin-4 / ISO 8859-4)"), + ("big5", "Traditional Chinese (big5)"), + ("gb18030", "Unified Chinese (gb18030)"), + ("shift_jis", "Japanese (Shift JIS)"), + ("windows-1251", "Cyrillic (Windows-1251)"), + ("koi8_r", "Cyrillic (KOI8-R)"), + ("koi8_u", "Cyrillic (KOI8-U)"), + ], + default="utf-8", + ) + delimiter = fields.Selection( + string="Delimiter", + selection=[ + ("dot", "dot (.)"), + ("comma", "comma (,)"), + ("semicolon", "semicolon (;)"), + ("tab", "tab"), + ("space", "space"), + ("n/a", "N/A"), + ], + default="comma", + ) + quotechar = fields.Char(string="Text qualifier", size=1, default='"') + timestamp_format = fields.Char(string="Timestamp Format", required=True) + timestamp_column = fields.Char(string="Timestamp column", required=True) + currency_column = fields.Char( + string="Currency column", + help=( + "In case statement is multi-currency, column to get currency of " + "transaction from" + ), + ) + amount_column = fields.Char( + string="Amount column", + required=True, + help="Amount of transaction in journal's currency", + ) + balance_column = fields.Char( + string="Balance column", + help="Balance after transaction in journal's currency", + ) + original_currency_column = fields.Char( + string="Original currency column", + help=( + "In case statement provides original currency for transactions " + "with automatic currency conversion, column to get original " + "currency of transaction from" + ), + ) + original_amount_column = fields.Char( + string="Original amount column", + help=( + "In case statement provides original currency for transactions " + "with automatic currency conversion, column to get original " + "transaction amount in original transaction currency from" + ), + ) + debit_credit_column = fields.Char( + string="Debit/credit column", + help=( + "Some statement formats use absolute amount value and indicate sign" + "of the transaction by specifying if it was a debit or a credit one" + ), + ) + debit_value = fields.Char( + string="Debit value", + help="Value of debit/credit column that indicates if it's a debit", + default="D", + ) + credit_value = fields.Char( + string="Credit value", + help="Value of debit/credit column that indicates if it's a credit", + default="C", + ) + transaction_id_column = fields.Char( + string="Unique transaction ID column", + ) + description_column = fields.Char( + string="Description column", + ) + notes_column = fields.Char( + string="Notes column", + ) + reference_column = fields.Char( + string="Reference column", + ) + partner_name_column = fields.Char( + string="Partner Name column", + ) + bank_name_column = fields.Char( + string="Bank Name column", + help="Partner's bank", + ) + bank_account_column = fields.Char( + string="Bank Account column", + help="Partner's bank account", + ) + + @api.onchange("float_thousands_sep") + def onchange_thousands_separator(self): + if "dot" == self.float_thousands_sep == self.float_decimal_sep: + self.float_decimal_sep = "comma" + elif "comma" == self.float_thousands_sep == self.float_decimal_sep: + self.float_decimal_sep = "dot" + + @api.onchange("float_decimal_sep") + def onchange_decimal_separator(self): + if "dot" == self.float_thousands_sep == self.float_decimal_sep: + self.float_thousands_sep = "comma" + elif "comma" == self.float_thousands_sep == self.float_decimal_sep: + self.float_thousands_sep = "dot" + + def _get_float_separators(self): + self.ensure_one() + separators = { + "dot": ".", + "comma": ",", + "none": "", + } + return ( + separators[self.float_thousands_sep], + separators[self.float_decimal_sep], + ) + + @api.model + def _decode_column_delimiter_character(self, delimiter): + return ( + {"dot": ".", "comma": ",", "semicolon": ";", "tab": "\t", "space": " "} + ).get(delimiter) + + def _get_column_delimiter_character(self): + return self._decode_column_delimiter_character(self.delimiter) diff --git a/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py b/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py new file mode 100644 index 000000000..460bfe565 --- /dev/null +++ b/account_statement_import_txt_xlsx/models/account_statement_import_sheet_parser.py @@ -0,0 +1,384 @@ +# Copyright 2019 ForgeFlow, S.L. +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import itertools +import logging +from datetime import datetime +from decimal import Decimal +from io import StringIO + +from odoo import _, api, models + +_logger = logging.getLogger(__name__) + +try: + from csv import reader + + import xlrd + from xlrd.xldate import xldate_as_datetime +except (ImportError, IOError) as err: # pragma: no cover + _logger.error(err) + + +class AccountStatementImportSheetParser(models.TransientModel): + _name = "account.statement.import.sheet.parser" + _description = "Bank Statement Import Sheet Parser" + + @api.model + def parse_header(self, data_file, encoding, csv_options): + try: + workbook = xlrd.open_workbook( + file_contents=data_file, + encoding_override=encoding if encoding else None, + ) + sheet = workbook.sheet_by_index(0) + values = sheet.row_values(0) + return [str(value) for value in values] + except xlrd.XLRDError: + pass + + data = StringIO(data_file.decode(encoding or "utf-8")) + csv_data = reader(data, **csv_options) + return list(next(csv_data)) + + @api.model + def parse(self, data_file, mapping): + journal = self.env["account.journal"].browse(self.env.context.get("journal_id")) + currency_code = (journal.currency_id or journal.company_id.currency_id).name + account_number = journal.bank_account_id.acc_number + + lines = self._parse_lines(mapping, data_file, currency_code) + if not lines: + return currency_code, account_number, [{"transactions": []}] + + lines = list(sorted(lines, key=lambda line: line["timestamp"])) + first_line = lines[0] + last_line = lines[-1] + data = { + "date": first_line["timestamp"].date(), + } + + if mapping.balance_column: + balance_start = first_line["balance"] + balance_start -= first_line["amount"] + balance_end = last_line["balance"] + data.update( + { + "balance_start": float(balance_start), + "balance_end_real": float(balance_end), + } + ) + + transactions = list( + itertools.chain.from_iterable( + map(lambda line: self._convert_line_to_transactions(line), lines) + ) + ) + data.update({"transactions": transactions}) + + return currency_code, account_number, [data] + + def _parse_lines(self, mapping, data_file, currency_code): + columns = dict() + try: + workbook = xlrd.open_workbook( + file_contents=data_file, + encoding_override=( + mapping.file_encoding if mapping.file_encoding else None + ), + ) + csv_or_xlsx = ( + workbook, + workbook.sheet_by_index(0), + ) + except xlrd.XLRDError: + csv_options = {} + csv_delimiter = mapping._get_column_delimiter_character() + if csv_delimiter: + csv_options["delimiter"] = csv_delimiter + if mapping.quotechar: + csv_options["quotechar"] = mapping.quotechar + csv_or_xlsx = reader( + StringIO(data_file.decode(mapping.file_encoding or "utf-8")), + **csv_options + ) + + if isinstance(csv_or_xlsx, tuple): + header = [str(value) for value in csv_or_xlsx[1].row_values(0)] + else: + header = [value.strip() for value in next(csv_or_xlsx)] + columns["timestamp_column"] = header.index(mapping.timestamp_column) + columns["currency_column"] = ( + header.index(mapping.currency_column) if mapping.currency_column else None + ) + columns["amount_column"] = header.index(mapping.amount_column) + columns["balance_column"] = ( + header.index(mapping.balance_column) if mapping.balance_column else None + ) + columns["original_currency_column"] = ( + header.index(mapping.original_currency_column) + if mapping.original_currency_column + else None + ) + columns["original_amount_column"] = ( + header.index(mapping.original_amount_column) + if mapping.original_amount_column + else None + ) + columns["debit_credit_column"] = ( + header.index(mapping.debit_credit_column) + if mapping.debit_credit_column + else None + ) + columns["transaction_id_column"] = ( + header.index(mapping.transaction_id_column) + if mapping.transaction_id_column + else None + ) + columns["description_column"] = ( + header.index(mapping.description_column) + if mapping.description_column + else None + ) + columns["notes_column"] = ( + header.index(mapping.notes_column) if mapping.notes_column else None + ) + columns["reference_column"] = ( + header.index(mapping.reference_column) if mapping.reference_column else None + ) + columns["partner_name_column"] = ( + header.index(mapping.partner_name_column) + if mapping.partner_name_column + else None + ) + columns["bank_name_column"] = ( + header.index(mapping.bank_name_column) if mapping.bank_name_column else None + ) + columns["bank_account_column"] = ( + header.index(mapping.bank_account_column) + if mapping.bank_account_column + else None + ) + return self._parse_rows(mapping, currency_code, csv_or_xlsx, columns) + + def _parse_rows(self, mapping, currency_code, csv_or_xlsx, columns): # noqa: C901 + if isinstance(csv_or_xlsx, tuple): + rows = range(1, csv_or_xlsx[1].nrows) + else: + rows = csv_or_xlsx + + lines = [] + for row in rows: + if isinstance(csv_or_xlsx, tuple): + book = csv_or_xlsx[0] + sheet = csv_or_xlsx[1] + values = [] + for col_index in range(sheet.row_len(row)): + cell_type = sheet.cell_type(row, col_index) + cell_value = sheet.cell_value(row, col_index) + if cell_type == xlrd.XL_CELL_DATE: + cell_value = xldate_as_datetime(cell_value, book.datemode) + values.append(cell_value) + else: + values = list(row) + + timestamp = values[columns["timestamp_column"]] + currency = ( + values[columns["currency_column"]] + if columns["currency_column"] is not None + else currency_code + ) + amount = values[columns["amount_column"]] + balance = ( + values[columns["balance_column"]] + if columns["balance_column"] is not None + else None + ) + original_currency = ( + values[columns["original_currency_column"]] + if columns["original_currency_column"] is not None + else None + ) + original_amount = ( + values[columns["original_amount_column"]] + if columns["original_amount_column"] is not None + else None + ) + debit_credit = ( + values[columns["debit_credit_column"]] + if columns["debit_credit_column"] is not None + else None + ) + transaction_id = ( + values[columns["transaction_id_column"]] + if columns["transaction_id_column"] is not None + else None + ) + description = ( + values[columns["description_column"]] + if columns["description_column"] is not None + else None + ) + notes = ( + values[columns["notes_column"]] + if columns["notes_column"] is not None + else None + ) + reference = ( + values[columns["reference_column"]] + if columns["reference_column"] is not None + else None + ) + partner_name = ( + values[columns["partner_name_column"]] + if columns["partner_name_column"] is not None + else None + ) + bank_name = ( + values[columns["bank_name_column"]] + if columns["bank_name_column"] is not None + else None + ) + bank_account = ( + values[columns["bank_account_column"]] + if columns["bank_account_column"] is not None + else None + ) + + if currency != currency_code: + continue + + if isinstance(timestamp, str): + timestamp = datetime.strptime(timestamp, mapping.timestamp_format) + + amount = self._parse_decimal(amount, mapping) + if balance: + balance = self._parse_decimal(balance, mapping) + else: + balance = None + + if debit_credit: + amount = amount.copy_abs() + if debit_credit == mapping.debit_value: + amount = -amount + + if original_amount: + original_amount = self._parse_decimal( + original_amount, mapping + ).copy_sign(amount) + else: + original_amount = 0.0 + + line = { + "timestamp": timestamp, + "amount": amount, + "currency": currency, + "original_amount": original_amount, + "original_currency": original_currency, + } + if balance is not None: + line["balance"] = balance + if transaction_id is not None: + line["transaction_id"] = transaction_id + if description is not None: + line["description"] = description + if notes is not None: + line["notes"] = notes + if reference is not None: + line["reference"] = reference + if partner_name is not None: + line["partner_name"] = partner_name + if bank_name is not None: + line["bank_name"] = bank_name + if bank_account is not None: + line["bank_account"] = bank_account + lines.append(line) + return lines + + @api.model + def _convert_line_to_transactions(self, line): # noqa: C901 + """Hook for extension""" + timestamp = line["timestamp"] + amount = line["amount"] + currency = line["currency"] + original_amount = line["original_amount"] + original_currency = line["original_currency"] + transaction_id = line.get("transaction_id") + description = line.get("description") + notes = line.get("notes") + reference = line.get("reference") + partner_name = line.get("partner_name") + bank_name = line.get("bank_name") + bank_account = line.get("bank_account") + + transaction = { + "date": timestamp, + "amount": str(amount), + } + + if original_currency == currency: + original_currency = None + if not amount: + amount = original_amount + original_amount = "0.0" + + if original_currency: + original_currency = self.env["res.currency"].search( + [("name", "=", original_currency)], + limit=1, + ) + if original_currency: + transaction["foreign_currency_id"] = original_currency.id + if original_amount: + transaction["amount_currency"] = str(original_amount) + + if currency: + currency = self.env["res.currency"].search( + [("name", "=", currency)], + limit=1, + ) + if currency: + transaction["currency_id"] = currency.id + + if transaction_id: + transaction["unique_import_id"] = "{}-{}".format( + transaction_id, + int(timestamp.timestamp()), + ) + + transaction["payment_ref"] = description or _("N/A") + if reference: + transaction["ref"] = reference + + note = "" + if bank_name: + note += _("Bank: %s; ") % (bank_name,) + if bank_account: + note += _("Account: %s; ") % (bank_account,) + if transaction_id: + note += _("Transaction ID: %s; ") % (transaction_id,) + if note and notes: + note = "{}\n{}".format(note, note.strip()) + elif note: + note = note.strip() + if note: + transaction["narration"] = note + + if partner_name: + transaction["partner_name"] = partner_name + if bank_account: + transaction["account_number"] = bank_account + + return [transaction] + + @api.model + def _parse_decimal(self, value, mapping): + if isinstance(value, Decimal): + return value + elif isinstance(value, float): + return Decimal(value) + thousands, decimal = mapping._get_float_separators() + value = value.replace(thousands, "") + value = value.replace(decimal, ".") + return Decimal(value) diff --git a/account_statement_import_txt_xlsx/readme/CONFIGURE.rst b/account_statement_import_txt_xlsx/readme/CONFIGURE.rst new file mode 100644 index 000000000..ca7a8b507 --- /dev/null +++ b/account_statement_import_txt_xlsx/readme/CONFIGURE.rst @@ -0,0 +1,4 @@ +To create TXT/CSV/XLSX statement sheet columns mapping: + +#. Open *Invoicing > Configuration > Accounting > Statement Sheet Mappings* +#. Create mapping(s) according to your online banking software statement format diff --git a/account_statement_import_txt_xlsx/readme/CONTRIBUTORS.rst b/account_statement_import_txt_xlsx/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..b5e09af68 --- /dev/null +++ b/account_statement_import_txt_xlsx/readme/CONTRIBUTORS.rst @@ -0,0 +1,15 @@ +* Alexis de Lattre +* Sebastien BEAU +* Tecnativa (https://www.tecnativa.com) + + * Vicent Cubells + * Victor M.M. Torres + +* ForgeFlow (https://www.forgeflow.com) + + * Jordi Ballester Alomar + * Miquel Raïch Regué + +* `CorporateHub `__ + + * Alexey Pelykh diff --git a/account_statement_import_txt_xlsx/readme/DESCRIPTION.rst b/account_statement_import_txt_xlsx/readme/DESCRIPTION.rst new file mode 100644 index 000000000..1862d60f1 --- /dev/null +++ b/account_statement_import_txt_xlsx/readme/DESCRIPTION.rst @@ -0,0 +1,2 @@ +This module allows you to import any TXT/CSV or XLSX file in Odoo as bank +statements. diff --git a/account_statement_import_txt_xlsx/readme/HISTORY.rst b/account_statement_import_txt_xlsx/readme/HISTORY.rst new file mode 100644 index 000000000..fe7b1addc --- /dev/null +++ b/account_statement_import_txt_xlsx/readme/HISTORY.rst @@ -0,0 +1,7 @@ +12.0.2.0.0 +~~~~~~~~~~ + +* [BREAKING] New mapping, please review mappings after upgrade. +* [BREAKING] Different bank accounts have to be used per each currency. +* [ADD] Support for both Statement and Activity reports. +* [ADD] Separate fee and currency exchange parsing. diff --git a/account_statement_import_txt_xlsx/readme/USAGE.rst b/account_statement_import_txt_xlsx/readme/USAGE.rst new file mode 100644 index 000000000..1ed86b40e --- /dev/null +++ b/account_statement_import_txt_xlsx/readme/USAGE.rst @@ -0,0 +1,4 @@ +To use this module, you need to: + +#. Get statement in TXT/CSV or XLSX from your online banking software +#. Go to Odoo and and import the statement file, selecting corresponding format diff --git a/account_statement_import_txt_xlsx/security/ir.model.access.csv b/account_statement_import_txt_xlsx/security/ir.model.access.csv new file mode 100644 index 000000000..aa8c3d955 --- /dev/null +++ b/account_statement_import_txt_xlsx/security/ir.model.access.csv @@ -0,0 +1,5 @@ +"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" +access_account_statement_import_sheet_mapping_manager,account.statement.import.sheet.mapping:account.group_account_manager,model_account_statement_import_sheet_mapping,account.group_account_manager,1,1,1,1 +access_account_statement_import_sheet_mapping_user,account.statement.import.sheet.mapping:account.group_account_user,model_account_statement_import_sheet_mapping,account.group_account_user,1,0,0,0 +access_account_statement_import_sheet_parser,account.statement.import.sheet.parser:account.group_account_user,model_account_statement_import_sheet_parser,account.group_account_user,1,1,1,1 +access_account_statement_import_sheet_mapping_wizard,Full access on account.statement.import.sheet.mapping.wizard,model_account_statement_import_sheet_mapping_wizard,account.group_account_user,1,1,1,1 diff --git a/account_statement_import_txt_xlsx/static/description/icon.png b/account_statement_import_txt_xlsx/static/description/icon.png new file mode 100644 index 0000000000000000000000000000000000000000..3a0328b516c4980e8e44cdb63fd945757ddd132d GIT binary patch literal 9455 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 z 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 Xviia!U7SGha1wx#SCgwmn*{w2TRX*I literal 0 HcmV?d00001 diff --git a/account_statement_import_txt_xlsx/static/description/index.html b/account_statement_import_txt_xlsx/static/description/index.html new file mode 100644 index 000000000..88ea98fa0 --- /dev/null +++ b/account_statement_import_txt_xlsx/static/description/index.html @@ -0,0 +1,472 @@ + + + + + + +Bank Statement TXT/CSV/XLSX Import + + + +
+

Bank Statement TXT/CSV/XLSX Import

+ + +

Beta License: AGPL-3 OCA/bank-statement-import Translate me on Weblate Try me on Runbot

+

This module allows you to import any TXT/CSV or XLSX file in Odoo as bank +statements.

+

Table of contents

+ +
+

Configuration

+

To create TXT/CSV/XLSX statement sheet columns mapping:

+
    +
  1. Open Invoicing > Configuration > Accounting > Statement Sheet Mappings
  2. +
  3. Create mapping(s) according to your online banking software statement format
  4. +
+
+
+

Usage

+

To use this module, you need to:

+
    +
  1. Get statement in TXT/CSV or XLSX from your online banking software
  2. +
  3. Go to Odoo and and import the statement file, selecting corresponding format
  4. +
+
+
+

Changelog

+
+

12.0.2.0.0

+
    +
  • [BREAKING] New mapping, please review mappings after upgrade.
  • +
  • [BREAKING] Different bank accounts have to be used per each currency.
  • +
  • [ADD] Support for both Statement and Activity reports.
  • +
  • [ADD] Separate fee and currency exchange parsing.
  • +
+
+
+
+

Bug Tracker

+

Bugs are tracked on GitHub Issues. +In case of trouble, please check there if your issue has already been reported. +If you spotted it first, help us smashing it by providing a detailed and welcomed +feedback.

+

Do not contact contributors directly about support or help with technical issues.

+
+
+

Credits

+
+

Authors

+
    +
  • ForgeFlow
  • +
  • CorporateHub
  • +
+
+
+

Contributors

+ +
+
+

Maintainers

+

This module is maintained by the OCA.

+Odoo Community Association +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

Current maintainer:

+

alexey-pelykh

+

This module is part of the OCA/bank-statement-import project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+
+ + diff --git a/account_statement_import_txt_xlsx/tests/__init__.py b/account_statement_import_txt_xlsx/tests/__init__.py new file mode 100644 index 000000000..426d68385 --- /dev/null +++ b/account_statement_import_txt_xlsx/tests/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import test_account_statement_import_txt_xlsx diff --git a/account_statement_import_txt_xlsx/tests/fixtures/balance.csv b/account_statement_import_txt_xlsx/tests/fixtures/balance.csv new file mode 100644 index 000000000..c6a000f0c --- /dev/null +++ b/account_statement_import_txt_xlsx/tests/fixtures/balance.csv @@ -0,0 +1,3 @@ +"Date","Label","Amount","Balance","Partner Name","Bank Account" +"12/15/2018","Your best supplier","-33.50","-23.50","John Doe","123456789" +"12/15/2018","Your payment","1,533.50","1,510.00","Azure Interior","" diff --git a/account_statement_import_txt_xlsx/tests/fixtures/debit_credit.csv b/account_statement_import_txt_xlsx/tests/fixtures/debit_credit.csv new file mode 100644 index 000000000..936e32aa8 --- /dev/null +++ b/account_statement_import_txt_xlsx/tests/fixtures/debit_credit.csv @@ -0,0 +1,3 @@ +"Date","Label","Amount","D/C","Balance","Partner Name","Bank Account" +"12/15/2018","Your best supplier","33.50","D","-23.50","John Doe","123456789" +"12/15/2018","Your payment","-1,533.50","C","1,510.00","Azure Interior","" diff --git a/account_statement_import_txt_xlsx/tests/fixtures/empty_statement_en.csv b/account_statement_import_txt_xlsx/tests/fixtures/empty_statement_en.csv new file mode 100644 index 000000000..696c59bab --- /dev/null +++ b/account_statement_import_txt_xlsx/tests/fixtures/empty_statement_en.csv @@ -0,0 +1 @@ +"Date","Label","Currency","Amount","Amount Currency","Partner Name","Bank Account" diff --git a/account_statement_import_txt_xlsx/tests/fixtures/empty_statement_en.xlsx b/account_statement_import_txt_xlsx/tests/fixtures/empty_statement_en.xlsx new file mode 100644 index 0000000000000000000000000000000000000000..5ca47652c2d0e6661f9bf8f0bc5ee7e0ab5e21e7 GIT binary patch literal 9041 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∨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 E1Br`?4gdfE literal 0 HcmV?d00001 diff --git a/account_statement_import_txt_xlsx/tests/test_account_statement_import_txt_xlsx.py b/account_statement_import_txt_xlsx/tests/test_account_statement_import_txt_xlsx.py new file mode 100644 index 000000000..9236b16f2 --- /dev/null +++ b/account_statement_import_txt_xlsx/tests/test_account_statement_import_txt_xlsx.py @@ -0,0 +1,345 @@ +# Copyright 2019 ForgeFlow, S.L. +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from base64 import b64encode +from os import path + +from odoo import fields +from odoo.exceptions import UserError +from odoo.tests import common + + +class TestAccountBankStatementImportTxtXlsx(common.TransactionCase): + def setUp(self): + super().setUp() + + self.now = fields.Datetime.now() + self.currency_eur = self.env.ref("base.EUR") + self.currency_usd = self.env.ref("base.USD") + self.sample_statement_map = self.env.ref( + "account_statement_import_txt_xlsx.sample_statement_map" + ) + self.AccountJournal = self.env["account.journal"] + self.AccountBankStatement = self.env["account.bank.statement"] + self.AccountStatementImport = self.env["account.statement.import"] + self.AccountStatementImportSheetMapping = self.env[ + "account.statement.import.sheet.mapping" + ] + self.AccountStatementImportSheetMappingWizard = self.env[ + "account.statement.import.sheet.mapping.wizard" + ] + + def _data_file(self, filename, encoding=None): + mode = "rt" if encoding else "rb" + with open(path.join(path.dirname(__file__), filename), mode) as file: + data = file.read() + if encoding: + data = data.encode(encoding) + return b64encode(data) + + def test_import_csv_file(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + data = self._data_file("fixtures/sample_statement_en.csv", "utf-8") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/sample_statement_en.csv", + "statement_file": data, + "sheet_mapping_id": self.sample_statement_map.id, + } + ) + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 1) + self.assertEqual(len(statement.line_ids), 2) + + def test_import_empty_csv_file(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + data = self._data_file("fixtures/empty_statement_en.csv", "utf-8") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/empty_statement_en.csv", + "statement_file": data, + "sheet_mapping_id": self.sample_statement_map.id, + } + ) + with self.assertRaises(UserError): + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 0) + + def test_import_xlsx_file(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + data = self._data_file("fixtures/sample_statement_en.xlsx") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/sample_statement_en.xlsx", + "statement_file": data, + "sheet_mapping_id": self.sample_statement_map.id, + } + ) + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 1) + self.assertEqual(len(statement.line_ids), 2) + + def test_import_empty_xlsx_file(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + data = self._data_file("fixtures/empty_statement_en.xlsx") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/empty_statement_en.xlsx", + "statement_file": data, + "sheet_mapping_id": self.sample_statement_map.id, + } + ) + with self.assertRaises(UserError): + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 0) + + def test_mapping_import_wizard_xlsx(self): + with common.Form(self.AccountStatementImportSheetMappingWizard) as form: + attachment = self.env["ir.attachment"].create( + { + "name": "fixtures/empty_statement_en.xlsx", + "datas": self._data_file("fixtures/empty_statement_en.xlsx"), + } + ) + form.attachment_ids.add(attachment) + self.assertEqual(len(form.header), 90) + self.assertEqual( + len( + self.AccountStatementImportSheetMappingWizard.with_context( + header=form.header, + ).statement_columns() + ), + 7, + ) + form.timestamp_column = "Date" + form.amount_column = "Amount" + wizard = form.save() + wizard.import_mapping() + + def test_mapping_import_wizard_csv(self): + with common.Form(self.AccountStatementImportSheetMappingWizard) as form: + attachment = self.env["ir.attachment"].create( + { + "name": "fixtures/empty_statement_en.csv", + "datas": self._data_file("fixtures/empty_statement_en.csv"), + } + ) + form.attachment_ids.add(attachment) + self.assertEqual(len(form.header), 90) + self.assertEqual( + len( + self.AccountStatementImportSheetMappingWizard.with_context( + header=form.header, + ).statement_columns() + ), + 7, + ) + form.timestamp_column = "Date" + form.amount_column = "Amount" + wizard = form.save() + wizard.import_mapping() + + def test_original_currency(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + data = self._data_file("fixtures/original_currency.csv", "utf-8") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/original_currency.csv", + "statement_file": data, + "sheet_mapping_id": self.sample_statement_map.id, + } + ) + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 1) + self.assertEqual(len(statement.line_ids), 1) + + line = statement.line_ids + self.assertEqual(line.currency_id, self.currency_usd) + self.assertEqual(line.amount, 1525.0) + self.assertEqual(line.foreign_currency_id, self.currency_eur) + self.assertEqual(line.amount_currency, 1000.0) + + def test_original_currency_empty(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + data = self._data_file("fixtures/original_currency_empty.csv", "utf-8") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/original_currency_empty.csv", + "statement_file": data, + "sheet_mapping_id": self.sample_statement_map.id, + } + ) + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 1) + self.assertEqual(len(statement.line_ids), 1) + + line = statement.line_ids + self.assertFalse(line.foreign_currency_id) + self.assertEqual(line.amount_currency, 0.0) + + def test_multi_currency(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + statement_map = self.sample_statement_map.copy( + { + "currency_column": "Currency", + "original_currency_column": None, + "original_amount_column": None, + } + ) + data = self._data_file("fixtures/multi_currency.csv", "utf-8") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/multi_currency.csv", + "statement_file": data, + "sheet_mapping_id": statement_map.id, + } + ) + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 1) + self.assertEqual(len(statement.line_ids), 1) + + line = statement.line_ids + self.assertFalse(line.foreign_currency_id) + self.assertEqual(line.amount, -33.5) + + def test_balance(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + statement_map = self.sample_statement_map.copy( + { + "balance_column": "Balance", + "original_currency_column": None, + "original_amount_column": None, + } + ) + data = self._data_file("fixtures/balance.csv", "utf-8") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/balance.csv", + "statement_file": data, + "sheet_mapping_id": statement_map.id, + } + ) + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 1) + self.assertEqual(len(statement.line_ids), 2) + self.assertEqual(statement.balance_start, 10.0) + self.assertEqual(statement.balance_end_real, 1510.0) + self.assertEqual(statement.balance_end, 1510.0) + + def test_debit_credit(self): + journal = self.AccountJournal.create( + { + "name": "Bank", + "type": "bank", + "code": "BANK", + "currency_id": self.currency_usd.id, + } + ) + statement_map = self.sample_statement_map.copy( + { + "balance_column": "Balance", + "original_currency_column": None, + "original_amount_column": None, + "debit_credit_column": "D/C", + "debit_value": "D", + "credit_value": "C", + } + ) + data = self._data_file("fixtures/debit_credit.csv", "utf-8") + wizard = self.AccountStatementImport.with_context(journal_id=journal.id).create( + { + "statement_filename": "fixtures/debit_credit.csv", + "statement_file": data, + "sheet_mapping_id": statement_map.id, + } + ) + wizard.with_context( + account_statement_import_txt_xlsx_test=True + ).import_file_button() + statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) + self.assertEqual(len(statement), 1) + self.assertEqual(len(statement.line_ids), 2) + self.assertEqual(statement.balance_start, 10.0) + self.assertEqual(statement.balance_end_real, 1510.0) + self.assertEqual(statement.balance_end, 1510.0) diff --git a/account_statement_import_txt_xlsx/views/account_journal_views.xml b/account_statement_import_txt_xlsx/views/account_journal_views.xml new file mode 100644 index 000000000..92b17a964 --- /dev/null +++ b/account_statement_import_txt_xlsx/views/account_journal_views.xml @@ -0,0 +1,17 @@ + + + + account.journal + + + + + + + + + + diff --git a/account_statement_import_txt_xlsx/views/account_statement_import.xml b/account_statement_import_txt_xlsx/views/account_statement_import.xml new file mode 100644 index 000000000..4ef359aa7 --- /dev/null +++ b/account_statement_import_txt_xlsx/views/account_statement_import.xml @@ -0,0 +1,23 @@ + + + + + account.statement.import + account.statement.import + + + +
  • + TXT/CSV/XLSX mapping: +
  • +
    +
    +
    +
    diff --git a/account_statement_import_txt_xlsx/views/account_statement_import_sheet_mapping.xml b/account_statement_import_txt_xlsx/views/account_statement_import_sheet_mapping.xml new file mode 100644 index 000000000..8f9718b5a --- /dev/null +++ b/account_statement_import_txt_xlsx/views/account_statement_import_sheet_mapping.xml @@ -0,0 +1,89 @@ + + + + + account.statement.import.sheet.mapping.form + account.statement.import.sheet.mapping + + + + + + + + account.statement.import.sheet.mapping.tree + account.statement.import.sheet.mapping + +
    + +
    +
    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    +
    + + Statement Sheet Mappings + account.statement.import.sheet.mapping + tree,form + + +
    diff --git a/account_statement_import_txt_xlsx/wizards/__init__.py b/account_statement_import_txt_xlsx/wizards/__init__.py new file mode 100644 index 000000000..a807f2d62 --- /dev/null +++ b/account_statement_import_txt_xlsx/wizards/__init__.py @@ -0,0 +1,3 @@ +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +from . import account_statement_import_sheet_mapping_wizard diff --git a/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py b/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py new file mode 100644 index 000000000..2e38de4b8 --- /dev/null +++ b/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.py @@ -0,0 +1,198 @@ +# Copyright 2019 ForgeFlow, S.L. +# Copyright 2020 CorporateHub (https://corporatehub.eu) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). + +import json +from base64 import b64decode +from os import path + +from odoo import _, api, fields, models + + +class AccountStatementImportSheetMappingWizard(models.TransientModel): + _name = "account.statement.import.sheet.mapping.wizard" + _description = "Bank Statement Import Sheet Mapping Wizard" + _inherit = ["multi.step.wizard.mixin"] + + attachment_ids = fields.Many2many( + comodel_name="ir.attachment", + string="Files", + required=True, + relation="account_statement_import_sheet_mapping_wiz_attachment_rel", + ) + header = fields.Char() + file_encoding = fields.Selection( + string="Encoding", + selection=lambda self: self._selection_file_encoding(), + ) + delimiter = fields.Selection( + string="Delimiter", + selection=lambda self: self._selection_delimiter(), + ) + quotechar = fields.Char( + string="Text qualifier", + size=1, + ) + timestamp_column = fields.Char( + string="Timestamp column", + ) + currency_column = fields.Char( + string="Currency column", + help=( + "In case statement is multi-currency, column to get currency of " + "transaction from" + ), + ) + amount_column = fields.Char( + string="Amount column", + help="Amount of transaction in journal's currency", + ) + balance_column = fields.Char( + string="Balance column", + help="Balance after transaction in journal's currency", + ) + original_currency_column = fields.Char( + string="Original currency column", + help=( + "In case statement provides original currency for transactions " + "with automatic currency conversion, column to get original " + "currency of transaction from" + ), + ) + original_amount_column = fields.Char( + string="Original amount column", + help=( + "In case statement provides original currency for transactions " + "with automatic currency conversion, column to get original " + "transaction amount in original transaction currency from" + ), + ) + debit_credit_column = fields.Char( + string="Debit/credit column", + help=( + "Some statement formats use absolute amount value and indicate sign" + "of the transaction by specifying if it was a debit or a credit one" + ), + ) + debit_value = fields.Char( + string="Debit value", + help="Value of debit/credit column that indicates if it's a debit", + default="D", + ) + credit_value = fields.Char( + string="Credit value", + help="Value of debit/credit column that indicates if it's a credit", + default="C", + ) + transaction_id_column = fields.Char( + string="Unique transaction ID column", + ) + description_column = fields.Char( + string="Description column", + ) + notes_column = fields.Char( + string="Notes column", + ) + reference_column = fields.Char( + string="Reference column", + ) + partner_name_column = fields.Char( + string="Partner Name column", + ) + bank_name_column = fields.Char( + string="Bank Name column", + help="Partner's bank", + ) + bank_account_column = fields.Char( + string="Bank Account column", + help="Partner's bank account", + ) + + @api.model + def _selection_file_encoding(self): + return ( + self.env["account.statement.import.sheet.mapping"] + ._fields["file_encoding"] + .selection + ) + + @api.model + def _selection_delimiter(self): + return ( + self.env["account.statement.import.sheet.mapping"] + ._fields["delimiter"] + .selection + ) + + @api.onchange("attachment_ids") + def _onchange_attachment_ids(self): + Parser = self.env["account.statement.import.sheet.parser"] + Mapping = self.env["account.statement.import.sheet.mapping"] + if not self.attachment_ids: + return + csv_options = {} + if self.delimiter: + csv_options["delimiter"] = Mapping._decode_column_delimiter_character( + self.delimiter + ) + if self.quotechar: + csv_options["quotechar"] = self.quotechar + header = [] + for data_file in self.attachment_ids: + header += Parser.parse_header( + b64decode(data_file.datas), self.file_encoding, csv_options + ) + header = list(set(header)) + self.header = json.dumps(header) + + @api.model + def statement_columns(self): + header = self.env.context.get("header") + if not header: + return [] + return [(x, x) for x in json.loads(header)] + + def _get_mapping_values(self): + """Hook for extension""" + self.ensure_one() + filename = "& ".join(self.attachment_ids.mapped("name")) + return { + "name": _("Mapping from %s") % path.basename(filename), + "float_thousands_sep": "comma", + "float_decimal_sep": "dot", + "file_encoding": self.file_encoding, + "delimiter": self.delimiter, + "quotechar": self.quotechar, + "timestamp_format": "%d/%m/%Y", + "timestamp_column": self.timestamp_column, + "currency_column": self.currency_column, + "amount_column": self.amount_column, + "balance_column": self.balance_column, + "original_currency_column": self.original_currency_column, + "original_amount_column": self.original_amount_column, + "debit_credit_column": self.debit_credit_column, + "debit_value": self.debit_value, + "credit_value": self.credit_value, + "transaction_id_column": self.transaction_id_column, + "description_column": self.description_column, + "notes_column": self.notes_column, + "reference_column": self.reference_column, + "partner_name_column": self.partner_name_column, + "bank_name_column": self.bank_name_column, + "bank_account_column": self.bank_account_column, + } + + def import_mapping(self): + self.ensure_one() + mapping = self.env["account.statement.import.sheet.mapping"].create( + self._get_mapping_values() + ) + return { + "type": "ir.actions.act_window", + "name": _("Imported Mapping"), + "res_model": "account.statement.import.sheet.mapping", + "res_id": mapping.id, + "view_mode": "form", + "view_id": False, + "target": "current", + } diff --git a/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.xml b/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.xml new file mode 100644 index 000000000..51097816f --- /dev/null +++ b/account_statement_import_txt_xlsx/wizards/account_statement_import_sheet_mapping_wizard.xml @@ -0,0 +1,162 @@ + + + + + account.statement.import.sheet.mapping.wizard.form + account.statement.import.sheet.mapping.wizard + primary + + + +

    Select a statement file to import mapping

    + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    + +