mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
Remove deprecated information in readme solve issue on currency the main currency is not the first line (line are ordered by currency name). So we should take the journal currency or company currency to know the right currency to use. Also add full header to avoid issue if the paypal header change
30 lines
855 B
Python
30 lines
855 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2014-2017 Akretion (http://www.akretion.com).
|
|
# @author Alexis de Lattre <alexis.delattre@akretion.com>
|
|
# @author Sébastien BEAU <sebastien.beau@akretion.com>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
{
|
|
"name": "Import Paypal Bank Statements",
|
|
'summary': 'Import Paypal CSV files as Bank Statements in Odoo',
|
|
"version": "10.0.1.0.0",
|
|
"category": "Accounting",
|
|
"website": "https://github.com/OCA/bank-statement-import",
|
|
"author": " Akretion, Odoo Community Association (OCA)",
|
|
"license": "AGPL-3",
|
|
"application": False,
|
|
"installable": True,
|
|
"external_dependencies": {
|
|
'python': ['unicodecsv'],
|
|
"bin": [],
|
|
},
|
|
"depends": [
|
|
"account_bank_statement_import",
|
|
],
|
|
"data": [
|
|
],
|
|
"demo": [
|
|
],
|
|
"qweb": [
|
|
]
|
|
}
|