Browse Source
Merge pull request #92 from seb4itik/10.0-mig-account_bank_statement_import_qif
Merge pull request #92 from seb4itik/10.0-mig-account_bank_statement_import_qif
[10.0] [MIG] account_bank_statement_import_qifpull/101/head
Pedro M. Baeza
8 years ago
committed by
GitHub
21 changed files with 470 additions and 164 deletions
-
52account_bank_statement_import_qif/README.rst
-
4account_bank_statement_import_qif/__init__.py
-
22account_bank_statement_import_qif/__manifest__.py
-
49account_bank_statement_import_qif/i18n/account_bank_statement_import_qif.pot
-
43account_bank_statement_import_qif/i18n/de.po
-
23account_bank_statement_import_qif/i18n/es.po
-
41account_bank_statement_import_qif/i18n/fi.po
-
25account_bank_statement_import_qif/i18n/fr.po
-
41account_bank_statement_import_qif/i18n/fr_CH.po
-
41account_bank_statement_import_qif/i18n/gl.po
-
21account_bank_statement_import_qif/i18n/lt_LT.po
-
41account_bank_statement_import_qif/i18n/nb_NO.po
-
25account_bank_statement_import_qif/i18n/nl.po
-
21account_bank_statement_import_qif/i18n/pt_BR.po
-
42account_bank_statement_import_qif/i18n/pt_PT.po
-
21account_bank_statement_import_qif/i18n/sl.po
-
44account_bank_statement_import_qif/tests/test_import_bank_statement.py
-
0account_bank_statement_import_qif/tests/test_qif.qif
-
4account_bank_statement_import_qif/wizards/__init__.py
-
60account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py
-
14account_bank_statement_import_qif/wizards/account_bank_statement_import_qif_view.xml
@ -1,2 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
from . import account_bank_statement_import_qif |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from . import wizards |
@ -1,16 +1,24 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# Copyright 2015 Odoo S. A. |
|||
# Copyright 2015 Laurent Mignon <laurent.mignon@acsone.eu> |
|||
# Copyright 2015 Ronald Portier <rportier@therp.nl> |
|||
# Copyright 2016 Pedro M. Baeza <pedro.baeza@tecnativa.com> |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
{ |
|||
'name': 'Import QIF Bank Statement', |
|||
'category': 'Banking addons', |
|||
'version': '8.0.1.0.0', |
|||
'name': 'Import QIF Bank Statements', |
|||
'category': 'Accounting', |
|||
'version': '10.0.1.0.0', |
|||
'author': 'OpenERP SA,' |
|||
'Tecnativa,' |
|||
'Odoo Community Association (OCA)', |
|||
'website': 'https://github.com/OCA/bank-statement-import', |
|||
'images': [], |
|||
'depends': [ |
|||
'account_bank_statement_import' |
|||
'account_bank_statement_import', |
|||
], |
|||
'auto_install': False, |
|||
'installable': False, |
|||
'data': [ |
|||
'wizards/account_bank_statement_import_qif_view.xml', |
|||
], |
|||
'installable': True, |
|||
'license': 'AGPL-3', |
|||
} |
@ -1,49 +0,0 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * account_bank_statement_import_qif |
|||
# |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 8.0\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2015-06-08 12:01+0000\n" |
|||
"PO-Revision-Date: 2015-06-08 12:01+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_bank_statement_import_qif |
|||
#: help:account.bank.statement.import,journal_id:0 |
|||
msgid "Accounting journal related to the bank statement you're importing. It has be be manually chosen for statement formats which doesn't allow automatic journal detection (QIF for example)." |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/account_bank_statement_import_qif.py:54 |
|||
#, python-format |
|||
msgid "Could not decipher the QIF file." |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: field:account.bank.statement.import,hide_journal_field:0 |
|||
msgid "Hide the journal field in the view" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.model,name:account_bank_statement_import_qif.model_account_bank_statement_import |
|||
msgid "Import Bank Statement" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: field:account.bank.statement.import,journal_id:0 |
|||
msgid "Journal" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/account_bank_statement_import_qif.py:98 |
|||
#, python-format |
|||
msgid "This file is either not a bank statement or is not correctly formed." |
|||
msgstr "" |
|||
|
@ -0,0 +1,43 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * account_bank_statement_import_qif |
|||
# |
|||
# Translators: |
|||
# Rudolf Schnapka <rs@techno-flex.de>, 2016 |
|||
# Thomas A. Jaeger <tj@jamotion.ch>, 2016 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-12-09 17:00+0000\n" |
|||
"PO-Revision-Date: 2016-12-09 17:00+0000\n" |
|||
"Last-Translator: Thomas A. Jaeger <tj@jamotion.ch>, 2016\n" |
|||
"Language-Team: German (https://www.transifex.com/oca/teams/23907/de/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: de\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:39 |
|||
#, python-format |
|||
msgid "Could not decipher the QIF file." |
|||
msgstr "Konnte QIF-Datei nicht entziffern." |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.model,name:account_bank_statement_import_qif.model_account_bank_statement_import |
|||
msgid "Import Bank Statement" |
|||
msgstr "Kontoauszug importieren" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.ui.view,arch_db:account_bank_statement_import_qif.account_bank_statement_import_view |
|||
msgid "Quicken Interchange Format (.qif)" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:74 |
|||
#, python-format |
|||
msgid "This file is either not a bank statement or is not correctly formed." |
|||
msgstr "" |
|||
"Diese Datei ist entweder kein Kontoauszug oder ist fehlerhaft formatiert." |
@ -0,0 +1,41 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * account_bank_statement_import_qif |
|||
# |
|||
# Translators: |
|||
# Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2017 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-12-10 05:00+0000\n" |
|||
"PO-Revision-Date: 2016-12-10 05:00+0000\n" |
|||
"Last-Translator: Jarmo Kortetjärvi <jarmo.kortetjarvi@gmail.com>, 2017\n" |
|||
"Language-Team: Finnish (https://www.transifex.com/oca/teams/23907/fi/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: fi\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:39 |
|||
#, python-format |
|||
msgid "Could not decipher the QIF file." |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.model,name:account_bank_statement_import_qif.model_account_bank_statement_import |
|||
msgid "Import Bank Statement" |
|||
msgstr "Tuo pankkiaineisto" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.ui.view,arch_db:account_bank_statement_import_qif.account_bank_statement_import_view |
|||
msgid "Quicken Interchange Format (.qif)" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:74 |
|||
#, python-format |
|||
msgid "This file is either not a bank statement or is not correctly formed." |
|||
msgstr "" |
@ -0,0 +1,41 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * account_bank_statement_import_qif |
|||
# |
|||
# Translators: |
|||
# OCA Transbot <transbot@odoo-community.org>, 2016 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-12-09 17:00+0000\n" |
|||
"PO-Revision-Date: 2016-12-09 17:00+0000\n" |
|||
"Last-Translator: OCA Transbot <transbot@odoo-community.org>, 2016\n" |
|||
"Language-Team: French (Switzerland) (https://www.transifex.com/oca/teams/23907/fr_CH/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: fr_CH\n" |
|||
"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:39 |
|||
#, python-format |
|||
msgid "Could not decipher the QIF file." |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.model,name:account_bank_statement_import_qif.model_account_bank_statement_import |
|||
msgid "Import Bank Statement" |
|||
msgstr "Importer Relevé" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.ui.view,arch_db:account_bank_statement_import_qif.account_bank_statement_import_view |
|||
msgid "Quicken Interchange Format (.qif)" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:74 |
|||
#, python-format |
|||
msgid "This file is either not a bank statement or is not correctly formed." |
|||
msgstr "" |
@ -0,0 +1,41 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * account_bank_statement_import_qif |
|||
# |
|||
# Translators: |
|||
# Alejandro Santana <alejandrosantana@anubia.es>, 2016 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-12-09 17:00+0000\n" |
|||
"PO-Revision-Date: 2016-12-09 17:00+0000\n" |
|||
"Last-Translator: Alejandro Santana <alejandrosantana@anubia.es>, 2016\n" |
|||
"Language-Team: Galician (https://www.transifex.com/oca/teams/23907/gl/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: gl\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:39 |
|||
#, python-format |
|||
msgid "Could not decipher the QIF file." |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.model,name:account_bank_statement_import_qif.model_account_bank_statement_import |
|||
msgid "Import Bank Statement" |
|||
msgstr "Importar extracto bancario" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.ui.view,arch_db:account_bank_statement_import_qif.account_bank_statement_import_view |
|||
msgid "Quicken Interchange Format (.qif)" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:74 |
|||
#, python-format |
|||
msgid "This file is either not a bank statement or is not correctly formed." |
|||
msgstr "" |
@ -0,0 +1,41 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * account_bank_statement_import_qif |
|||
# |
|||
# Translators: |
|||
# Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-12-09 17:00+0000\n" |
|||
"PO-Revision-Date: 2016-12-09 17:00+0000\n" |
|||
"Last-Translator: Imre Kristoffer Eilertsen <imreeil42@gmail.com>, 2016\n" |
|||
"Language-Team: Norwegian Bokmål (Norway) (https://www.transifex.com/oca/teams/23907/nb_NO/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: nb_NO\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:39 |
|||
#, python-format |
|||
msgid "Could not decipher the QIF file." |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.model,name:account_bank_statement_import_qif.model_account_bank_statement_import |
|||
msgid "Import Bank Statement" |
|||
msgstr "Importer bankutsagn" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.ui.view,arch_db:account_bank_statement_import_qif.account_bank_statement_import_view |
|||
msgid "Quicken Interchange Format (.qif)" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:74 |
|||
#, python-format |
|||
msgid "This file is either not a bank statement or is not correctly formed." |
|||
msgstr "" |
@ -0,0 +1,42 @@ |
|||
# Translation of Odoo Server. |
|||
# This file contains the translation of the following modules: |
|||
# * account_bank_statement_import_qif |
|||
# |
|||
# Translators: |
|||
# Pedro Castro Silva <pedrocs@sossia.pt>, 2016 |
|||
msgid "" |
|||
msgstr "" |
|||
"Project-Id-Version: Odoo Server 9.0c\n" |
|||
"Report-Msgid-Bugs-To: \n" |
|||
"POT-Creation-Date: 2016-12-09 17:00+0000\n" |
|||
"PO-Revision-Date: 2016-12-09 17:00+0000\n" |
|||
"Last-Translator: Pedro Castro Silva <pedrocs@sossia.pt>, 2016\n" |
|||
"Language-Team: Portuguese (Portugal) (https://www.transifex.com/oca/teams/23907/pt_PT/)\n" |
|||
"MIME-Version: 1.0\n" |
|||
"Content-Type: text/plain; charset=UTF-8\n" |
|||
"Content-Transfer-Encoding: \n" |
|||
"Language: pt_PT\n" |
|||
"Plural-Forms: nplurals=2; plural=(n != 1);\n" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:39 |
|||
#, python-format |
|||
msgid "Could not decipher the QIF file." |
|||
msgstr "Não foi possível decifrar o ficheiro QIF." |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.model,name:account_bank_statement_import_qif.model_account_bank_statement_import |
|||
msgid "Import Bank Statement" |
|||
msgstr "Importar Extrato Bancário" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: model:ir.ui.view,arch_db:account_bank_statement_import_qif.account_bank_statement_import_view |
|||
msgid "Quicken Interchange Format (.qif)" |
|||
msgstr "" |
|||
|
|||
#. module: account_bank_statement_import_qif |
|||
#: code:addons/account_bank_statement_import_qif/wizards/account_bank_statement_import_qif.py:74 |
|||
#, python-format |
|||
msgid "This file is either not a bank statement or is not correctly formed." |
|||
msgstr "" |
|||
"O ficheiro não é um extrato bancário ou não está corretamente formatado." |
@ -0,0 +1,4 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl). |
|||
|
|||
from . import account_bank_statement_import_qif |
@ -0,0 +1,14 @@ |
|||
<?xml version="1.0" ?> |
|||
<odoo> |
|||
|
|||
<record id="account_bank_statement_import_view" model="ir.ui.view"> |
|||
<field name="model">account.bank.statement.import</field> |
|||
<field name="inherit_id" ref="account_bank_statement_import.account_bank_statement_import_view"/> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//ul[@id='statement_format']" position="inside"> |
|||
<li>Quicken Interchange Format (.qif)</li> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
|
|||
</odoo> |
Write
Preview
Loading…
Cancel
Save
Reference in new issue