[MIG] account_bank_statement_import_paypal: Migration to v14.0

This commit is contained in:
Carlos Roca
2021-07-13 10:37:08 +02:00
parent 00371854bc
commit 3f5108ef7c
25 changed files with 679 additions and 668 deletions

View File

@@ -14,13 +14,13 @@ PayPal CSV Format Bank Statements Import
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
:alt: License: AGPL-3 :alt: License: AGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github .. |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/13.0/account_bank_statement_import_paypal :target: https://github.com/OCA/bank-statement-import/tree/14.0/account_statement_import_paypal
:alt: OCA/bank-statement-import :alt: OCA/bank-statement-import
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
:target: https://translation.odoo-community.org/projects/bank-statement-import-13-0/bank-statement-import-13-0-account_bank_statement_import_paypal :target: https://translation.odoo-community.org/projects/bank-statement-import-14-0/bank-statement-import-14-0-account_statement_import_paypal
:alt: Translate me on Weblate :alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png .. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
:target: https://runbot.odoo-community.org/runbot/174/13.0 :target: https://runbot.odoo-community.org/runbot/174/14.0
:alt: Try me on Runbot :alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5| |badge1| |badge2| |badge3| |badge4| |badge5|
@@ -81,7 +81,7 @@ Bug Tracker
Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-statement-import/issues>`_. Bugs are tracked on `GitHub Issues <https://github.com/OCA/bank-statement-import/issues>`_.
In case of trouble, please check there if your issue has already been reported. 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 If you spotted it first, help us smashing it by providing a detailed and welcomed
`feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_bank_statement_import_paypal%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_. `feedback <https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_paypal%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
Do not contact contributors directly about support or help with technical issues. Do not contact contributors directly about support or help with technical issues.
@@ -101,8 +101,8 @@ Contributors
* Sebastien BEAU <sebastien.beau@akretion.com> * Sebastien BEAU <sebastien.beau@akretion.com>
* Tecnativa (https://www.tecnativa.com) * Tecnativa (https://www.tecnativa.com)
* Vicent Cubells <vicent.cubells@tecnativa.com> * Vicent Cubells
* Victor M.M. Torres <victor.martin@tecnativa.com> * Victor M.M. Torres
* Carlos Roca * Carlos Roca
* Alexey Pelykh <alexey.pelykh@corphub.eu> (`CorporateHub <https://corporatehub.eu/>`__) * Alexey Pelykh <alexey.pelykh@corphub.eu> (`CorporateHub <https://corporatehub.eu/>`__)
@@ -120,6 +120,6 @@ OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and mission is to support the collaborative development of Odoo features and
promote its widespread use. promote its widespread use.
This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/13.0/account_bank_statement_import_paypal>`_ project on GitHub. This module is part of the `OCA/bank-statement-import <https://github.com/OCA/bank-statement-import/tree/14.0/account_statement_import_paypal>`_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

View File

@@ -7,23 +7,22 @@
{ {
"name": "PayPal CSV Format Bank Statements Import", "name": "PayPal CSV Format Bank Statements Import",
"summary": "Import PayPal CSV files as Bank Statements in Odoo", "summary": "Import PayPal CSV files as Bank Statements in Odoo",
"version": "13.0.1.0.0", "version": "14.0.1.0.0",
"category": "Accounting", "category": "Accounting",
"website": "https://github.com/OCA/bank-statement-import", "website": "https://github.com/OCA/bank-statement-import",
"author": "Akretion, CorporateHub, Odoo Community Association (OCA)", "author": "Akretion, CorporateHub, Odoo Community Association (OCA)",
"license": "AGPL-3", "license": "AGPL-3",
"installable": True, "installable": True,
"depends": [ "depends": [
"account_bank_statement_import", "account_statement_import",
"multi_step_wizard", "multi_step_wizard",
"web_widget_dropdown_dynamic", "web_widget_dropdown_dynamic",
], ],
"external_dependencies": {"python": ["csv"]},
"data": [ "data": [
"security/ir.model.access.csv", "security/ir.model.access.csv",
"data/maps.xml", "data/maps.xml",
"views/account_bank_statement_import_paypal_mapping.xml", "views/account_statement_import_paypal_mapping.xml",
"views/account_bank_statement_import.xml", "views/account_statement_import.xml",
"wizards/account_bank_statement_import_paypal_mapping_wizard.xml", "wizards/account_statement_import_paypal_mapping_wizard.xml",
], ],
} }

View File

@@ -8,7 +8,7 @@
<odoo noupdate="1"> <odoo noupdate="1">
<record <record
id="paypal_statement_map_en" id="paypal_statement_map_en"
model="account.bank.statement.import.paypal.mapping" model="account.statement.import.paypal.mapping"
> >
<field name="name">PayPal Statement (EN)</field> <field name="name">PayPal Statement (EN)</field>
<field name="float_thousands_sep">comma</field> <field name="float_thousands_sep">comma</field>
@@ -30,10 +30,7 @@
<field name="bank_name_column">Bank Name</field> <field name="bank_name_column">Bank Name</field>
<field name="bank_account_column">Bank Account</field> <field name="bank_account_column">Bank Account</field>
</record> </record>
<record <record id="paypal_activity_map_en" model="account.statement.import.paypal.mapping">
id="paypal_activity_map_en"
model="account.bank.statement.import.paypal.mapping"
>
<field name="name">PayPal Activity (EN)</field> <field name="name">PayPal Activity (EN)</field>
<field name="float_thousands_sep">comma</field> <field name="float_thousands_sep">comma</field>
<field name="float_decimal_sep">dot</field> <field name="float_decimal_sep">dot</field>
@@ -57,7 +54,7 @@
</record> </record>
<record <record
id="paypal_statement_map_es" id="paypal_statement_map_es"
model="account.bank.statement.import.paypal.mapping" model="account.statement.import.paypal.mapping"
> >
<field name="name">PayPal Statement (ES)</field> <field name="name">PayPal Statement (ES)</field>
<field name="float_thousands_sep">dot</field> <field name="float_thousands_sep">dot</field>
@@ -79,10 +76,7 @@
<field name="bank_name_column">Nombre del banco</field> <field name="bank_name_column">Nombre del banco</field>
<field name="bank_account_column">Cuenta bancaria</field> <field name="bank_account_column">Cuenta bancaria</field>
</record> </record>
<record <record id="paypal_activity_map_es" model="account.statement.import.paypal.mapping">
id="paypal_activity_map_es"
model="account.bank.statement.import.paypal.mapping"
>
<field name="name">PayPal Activity (ES)</field> <field name="name">PayPal Activity (ES)</field>
<field name="float_thousands_sep">dot</field> <field name="float_thousands_sep">dot</field>
<field name="float_decimal_sep">comma</field> <field name="float_decimal_sep">comma</field>
@@ -108,7 +102,7 @@
</record> </record>
<record <record
id="paypal_statement_map_de" id="paypal_statement_map_de"
model="account.bank.statement.import.paypal.mapping" model="account.statement.import.paypal.mapping"
> >
<field name="name">PayPal Statement (DE)</field> <field name="name">PayPal Statement (DE)</field>
<field name="float_thousands_sep">dot</field> <field name="float_thousands_sep">dot</field>
@@ -130,10 +124,7 @@
<field name="bank_name_column">Name der Bank</field> <field name="bank_name_column">Name der Bank</field>
<field name="bank_account_column">Bankkonto</field> <field name="bank_account_column">Bankkonto</field>
</record> </record>
<record <record id="paypal_activity_map_de" model="account.statement.import.paypal.mapping">
id="paypal_activity_map_de"
model="account.bank.statement.import.paypal.mapping"
>
<field name="name">PayPal Activity (DE)</field> <field name="name">PayPal Activity (DE)</field>
<field name="float_thousands_sep">dot</field> <field name="float_thousands_sep">dot</field>
<field name="float_decimal_sep">comma</field> <field name="float_decimal_sep">comma</field>

View File

@@ -1,341 +0,0 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_bank_statement_import_paypal
#
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_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__balance_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__balance_column
msgid "\"Balance\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__bank_account_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__bank_account_column
msgid "\"Bank Account\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__bank_name_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__bank_name_column
msgid "\"Bank Name\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__currency_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__currency_column
msgid "\"Currency\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__date_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__date_column
msgid "\"Date\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__description_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__description_column
msgid "\"Description\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__fee_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__fee_column
msgid "\"Fee\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__from_email_address_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__from_email_address_column
msgid "\"From Email Address\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__gross_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__gross_column
msgid "\"Gross\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__invoice_id_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__invoice_id_column
msgid "\"Invoice ID\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__name_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__name_column
msgid "\"Name\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__note_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__note_column
msgid "\"Note\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__subject_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__subject_column
msgid "\"Subject\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__time_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__time_column
msgid "\"Time\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__tz_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__tz_column
msgid "\"Timezone\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__to_email_address_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__to_email_address_column
msgid "\"To Email Address\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__transaction_id_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__transaction_id_column
msgid "\"Transaction ID\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__type_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__type_column
msgid "\"Type\" column"
msgstr ""
#. module: account_bank_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0
#, python-format
msgid "%s: %s"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import_paypal_mapping
msgid "Account Bank Statement Import PayPal Mapping"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import_paypal_mapping_wizard
msgid "Account Bank Statement Import PayPal Mapping Wizard"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import_paypal_parser
msgid "Account Bank Statement Import PayPal Parser"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__allow_back
msgid "Allow Back"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_wizard_form
msgid "Choose a file to import..."
msgstr ""
#. module: account_bank_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_tree
msgid "Columns"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__create_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__create_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__create_uid
msgid "Created by"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__create_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__create_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__create_date
msgid "Created on"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__date_format
msgid "Date Format"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__display_name
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__display_name
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__display_name
msgid "Display Name"
msgstr ""
#. module: account_bank_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0
#, python-format
msgid "Fee for %s"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__filename
msgid "Filename"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__header
msgid "Header"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__id
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__id
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__id
msgid "ID"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_wizard_form
msgid "Import"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import
msgid "Import Bank Statement"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.actions.act_window,name:account_bank_statement_import_paypal.action_account_bank_statement_import_paypal_mapping_wizard
msgid "Import Mapping"
msgstr ""
#. module: account_bank_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/wizards/account_bank_statement_import_paypal_mapping_wizard.py:0
#, python-format
msgid "Imported Mapping"
msgstr ""
#. module: account_bank_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0
#, python-format
msgid "Invoice %s"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_journal
msgid "Journal"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping____last_update
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard____last_update
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser____last_update
msgid "Last Modified on"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__write_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__write_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__write_uid
msgid "Last Updated by"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__write_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__write_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__write_date
msgid "Last Updated on"
msgstr ""
#. module: account_bank_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/wizards/account_bank_statement_import_paypal_mapping_wizard.py:0
#, python-format
msgid "Mapping from %s"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__name
msgid "Name"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__data_file
msgid "PayPal Report File"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.actions.act_window,name:account_bank_statement_import_paypal.action_statement_import_paypal_report_mappings
#: model:ir.ui.menu,name:account_bank_statement_import_paypal.menu_statement_import_paypal_mapping
msgid "PayPal Report Mappings"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_view
msgid "PayPal Report mapping:"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import__paypal_mapping_id
msgid "PayPal mapping"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_wizard_form
msgid "Select a PayPal report file to import mapping."
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__state
msgid "State"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__time_format
msgid "Time Format"
msgstr ""
#. module: account_bank_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0
#, python-format
msgid "Transaction fee for %s"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_decimal_sep__comma
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_decimal_sep__dot
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr ""
#. module: account_bank_statement_import_paypal
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_decimal_sep__none
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_thousands_sep__none
msgid "none"
msgstr ""

View File

@@ -0,0 +1,349 @@
# Translation of Odoo Server.
# This file contains the translation of the following modules:
# * account_statement_import_paypal
#
msgid ""
msgstr ""
"Project-Id-Version: Odoo Server 14.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-07-13 07:52+0000\n"
"PO-Revision-Date: 2021-07-13 07:52+0000\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_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__balance_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__balance_column
msgid "\"Balance\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__bank_account_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__bank_account_column
msgid "\"Bank Account\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__bank_name_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__bank_name_column
msgid "\"Bank Name\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__currency_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__currency_column
msgid "\"Currency\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__date_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__date_column
msgid "\"Date\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__description_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__description_column
msgid "\"Description\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__fee_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__fee_column
msgid "\"Fee\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__from_email_address_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__from_email_address_column
msgid "\"From Email Address\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__gross_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__gross_column
msgid "\"Gross\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__invoice_id_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__invoice_id_column
msgid "\"Invoice ID\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__name_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__name_column
msgid "\"Name\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__note_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__note_column
msgid "\"Note\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__subject_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__subject_column
msgid "\"Subject\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__time_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__time_column
msgid "\"Time\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__tz_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__tz_column
msgid "\"Timezone\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__to_email_address_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__to_email_address_column
msgid "\"To Email Address\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__transaction_id_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__transaction_id_column
msgid "\"Transaction ID\" column"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__type_column
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__type_column
msgid "\"Type\" column"
msgstr ""
#. module: account_statement_import_paypal
#: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format
msgid "%s: %s"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model,name:account_statement_import_paypal.model_account_statement_import_paypal_mapping
msgid "Account Statement Import PayPal Mapping"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model,name:account_statement_import_paypal.model_account_statement_import_paypal_mapping_wizard
msgid "Account Statement Import PayPal Mapping Wizard"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model,name:account_statement_import_paypal.model_account_statement_import_paypal_parser
msgid "Account Statement Import PayPal Parser"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__allow_back
msgid "Allow Back"
msgstr ""
#. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_wizard_form
msgid "Choose a file to import..."
msgstr ""
#. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_tree
msgid "Columns"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__create_uid
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__create_uid
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__create_uid
msgid "Created by"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__create_date
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__create_date
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__create_date
msgid "Created on"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__date_format
msgid "Date Format"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__float_decimal_sep
msgid "Decimals Separator"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_journal__display_name
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import__display_name
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__display_name
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__display_name
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__display_name
msgid "Display Name"
msgstr ""
#. module: account_statement_import_paypal
#: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format
msgid "Fee for %s"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__filename
msgid "Filename"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__header
msgid "Header"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_journal__id
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import__id
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__id
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__id
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__id
msgid "ID"
msgstr ""
#. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_wizard_form
msgid "Import"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model,name:account_statement_import_paypal.model_account_statement_import
msgid "Import Bank Statement Files"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.actions.act_window,name:account_statement_import_paypal.action_account_statement_import_paypal_mapping_wizard
msgid "Import Mapping"
msgstr ""
#. module: account_statement_import_paypal
#: code:addons/account_statement_import_paypal/wizards/account_statement_import_paypal_mapping_wizard.py:0
#, python-format
msgid "Imported Mapping"
msgstr ""
#. module: account_statement_import_paypal
#: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format
msgid "Invoice %s"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model,name:account_statement_import_paypal.model_account_journal
msgid "Journal"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_journal____last_update
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import____last_update
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping____last_update
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard____last_update
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser____last_update
msgid "Last Modified on"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__write_uid
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__write_uid
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__write_uid
msgid "Last Updated by"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__write_date
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__write_date
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__write_date
msgid "Last Updated on"
msgstr ""
#. module: account_statement_import_paypal
#: code:addons/account_statement_import_paypal/wizards/account_statement_import_paypal_mapping_wizard.py:0
#, python-format
msgid "Mapping from %s"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__name
msgid "Name"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__data_file
msgid "PayPal Report File"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.actions.act_window,name:account_statement_import_paypal.action_statement_import_paypal_report_mappings
#: model:ir.ui.menu,name:account_statement_import_paypal.menu_statement_import_paypal_mapping
msgid "PayPal Report Mappings"
msgstr ""
#. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_form
msgid "PayPal Report mapping:"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import__paypal_mapping_id
msgid "PayPal mapping"
msgstr ""
#. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_wizard_form
msgid "Select a PayPal report file to import mapping."
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__state
msgid "State"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__float_thousands_sep
msgid "Thousands Separator"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__time_format
msgid "Time Format"
msgstr ""
#. module: account_statement_import_paypal
#: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format
msgid "Transaction fee for %s"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_decimal_sep__comma
#: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_thousands_sep__comma
msgid "comma (,)"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_decimal_sep__dot
#: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_thousands_sep__dot
msgid "dot (.)"
msgstr ""
#. module: account_statement_import_paypal
#: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_decimal_sep__none
#: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_thousands_sep__none
msgid "none"
msgstr ""

View File

@@ -6,341 +6,349 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Odoo Server 11.0\n" "Project-Id-Version: Odoo Server 11.0\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2019-01-11 10:43+0000\n" "POT-Creation-Date: 2021-07-13 07:52+0000\n"
"PO-Revision-Date: 2020-05-07 15:19+0000\n" "PO-Revision-Date: 2021-07-13 09:53+0200\n"
"Last-Translator: oihane <oihanecruce@gmail.com>\n" "Last-Translator: Carlos <carlos.roca@tecnativa.com>\n"
"Language-Team: \n" "Language-Team: \n"
"Language: es\n" "Language: es\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 3.10\n" "X-Generator: Poedit 2.0.6\n"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__balance_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__balance_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__balance_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__balance_column
msgid "\"Balance\" column" msgid "\"Balance\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__bank_account_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__bank_account_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__bank_account_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__bank_account_column
msgid "\"Bank Account\" column" msgid "\"Bank Account\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__bank_name_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__bank_name_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__bank_name_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__bank_name_column
msgid "\"Bank Name\" column" msgid "\"Bank Name\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__currency_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__currency_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__currency_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__currency_column
msgid "\"Currency\" column" msgid "\"Currency\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__date_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__date_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__date_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__date_column
msgid "\"Date\" column" msgid "\"Date\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__description_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__description_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__description_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__description_column
msgid "\"Description\" column" msgid "\"Description\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__fee_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__fee_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__fee_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__fee_column
msgid "\"Fee\" column" msgid "\"Fee\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__from_email_address_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__from_email_address_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__from_email_address_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__from_email_address_column
msgid "\"From Email Address\" column" msgid "\"From Email Address\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__gross_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__gross_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__gross_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__gross_column
msgid "\"Gross\" column" msgid "\"Gross\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__invoice_id_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__invoice_id_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__invoice_id_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__invoice_id_column
msgid "\"Invoice ID\" column" msgid "\"Invoice ID\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__name_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__name_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__name_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__name_column
msgid "\"Name\" column" msgid "\"Name\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__note_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__note_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__note_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__note_column
msgid "\"Note\" column" msgid "\"Note\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__subject_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__subject_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__subject_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__subject_column
msgid "\"Subject\" column" msgid "\"Subject\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__time_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__time_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__time_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__time_column
msgid "\"Time\" column" msgid "\"Time\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__tz_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__tz_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__tz_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__tz_column
msgid "\"Timezone\" column" msgid "\"Timezone\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__to_email_address_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__to_email_address_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__to_email_address_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__to_email_address_column
msgid "\"To Email Address\" column" msgid "\"To Email Address\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__transaction_id_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__transaction_id_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__transaction_id_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__transaction_id_column
msgid "\"Transaction ID\" column" msgid "\"Transaction ID\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__type_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__type_column
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__type_column #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__type_column
msgid "\"Type\" column" msgid "\"Type\" column"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0 #: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format #, python-format
msgid "%s: %s" msgid "%s: %s"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import_paypal_mapping #: model:ir.model,name:account_statement_import_paypal.model_account_statement_import_paypal_mapping
msgid "Account Bank Statement Import PayPal Mapping" msgid "Account Statement Import PayPal Mapping"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import_paypal_mapping_wizard #: model:ir.model,name:account_statement_import_paypal.model_account_statement_import_paypal_mapping_wizard
msgid "Account Bank Statement Import PayPal Mapping Wizard" msgid "Account Statement Import PayPal Mapping Wizard"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import_paypal_parser #: model:ir.model,name:account_statement_import_paypal.model_account_statement_import_paypal_parser
msgid "Account Bank Statement Import PayPal Parser" msgid "Account Statement Import PayPal Parser"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__allow_back #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__allow_back
msgid "Allow Back" msgid "Allow Back"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_wizard_form #: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_wizard_form
msgid "Choose a file to import..." msgid "Choose a file to import..."
msgstr "Escoja un archivo a importar..." msgstr "Escoja un archivo a importar..."
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_tree #: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_tree
msgid "Columns" msgid "Columns"
msgstr "Columnas" msgstr "Columnas"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__create_uid #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__create_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__create_uid #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__create_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__create_uid #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__create_uid
msgid "Created by" msgid "Created by"
msgstr "Creado el" msgstr "Creado el"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__create_date #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__create_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__create_date #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__create_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__create_date #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__create_date
msgid "Created on" msgid "Created on"
msgstr "Creado por" msgstr "Creado por"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__date_format #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__date_format
msgid "Date Format" msgid "Date Format"
msgstr "Formato de fecha" msgstr "Formato de fecha"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__float_decimal_sep #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__float_decimal_sep
msgid "Decimals Separator" msgid "Decimals Separator"
msgstr "Separador de decimales" msgstr "Separador de decimales"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__display_name #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_journal__display_name
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__display_name #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import__display_name
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__display_name #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__display_name
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__display_name
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__display_name
msgid "Display Name" msgid "Display Name"
msgstr "Nombre mostrado" msgstr "Nombre mostrado"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0 #: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format #, python-format
msgid "Fee for %s" msgid "Fee for %s"
msgstr "Tasa para %s" msgstr "Tasa para %s"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__filename #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__filename
msgid "Filename" msgid "Filename"
msgstr "Nombre de archivo" msgstr "Nombre de archivo"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__header #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__header
msgid "Header" msgid "Header"
msgstr "Cabecera" msgstr "Cabecera"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__id #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_journal__id
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__id #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import__id
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__id #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__id
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__id
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__id
msgid "ID" msgid "ID"
msgstr "ID" msgstr "ID"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_wizard_form #: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_wizard_form
msgid "Import" msgid "Import"
msgstr "Importar" msgstr "Importar"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_bank_statement_import #: model:ir.model,name:account_statement_import_paypal.model_account_statement_import
msgid "Import Bank Statement" #, fuzzy
#| msgid "Import Bank Statement"
msgid "Import Bank Statement Files"
msgstr "Importar Extracto Bancario" msgstr "Importar Extracto Bancario"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.actions.act_window,name:account_bank_statement_import_paypal.action_account_bank_statement_import_paypal_mapping_wizard #: model:ir.actions.act_window,name:account_statement_import_paypal.action_account_statement_import_paypal_mapping_wizard
msgid "Import Mapping" msgid "Import Mapping"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/wizards/account_bank_statement_import_paypal_mapping_wizard.py:0 #: code:addons/account_statement_import_paypal/wizards/account_statement_import_paypal_mapping_wizard.py:0
#, python-format #, python-format
msgid "Imported Mapping" msgid "Imported Mapping"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0 #: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format #, python-format
msgid "Invoice %s" msgid "Invoice %s"
msgstr "Factura %s" msgstr "Factura %s"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model,name:account_bank_statement_import_paypal.model_account_journal #: model:ir.model,name:account_statement_import_paypal.model_account_journal
msgid "Journal" msgid "Journal"
msgstr "Diario" msgstr "Diario"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping____last_update #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_journal____last_update
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard____last_update #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import____last_update
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser____last_update #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping____last_update
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard____last_update
#: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser____last_update
msgid "Last Modified on" msgid "Last Modified on"
msgstr "Última modificación en" msgstr "Última modificación en"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__write_uid #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__write_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__write_uid #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__write_uid
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__write_uid #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__write_uid
msgid "Last Updated by" msgid "Last Updated by"
msgstr "Última actualización por" msgstr "Última actualización por"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__write_date #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__write_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__write_date #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__write_date
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_parser__write_date #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_parser__write_date
msgid "Last Updated on" msgid "Last Updated on"
msgstr "Última actualización en" msgstr "Última actualización en"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/wizards/account_bank_statement_import_paypal_mapping_wizard.py:0 #: code:addons/account_statement_import_paypal/wizards/account_statement_import_paypal_mapping_wizard.py:0
#, python-format #, python-format
msgid "Mapping from %s" msgid "Mapping from %s"
msgstr "Mapeo para %s" msgstr "Mapeo para %s"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__name #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__name
msgid "Name" msgid "Name"
msgstr "Nombre" msgstr "Nombre"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__data_file #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__data_file
msgid "PayPal Report File" msgid "PayPal Report File"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.actions.act_window,name:account_bank_statement_import_paypal.action_statement_import_paypal_report_mappings #: model:ir.actions.act_window,name:account_statement_import_paypal.action_statement_import_paypal_report_mappings
#: model:ir.ui.menu,name:account_bank_statement_import_paypal.menu_statement_import_paypal_mapping #: model:ir.ui.menu,name:account_statement_import_paypal.menu_statement_import_paypal_mapping
msgid "PayPal Report Mappings" msgid "PayPal Report Mappings"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_view #: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_form
msgid "PayPal Report mapping:" msgid "PayPal Report mapping:"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import__paypal_mapping_id #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import__paypal_mapping_id
msgid "PayPal mapping" msgid "PayPal mapping"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model_terms:ir.ui.view,arch_db:account_bank_statement_import_paypal.account_bank_statement_import_paypal_mapping_wizard_form #: model_terms:ir.ui.view,arch_db:account_statement_import_paypal.account_statement_import_paypal_mapping_wizard_form
msgid "Select a PayPal report file to import mapping." msgid "Select a PayPal report file to import mapping."
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping_wizard__state #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping_wizard__state
msgid "State" msgid "State"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__float_thousands_sep #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__float_thousands_sep
msgid "Thousands Separator" msgid "Thousands Separator"
msgstr "Separador de millares" msgstr "Separador de millares"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields,field_description:account_bank_statement_import_paypal.field_account_bank_statement_import_paypal_mapping__time_format #: model:ir.model.fields,field_description:account_statement_import_paypal.field_account_statement_import_paypal_mapping__time_format
msgid "Time Format" msgid "Time Format"
msgstr "" msgstr ""
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: code:addons/account_bank_statement_import_paypal/models/account_bank_statement_import_paypal_parser.py:0 #: code:addons/account_statement_import_paypal/models/account_statement_import_paypal_parser.py:0
#, python-format #, python-format
msgid "Transaction fee for %s" msgid "Transaction fee for %s"
msgstr "Tasa de transacción para %s" msgstr "Tasa de transacción para %s"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_decimal_sep__comma #: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_decimal_sep__comma
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_thousands_sep__comma #: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_thousands_sep__comma
msgid "comma (,)" msgid "comma (,)"
msgstr "coma (,)" msgstr "coma (,)"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_decimal_sep__dot #: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_decimal_sep__dot
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_thousands_sep__dot #: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_thousands_sep__dot
msgid "dot (.)" msgid "dot (.)"
msgstr "punto (.)" msgstr "punto (.)"
#. module: account_bank_statement_import_paypal #. module: account_statement_import_paypal
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_decimal_sep__none #: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_decimal_sep__none
#: model:ir.model.fields.selection,name:account_bank_statement_import_paypal.selection__account_bank_statement_import_paypal_mapping__float_thousands_sep__none #: model:ir.model.fields.selection,name:account_statement_import_paypal.selection__account_statement_import_paypal_mapping__float_thousands_sep__none
msgid "none" msgid "none"
msgstr "nada" msgstr "nada"

View File

@@ -0,0 +1,40 @@
# Copyright 2021 Tecnativa - Carlos Roca
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from openupgradelib import openupgrade
_model_renames = [
(
"account.bank.statement.import.paypal.mapping",
"account.statement.import.paypal.mapping",
),
(
"account.bank.statement.import.paypal.parser",
"account.statement.import.paypal.parser",
),
(
"account.bank.statement.import.paypal.mapping.wizard",
"account.statement.import.paypal.mapping.wizard",
),
]
_table_renames = [
(
"account_bank_statement_import_paypal_mapping",
"account_statement_import_paypal_mapping",
),
(
"account_bank_statement_import_paypal_parser",
"account_statement_import_paypal_parser",
),
(
"account_bank_statement_import_paypal_mapping_wizard",
"account_statement_import_paypal_mapping_wizard",
),
]
@openupgrade.migrate()
def migrate(env, version):
openupgrade.rename_models(env.cr, _model_renames)
openupgrade.rename_tables(env.cr, _table_renames)

View File

@@ -1,6 +1,6 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import account_bank_statement_import_paypal_mapping from . import account_statement_import_paypal_mapping
from . import account_bank_statement_import_paypal_parser from . import account_statement_import_paypal_parser
from . import account_bank_statement_import from . import account_statement_import
from . import account_journal from . import account_journal

View File

@@ -11,23 +11,23 @@ from odoo import fields, models
_logger = logging.getLogger(__name__) _logger = logging.getLogger(__name__)
class AccountBankStatementImport(models.TransientModel): class AccountStatementImport(models.TransientModel):
_inherit = "account.bank.statement.import" _inherit = "account.statement.import"
paypal_mapping_id = fields.Many2one( paypal_mapping_id = fields.Many2one(
string="PayPal mapping", string="PayPal mapping",
comodel_name="account.bank.statement.import.paypal.mapping", comodel_name="account.statement.import.paypal.mapping",
) )
def _parse_file(self, data_file): def _parse_file(self, data_file):
self.ensure_one() self.ensure_one()
try: try:
Parser = self.env["account.bank.statement.import.paypal.parser"] Parser = self.env["account.statement.import.paypal.parser"]
return Parser.parse( return Parser.parse(
self.paypal_mapping_id, data_file, self.attachment_ids[:1].name self.paypal_mapping_id, data_file, self.statement_filename
) )
except Exception: except Exception:
if self.env.context.get("account_bank_statement_import_paypal_test"): if self.env.context.get("account_statement_import_paypal_test"):
raise raise
_logger.warning("PayPal parser error", exc_info=True) _logger.warning("PayPal parser error", exc_info=True)
return super()._parse_file(data_file) return super()._parse_file(data_file)

View File

@@ -7,8 +7,8 @@ from odoo import api, fields, models
class AccountBankStatementImportPayPalMapping(models.Model): class AccountBankStatementImportPayPalMapping(models.Model):
_name = "account.bank.statement.import.paypal.mapping" _name = "account.statement.import.paypal.mapping"
_description = "Account Bank Statement Import PayPal Mapping" _description = "Account Statement Import PayPal Mapping"
name = fields.Char( name = fields.Char(
required=True, required=True,

View File

@@ -23,8 +23,8 @@ except (ImportError, IOError) as err:
class AccountBankStatementImportPayPalParser(models.TransientModel): class AccountBankStatementImportPayPalParser(models.TransientModel):
_name = "account.bank.statement.import.paypal.parser" _name = "account.statement.import.paypal.parser"
_description = "Account Bank Statement Import PayPal Parser" _description = "Account Statement Import PayPal Parser"
@api.model @api.model
def parse_header(self, data_file): def parse_header(self, data_file):
@@ -75,7 +75,7 @@ class AccountBankStatementImportPayPalParser(models.TransientModel):
) )
def _data_dict_constructor(self, mapping, header): def _data_dict_constructor(self, mapping, header):
list_of_content = [ required_list = [
"date_column", "date_column",
"time_column", "time_column",
"tz_column", "tz_column",
@@ -85,6 +85,8 @@ class AccountBankStatementImportPayPalParser(models.TransientModel):
"fee_column", "fee_column",
"balance_column", "balance_column",
"transaction_id_column", "transaction_id_column",
]
optional_list = [
"description_column", "description_column",
"type_column", "type_column",
"from_email_address_column", "from_email_address_column",
@@ -96,7 +98,9 @@ class AccountBankStatementImportPayPalParser(models.TransientModel):
"bank_account_column", "bank_account_column",
] ]
data_dict = {} data_dict = {}
for key in list_of_content: for key in required_list:
data_dict[key] = header.index(getattr(mapping, key))
for key in optional_list:
try: try:
data_dict[key] = header.index(getattr(mapping, key)) data_dict[key] = header.index(getattr(mapping, key))
except ValueError: except ValueError:
@@ -208,7 +212,7 @@ class AccountBankStatementImportPayPalParser(models.TransientModel):
"name": invoice or details or description or "", "name": invoice or details or description or "",
"amount": str(gross_amount), "amount": str(gross_amount),
"date": timestamp, "date": timestamp,
"note": note, "payment_ref": note,
"unique_import_id": unique_import_id, "unique_import_id": unique_import_id,
} }
if payer_name: if payer_name:
@@ -225,7 +229,7 @@ class AccountBankStatementImportPayPalParser(models.TransientModel):
"date": timestamp, "date": timestamp,
"partner_name": "PayPal", "partner_name": "PayPal",
"unique_import_id": "%s-FEE" % unique_import_id, "unique_import_id": "%s-FEE" % unique_import_id,
"note": _("Transaction fee for %s") % note, "payment_ref": _("Transaction fee for %s") % note,
} }
) )
return transactions return transactions

View File

@@ -2,8 +2,8 @@
* Sebastien BEAU <sebastien.beau@akretion.com> * Sebastien BEAU <sebastien.beau@akretion.com>
* Tecnativa (https://www.tecnativa.com) * Tecnativa (https://www.tecnativa.com)
* Vicent Cubells <vicent.cubells@tecnativa.com> * Vicent Cubells
* Victor M.M. Torres <victor.martin@tecnativa.com> * Victor M.M. Torres
* Carlos Roca * Carlos Roca
* Alexey Pelykh <alexey.pelykh@corphub.eu> (`CorporateHub <https://corporatehub.eu/>`__) * Alexey Pelykh <alexey.pelykh@corphub.eu> (`CorporateHub <https://corporatehub.eu/>`__)

View File

@@ -1,3 +1,5 @@
"id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink" "id","name","model_id:id","group_id:id","perm_read","perm_write","perm_create","perm_unlink"
access_account_bank_statement_import_paypal_mapping_manager,account.bank.statement.import.paypal.mapping:account.group_account_manager,model_account_bank_statement_import_paypal_mapping,account.group_account_manager,1,1,1,1 "access_account_statement_import_paypal_mapping_manager","account.statement.import.paypal.mapping:account.group_account_manager","model_account_statement_import_paypal_mapping","account.group_account_manager","1","1","1","1"
access_account_bank_statement_import_paypal_mapping_user,account.bank.statement.import.paypal.mapping:account.group_account_user,model_account_bank_statement_import_paypal_mapping,account.group_account_user,1,0,0,0 "access_account_statement_import_paypal_mapping_user","account.statement.import.paypal.mapping:account.group_account_user","model_account_statement_import_paypal_mapping","account.group_account_user","1","0","0","0"
"access_account_statement_import_paypal_parser","account.statement.import.paypal.parser:account.group_account_user","model_account_statement_import_paypal_parser","account.group_account_user","1","1","1","1"
"access_account_statement_import_paypal_mapping_wizard","Full access on account.statement.import.paypal.mapping.wizard","model_account_statement_import_paypal_mapping_wizard","account.group_account_user","1","1","1","1"
1 id name model_id:id group_id:id perm_read perm_write perm_create perm_unlink
2 access_account_bank_statement_import_paypal_mapping_manager access_account_statement_import_paypal_mapping_manager account.bank.statement.import.paypal.mapping:account.group_account_manager account.statement.import.paypal.mapping:account.group_account_manager model_account_bank_statement_import_paypal_mapping model_account_statement_import_paypal_mapping account.group_account_manager 1 1 1 1
3 access_account_bank_statement_import_paypal_mapping_user access_account_statement_import_paypal_mapping_user account.bank.statement.import.paypal.mapping:account.group_account_user account.statement.import.paypal.mapping:account.group_account_user model_account_bank_statement_import_paypal_mapping model_account_statement_import_paypal_mapping account.group_account_user 1 0 0 0
4 access_account_statement_import_paypal_parser account.statement.import.paypal.parser:account.group_account_user model_account_statement_import_paypal_parser account.group_account_user 1 1 1 1
5 access_account_statement_import_paypal_mapping_wizard Full access on account.statement.import.paypal.mapping.wizard model_account_statement_import_paypal_mapping_wizard account.group_account_user 1 1 1 1

View File

@@ -3,7 +3,7 @@
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head> <head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="generator" content="Docutils 0.15.1: http://docutils.sourceforge.net/" /> <meta name="generator" content="Docutils: http://docutils.sourceforge.net/" />
<title>PayPal CSV Format Bank Statements Import</title> <title>PayPal CSV Format Bank Statements Import</title>
<style type="text/css"> <style type="text/css">
@@ -367,7 +367,7 @@ ul.auto-toc {
!! This file is generated by oca-gen-addon-readme !! !! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !! !! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/13.0/account_bank_statement_import_paypal"><img alt="OCA/bank-statement-import" src="https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/bank-statement-import-13-0/bank-statement-import-13-0-account_bank_statement_import_paypal"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/174/13.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p> <p><a class="reference external" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/14.0/account_statement_import_paypal"><img alt="OCA/bank-statement-import" src="https://img.shields.io/badge/github-OCA%2Fbank--statement--import-lightgray.png?logo=github" /></a> <a class="reference external" href="https://translation.odoo-community.org/projects/bank-statement-import-14-0/bank-statement-import-14-0-account_statement_import_paypal"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external" href="https://runbot.odoo-community.org/runbot/174/14.0"><img alt="Try me on Runbot" src="https://img.shields.io/badge/runbot-Try%20me-875A7B.png" /></a></p>
<p>This module allows you to import the PayPal CSV files in Odoo as bank <p>This module allows you to import the PayPal CSV files in Odoo as bank
statements.</p> statements.</p>
<p><strong>Table of contents</strong></p> <p><strong>Table of contents</strong></p>
@@ -436,7 +436,7 @@ statements.</p>
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/bank-statement-import/issues">GitHub Issues</a>. <p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/bank-statement-import/issues">GitHub Issues</a>.
In case of trouble, please check there if your issue has already been reported. 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 If you spotted it first, help us smashing it by providing a detailed and welcomed
<a class="reference external" href="https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_bank_statement_import_paypal%0Aversion:%2013.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p> <a class="reference external" href="https://github.com/OCA/bank-statement-import/issues/new?body=module:%20account_statement_import_paypal%0Aversion:%2014.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
<p>Do not contact contributors directly about support or help with technical issues.</p> <p>Do not contact contributors directly about support or help with technical issues.</p>
</div> </div>
<div class="section" id="credits"> <div class="section" id="credits">
@@ -454,8 +454,8 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
<li>Alexis de Lattre &lt;<a class="reference external" href="mailto:alexis.delattre&#64;akretion.com">alexis.delattre&#64;akretion.com</a>&gt;</li> <li>Alexis de Lattre &lt;<a class="reference external" href="mailto:alexis.delattre&#64;akretion.com">alexis.delattre&#64;akretion.com</a>&gt;</li>
<li>Sebastien BEAU &lt;<a class="reference external" href="mailto:sebastien.beau&#64;akretion.com">sebastien.beau&#64;akretion.com</a>&gt;</li> <li>Sebastien BEAU &lt;<a class="reference external" href="mailto:sebastien.beau&#64;akretion.com">sebastien.beau&#64;akretion.com</a>&gt;</li>
<li>Tecnativa (<a class="reference external" href="https://www.tecnativa.com">https://www.tecnativa.com</a>)<ul> <li>Tecnativa (<a class="reference external" href="https://www.tecnativa.com">https://www.tecnativa.com</a>)<ul>
<li>Vicent Cubells &lt;<a class="reference external" href="mailto:vicent.cubells&#64;tecnativa.com">vicent.cubells&#64;tecnativa.com</a>&gt;</li> <li>Vicent Cubells</li>
<li>Victor M.M. Torres &lt;<a class="reference external" href="mailto:victor.martin&#64;tecnativa.com">victor.martin&#64;tecnativa.com</a>&gt;</li> <li>Victor M.M. Torres</li>
<li>Carlos Roca</li> <li>Carlos Roca</li>
</ul> </ul>
</li> </li>
@@ -469,7 +469,7 @@ If you spotted it first, help us smashing it by providing a detailed and welcome
<p>OCA, or the Odoo Community Association, is a nonprofit organization whose <p>OCA, or the Odoo Community Association, is a nonprofit organization whose
mission is to support the collaborative development of Odoo features and mission is to support the collaborative development of Odoo features and
promote its widespread use.</p> promote its widespread use.</p>
<p>This module is part of the <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/13.0/account_bank_statement_import_paypal">OCA/bank-statement-import</a> project on GitHub.</p> <p>This module is part of the <a class="reference external" href="https://github.com/OCA/bank-statement-import/tree/14.0/account_statement_import_paypal">OCA/bank-statement-import</a> project on GitHub.</p>
<p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p> <p>You are welcome to contribute. To learn how please visit <a class="reference external" href="https://odoo-community.org/page/Contribute">https://odoo-community.org/page/Contribute</a>.</p>
</div> </div>
</div> </div>

View File

@@ -1,3 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import test_account_bank_statement_import_paypal from . import test_account_statement_import_paypal

View File

@@ -19,22 +19,22 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
self.currency_eur = self.env.ref("base.EUR") self.currency_eur = self.env.ref("base.EUR")
self.currency_usd = self.env.ref("base.USD") self.currency_usd = self.env.ref("base.USD")
self.paypal_statement_map_en = self.env.ref( self.paypal_statement_map_en = self.env.ref(
"account_bank_statement_import_paypal.paypal_statement_map_en" "account_statement_import_paypal.paypal_statement_map_en"
) )
self.paypal_statement_map_es = self.env.ref( self.paypal_statement_map_es = self.env.ref(
"account_bank_statement_import_paypal.paypal_statement_map_es" "account_statement_import_paypal.paypal_statement_map_es"
) )
self.paypal_activity_map_en = self.env.ref( self.paypal_activity_map_en = self.env.ref(
"account_bank_statement_import_paypal.paypal_activity_map_en" "account_statement_import_paypal.paypal_activity_map_en"
) )
self.AccountJournal = self.env["account.journal"] self.AccountJournal = self.env["account.journal"]
self.AccountBankStatement = self.env["account.bank.statement"] self.AccountBankStatement = self.env["account.bank.statement"]
self.AccountBankStatementImport = self.env["account.bank.statement.import"] self.AccountStatementImport = self.env["account.statement.import"]
self.AccountBankStatementImportPayPalMapping = self.env[ self.AccountStatementImportPayPalMapping = self.env[
"account.bank.statement.import.paypal.mapping" "account.statement.import.paypal.mapping"
] ]
self.AccountBankStatementImportPayPalMappingWizard = self.env[ self.AccountStatementImportPayPalMappingWizard = self.env[
"account.bank.statement.import.paypal.mapping.wizard" "account.statement.import.paypal.mapping.wizard"
] ]
def _data_file(self, filename): def _data_file(self, filename):
@@ -50,29 +50,21 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
"currency_id": self.currency_usd.id, "currency_id": self.currency_usd.id,
} }
) )
wizard = self.AccountBankStatementImport.with_context( wizard = self.AccountStatementImport.with_context(
{"journal_id": journal.id} {"journal_id": journal.id}
).create( ).create(
{ {
"attachment_ids": [ "statement_filename": "fixtures/statement_en.csv",
( "statement_file": self._data_file("fixtures/statement_en.csv"),
0,
0,
{
"name": "fixtures/statement_en.csv",
"datas": self._data_file("fixtures/statement_en.csv"),
},
)
],
"paypal_mapping_id": self.paypal_statement_map_en.id, "paypal_mapping_id": self.paypal_statement_map_en.id,
} }
) )
wizard.with_context( wizard.with_context(
{ {
"journal_id": journal.id, "journal_id": journal.id,
"account_bank_statement_import_paypal_test": True, "account_statement_import_paypal_test": True,
} }
).import_file() ).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1) self.assertEqual(len(statement), 1)
self.assertEqual(len(statement.line_ids), 18) self.assertEqual(len(statement.line_ids), 18)
@@ -86,29 +78,21 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
"currency_id": self.currency_eur.id, "currency_id": self.currency_eur.id,
} }
) )
wizard = self.AccountBankStatementImport.with_context( wizard = self.AccountStatementImport.with_context(
{"journal_id": journal.id} {"journal_id": journal.id}
).create( ).create(
{ {
"attachment_ids": [ "statement_filename": "fixtures/statement_en.csv",
( "statement_file": self._data_file("fixtures/statement_en.csv"),
0,
0,
{
"name": "fixtures/statement_en.csv",
"datas": self._data_file("fixtures/statement_en.csv"),
},
)
],
"paypal_mapping_id": self.paypal_statement_map_en.id, "paypal_mapping_id": self.paypal_statement_map_en.id,
} }
) )
wizard.with_context( wizard.with_context(
{ {
"journal_id": journal.id, "journal_id": journal.id,
"account_bank_statement_import_paypal_test": True, "account_statement_import_paypal_test": True,
} }
).import_file() ).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1) self.assertEqual(len(statement), 1)
self.assertEqual(len(statement.line_ids), 8) self.assertEqual(len(statement.line_ids), 8)
@@ -122,29 +106,21 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
"currency_id": self.currency_eur.id, "currency_id": self.currency_eur.id,
} }
) )
wizard = self.AccountBankStatementImport.with_context( wizard = self.AccountStatementImport.with_context(
{"journal_id": journal.id} {"journal_id": journal.id}
).create( ).create(
{ {
"attachment_ids": [ "statement_filename": "fixtures/statement_es.csv",
( "statement_file": self._data_file("fixtures/statement_es.csv"),
0,
0,
{
"name": "fixtures/statement_es.csv",
"datas": self._data_file("fixtures/statement_es.csv"),
},
)
],
"paypal_mapping_id": self.paypal_statement_map_es.id, "paypal_mapping_id": self.paypal_statement_map_es.id,
} }
) )
wizard.with_context( wizard.with_context(
{ {
"journal_id": journal.id, "journal_id": journal.id,
"account_bank_statement_import_paypal_test": True, "account_statement_import_paypal_test": True,
} }
).import_file() ).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1) self.assertEqual(len(statement), 1)
self.assertEqual(len(statement.line_ids), 8) self.assertEqual(len(statement.line_ids), 8)
@@ -158,29 +134,21 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
"currency_id": self.currency_usd.id, "currency_id": self.currency_usd.id,
} }
) )
wizard = self.AccountBankStatementImport.with_context( wizard = self.AccountStatementImport.with_context(
{"journal_id": journal.id} {"journal_id": journal.id}
).create( ).create(
{ {
"attachment_ids": [ "statement_filename": "fixtures/activity_en.csv",
( "statement_file": self._data_file("fixtures/activity_en.csv"),
0,
0,
{
"name": "fixtures/activity_en.csv",
"datas": self._data_file("fixtures/activity_en.csv"),
},
)
],
"paypal_mapping_id": self.paypal_activity_map_en.id, "paypal_mapping_id": self.paypal_activity_map_en.id,
} }
) )
wizard.with_context( wizard.with_context(
{ {
"journal_id": journal.id, "journal_id": journal.id,
"account_bank_statement_import_paypal_test": True, "account_statement_import_paypal_test": True,
} }
).import_file() ).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 1) self.assertEqual(len(statement), 1)
self.assertEqual(len(statement.line_ids), 71) self.assertEqual(len(statement.line_ids), 71)
@@ -194,20 +162,12 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
"currency_id": self.currency_usd.id, "currency_id": self.currency_usd.id,
} }
) )
wizard = self.AccountBankStatementImport.with_context( wizard = self.AccountStatementImport.with_context(
{"journal_id": journal.id} {"journal_id": journal.id}
).create( ).create(
{ {
"attachment_ids": [ "statement_filename": "fixtures/empty_activity.csv",
( "statement_file": self._data_file("fixtures/empty_activity.csv"),
0,
0,
{
"name": "fixtures/empty_activity.csv",
"datas": self._data_file("fixtures/empty_activity.csv"),
},
)
],
"paypal_mapping_id": self.paypal_activity_map_en.id, "paypal_mapping_id": self.paypal_activity_map_en.id,
} }
) )
@@ -215,19 +175,19 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
wizard.with_context( wizard.with_context(
{ {
"journal_id": journal.id, "journal_id": journal.id,
"account_bank_statement_import_paypal_test": True, "account_statement_import_paypal_test": True,
} }
).import_file() ).import_file_button()
statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)]) statement = self.AccountBankStatement.search([("journal_id", "=", journal.id)])
self.assertEqual(len(statement), 0) self.assertEqual(len(statement), 0)
def test_import_activity_mapping_en(self): def test_import_activity_mapping_en(self):
with common.Form(self.AccountBankStatementImportPayPalMappingWizard) as form: with common.Form(self.AccountStatementImportPayPalMappingWizard) as form:
form.filename = "fixtures/activity_en.csv" form.filename = "fixtures/activity_en.csv"
form.data_file = self._data_file("fixtures/activity_en.csv") form.data_file = self._data_file("fixtures/activity_en.csv")
self.assertEqual( self.assertEqual(
len( len(
self.AccountBankStatementImportPayPalMappingWizard.with_context( self.AccountStatementImportPayPalMappingWizard.with_context(
header=form.header, header=form.header,
).statement_columns() ).statement_columns()
), ),
@@ -237,12 +197,12 @@ class TestAccountBankStatementImportPayPal(common.TransactionCase):
wizard.import_mapping() wizard.import_mapping()
def test_import_statement_mapping_en(self): def test_import_statement_mapping_en(self):
with common.Form(self.AccountBankStatementImportPayPalMappingWizard) as form: with common.Form(self.AccountStatementImportPayPalMappingWizard) as form:
form.filename = "fixtures/statement_en.csv" form.filename = "fixtures/statement_en.csv"
form.data_file = self._data_file("fixtures/statement_en.csv") form.data_file = self._data_file("fixtures/statement_en.csv")
self.assertEqual( self.assertEqual(
len( len(
self.AccountBankStatementImportPayPalMappingWizard.with_context( self.AccountStatementImportPayPalMappingWizard.with_context(
header=form.header, header=form.header,
).statement_columns() ).statement_columns()
), ),

View File

@@ -7,12 +7,12 @@
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
--> -->
<odoo> <odoo>
<record id="account_bank_statement_import_view" model="ir.ui.view"> <record id="account_statement_import_form" model="ir.ui.view">
<field name="name">account.bank.statement.import</field> <field name="name">account.statement.import</field>
<field name="model">account.bank.statement.import</field> <field name="model">account.statement.import</field>
<field <field
name="inherit_id" name="inherit_id"
ref="account_bank_statement_import.account_bank_statement_import_view" ref="account_statement_import.account_statement_import_form"
/> />
<field name="arch" type="xml"> <field name="arch" type="xml">
<xpath expr="//ul[@id='statement_format']" position="inside"> <xpath expr="//ul[@id='statement_format']" position="inside">

View File

@@ -6,18 +6,18 @@
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
--> -->
<odoo> <odoo>
<record id="account_bank_statement_import_paypal_mapping_form" model="ir.ui.view"> <record id="account_statement_import_paypal_mapping_form" model="ir.ui.view">
<field name="name">account.bank.statement.import.paypal.mapping.form</field> <field name="name">account.statement.import.paypal.mapping.form</field>
<field name="model">account.bank.statement.import.paypal.mapping</field> <field name="model">account.statement.import.paypal.mapping</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<tree> <tree>
<field name="name" /> <field name="name" />
</tree> </tree>
</field> </field>
</record> </record>
<record id="account_bank_statement_import_paypal_mapping_tree" model="ir.ui.view"> <record id="account_statement_import_paypal_mapping_tree" model="ir.ui.view">
<field name="name">account.bank.statement.import.paypal.mapping.tree</field> <field name="name">account.statement.import.paypal.mapping.tree</field>
<field name="model">account.bank.statement.import.paypal.mapping</field> <field name="model">account.statement.import.paypal.mapping</field>
<field name="arch" type="xml"> <field name="arch" type="xml">
<form> <form>
<sheet> <sheet>
@@ -66,7 +66,7 @@
model="ir.actions.act_window" model="ir.actions.act_window"
> >
<field name="name">PayPal Report Mappings</field> <field name="name">PayPal Report Mappings</field>
<field name="res_model">account.bank.statement.import.paypal.mapping</field> <field name="res_model">account.statement.import.paypal.mapping</field>
<field name="view_mode">tree,form</field> <field name="view_mode">tree,form</field>
</record> </record>
<menuitem <menuitem

View File

@@ -1,3 +1,3 @@
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from . import account_bank_statement_import_paypal_mapping_wizard from . import account_statement_import_paypal_mapping_wizard

View File

@@ -11,8 +11,8 @@ from odoo import _, api, fields, models
class AccountBankStatementImportPayPalMappingWizard(models.TransientModel): class AccountBankStatementImportPayPalMappingWizard(models.TransientModel):
_name = "account.bank.statement.import.paypal.mapping.wizard" _name = "account.statement.import.paypal.mapping.wizard"
_description = "Account Bank Statement Import PayPal Mapping Wizard" _description = "Account Statement Import PayPal Mapping Wizard"
_inherit = ["multi.step.wizard.mixin"] _inherit = ["multi.step.wizard.mixin"]
data_file = fields.Binary( data_file = fields.Binary(
@@ -78,7 +78,7 @@ class AccountBankStatementImportPayPalMappingWizard(models.TransientModel):
@api.onchange("data_file") @api.onchange("data_file")
def _onchange_data_file(self): def _onchange_data_file(self):
Parser = self.env["account.bank.statement.import.paypal.parser"] Parser = self.env["account.statement.import.paypal.parser"]
if not self.data_file: if not self.data_file:
return return
header = Parser.parse_header(b64decode(self.data_file)) header = Parser.parse_header(b64decode(self.data_file))
@@ -154,13 +154,13 @@ class AccountBankStatementImportPayPalMappingWizard(models.TransientModel):
def import_mapping(self): def import_mapping(self):
self.ensure_one() self.ensure_one()
mapping = self.env["account.bank.statement.import.paypal.mapping"].create( mapping = self.env["account.statement.import.paypal.mapping"].create(
self._get_mapping_values() self._get_mapping_values()
) )
return { return {
"type": "ir.actions.act_window", "type": "ir.actions.act_window",
"name": _("Imported Mapping"), "name": _("Imported Mapping"),
"res_model": "account.bank.statement.import.paypal.mapping", "res_model": "account.statement.import.paypal.mapping",
"res_id": mapping.id, "res_id": mapping.id,
"view_mode": "form", "view_mode": "form",
"view_id": False, "view_id": False,

View File

@@ -6,14 +6,9 @@
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
--> -->
<odoo> <odoo>
<record <record id="account_statement_import_paypal_mapping_wizard_form" model="ir.ui.view">
id="account_bank_statement_import_paypal_mapping_wizard_form" <field name="name">account.statement.import.paypal.mapping.wizard.form</field>
model="ir.ui.view" <field name="model">account.statement.import.paypal.mapping.wizard</field>
>
<field
name="name"
>account.bank.statement.import.paypal.mapping.wizard.form</field>
<field name="model">account.bank.statement.import.paypal.mapping.wizard</field>
<field name="mode">primary</field> <field name="mode">primary</field>
<field name="inherit_id" ref="multi_step_wizard.multi_step_wizard_form" /> <field name="inherit_id" ref="multi_step_wizard.multi_step_wizard_form" />
<field name="arch" type="xml"> <field name="arch" type="xml">
@@ -163,13 +158,18 @@
</xpath> </xpath>
</field> </field>
</record> </record>
<act_window <record
id="action_account_bank_statement_import_paypal_mapping_wizard" id="action_account_statement_import_paypal_mapping_wizard"
name="Import Mapping" model="ir.actions.act_window"
res_model="account.bank.statement.import.paypal.mapping.wizard" >
binding_model="account.bank.statement.import.paypal.mapping" <field name="name">Import Mapping</field>
view_mode="form" <field name="res_model">account.statement.import.paypal.mapping.wizard</field>
target="new" <field
binding_views="form" name="binding_model_id"
/> ref="model_account_statement_import_paypal_mapping"
/>
<field name="view_mode">form</field>
<field name="target">new</field>
<field name="binding_view_types">form</field>
</record>
</odoo> </odoo>

View File

@@ -1,3 +1,2 @@
# generated from manifests external_dependencies # generated from manifests external_dependencies
csv
ofxparse ofxparse

View File

@@ -1 +0,0 @@
../../../../account_bank_statement_import_paypal

View File

@@ -0,0 +1 @@
../../../../account_statement_import_paypal