Alexis de Lattre
10 years ago
committed by
Pedro M. Baeza
6 changed files with 91 additions and 51 deletions
-
22account_bank_statement_import_qif/__openerp__.py
-
81account_bank_statement_import_qif/account_bank_statement_import_qif.py
-
24account_bank_statement_import_qif/account_bank_statement_import_qif_view.xml
-
BINaccount_bank_statement_import_qif/static/description/icon.png
-
4account_bank_statement_import_qif/tests/__init__.py
-
11account_bank_statement_import_qif/tests/test_import_bank_statement.py
@ -1,32 +1,28 @@ |
|||
# -*- coding: utf-8 -*- |
|||
# noqa: This is a backport from Odoo. OCA has no control over style here. |
|||
# flake8: noqa |
|||
|
|||
{ |
|||
'name': 'Import QIF Bank Statement', |
|||
'category' : 'Accounting & Finance', |
|||
'version': '1.0', |
|||
'author': 'OpenERP SA', |
|||
'description': ''' |
|||
Module to import QIF bank statements. |
|||
====================================== |
|||
|
|||
This module allows you to import the machine readable QIF Files in Odoo: they are parsed and stored in human readable format in |
|||
This module allows you to import the machine readable QIF Files in Odoo: they are parsed and stored in human readable format in |
|||
Accounting \ Bank and Cash \ Bank Statements. |
|||
|
|||
Bank Statements may be generated containing a subset of the QIF information (only those transaction lines that are required for the |
|||
creation of the Financial Accounting records). |
|||
|
|||
Backported from Odoo 9.0 |
|||
|
|||
When testing with the provided test file, make sure the demo data from the |
|||
base account_bank_statement_import module has been imported, or manually |
|||
create periods for the year 2013. |
|||
Important Note |
|||
--------------------------------------------- |
|||
Because of the QIF format limitation, we cannot ensure the same transactions aren't imported several times or handle multicurrency. |
|||
Whenever possible, you should use a more appropriate file format like OFX. |
|||
''', |
|||
'images' : [], |
|||
'images': [], |
|||
'depends': ['account_bank_statement_import'], |
|||
'demo': [], |
|||
'data': [], |
|||
'data': ['account_bank_statement_import_qif_view.xml'], |
|||
'auto_install': False, |
|||
'installable': True, |
|||
} |
|||
|
|||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: |
@ -0,0 +1,24 @@ |
|||
<?xml version="1.0" ?> |
|||
<openerp> |
|||
<data> |
|||
|
|||
<record id="account_bank_statement_import_view_inherited" model="ir.ui.view"> |
|||
<field name="name">Import Bank Statements Inherited</field> |
|||
<field name="model">account.bank.statement.import</field> |
|||
<field name="priority" eval="20"/> |
|||
<field name="inherit_id" ref="account_bank_statement_import.account_bank_statement_import_view" /> |
|||
<field name="arch" type="xml"> |
|||
<xpath expr="//field[@name='data_file']" position="after"> |
|||
<field name="hide_journal_field" invisible="1"/> |
|||
<label for="journal_id"/> |
|||
<field name="journal_id" |
|||
domain="[('type', '=', 'bank')]" |
|||
attrs="{'invisible': [('hide_journal_field', '=', True)]}" |
|||
context="{'default_type':'bank'}"/> |
|||
</xpath> |
|||
</field> |
|||
</record> |
|||
|
|||
</data> |
|||
</openerp> |
|||
|
After Width: 128 | Height: 128 | Size: 6.0 KiB |
Write
Preview
Loading…
Cancel
Save
Reference in new issue