Browse Source
[MIG] account_bank_statement_import_qif: Migration to 9.0
[MIG] account_bank_statement_import_qif: Migration to 9.0
* Manifest reformat * Added license and contributors * Tests improved * Added matching partners * Added supported format in viewpull/129/head
Pedro M. Baeza
9 years ago
10 changed files with 131 additions and 110 deletions
-
52account_bank_statement_import_qif/README.rst
-
4account_bank_statement_import_qif/__init__.py
-
20account_bank_statement_import_qif/__openerp__.py
-
49account_bank_statement_import_qif/i18n/account_bank_statement_import_qif.pot
-
4account_bank_statement_import_qif/i18n/es.po
-
40account_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
-
54account_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': '9.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', |
|||
], |
|||
'data': [ |
|||
'wizards/account_bank_statement_import_qif_view.xml', |
|||
], |
|||
'auto_install': False, |
|||
'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,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