mirror of
https://github.com/OCA/bank-statement-import.git
synced 2025-01-20 12:37:43 +02:00
[FIX] Copyright headers, vim line and manifest keys.
This commit is contained in:
@@ -1,7 +1,7 @@
|
|||||||
# -*- encoding: utf-8 -*-
|
# -*- encoding: utf-8 -*-
|
||||||
{
|
{
|
||||||
'name': 'Account Bank Statement Import',
|
'name': 'Account Bank Statement Import',
|
||||||
'category': 'Accounting & Finance',
|
'category': 'Banking addons',
|
||||||
'version': '1.0',
|
'version': '1.0',
|
||||||
'author': 'OpenERP SA,'
|
'author': 'OpenERP SA,'
|
||||||
'Odoo Community Association (OCA)',
|
'Odoo Community Association (OCA)',
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
# -*- encoding: utf-8 -*-
|
# -*- encoding: utf-8 -*-
|
||||||
{
|
{
|
||||||
'name': 'Import OFX Bank Statement',
|
'name': 'Import OFX Bank Statement',
|
||||||
'category': 'Accounting & Finance',
|
'category': 'Banking addons',
|
||||||
'version': '1.0',
|
'version': '1.0',
|
||||||
'author': 'OpenERP SA,'
|
'author': 'OpenERP SA,'
|
||||||
'Odoo Community Association (OCA)',
|
'Odoo Community Association (OCA)',
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
'name': 'Import QIF Bank Statement',
|
'name': 'Import QIF Bank Statement',
|
||||||
'category': 'Accounting & Finance',
|
'category': 'Banking addons',
|
||||||
'version': '1.0',
|
'version': '1.0',
|
||||||
'author': 'OpenERP SA,'
|
'author': 'OpenERP SA,'
|
||||||
'Odoo Community Association (OCA)',
|
'Odoo Community Association (OCA)',
|
||||||
|
|||||||
@@ -2,8 +2,7 @@
|
|||||||
"""Classes and models to parse bank statements and import them into Odoo."""
|
"""Classes and models to parse bank statements and import them into Odoo."""
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# Copyright (C) 2014 Therp BV - http://therp.nl.
|
# Copyright (C) 2014-2015 Therp BV <http://therp.nl>.
|
||||||
# All Rights Reserved
|
|
||||||
#
|
#
|
||||||
# WARNING: This program as such is intended to be used by professional
|
# WARNING: This program as such is intended to be used by professional
|
||||||
# programmers who take the whole responsability of assessing all potential
|
# programmers who take the whole responsability of assessing all potential
|
||||||
@@ -26,5 +25,3 @@
|
|||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
from . import parserlib
|
from . import parserlib
|
||||||
|
|
||||||
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
|
|
||||||
|
|||||||
@@ -3,8 +3,6 @@
|
|||||||
#
|
#
|
||||||
# Copyright (C) 2015 Therp BV <http://therp.nl>.
|
# Copyright (C) 2015 Therp BV <http://therp.nl>.
|
||||||
#
|
#
|
||||||
# All other contributions are (C) by their respective contributors
|
|
||||||
#
|
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Affero General Public License as
|
# it under the terms of the GNU Affero General Public License as
|
||||||
# published by the Free Software Foundation, either version 3 of the
|
# published by the Free Software Foundation, either version 3 of the
|
||||||
@@ -26,9 +24,6 @@
|
|||||||
'author': 'Odoo Community Association (OCA), Therp BV',
|
'author': 'Odoo Community Association (OCA), Therp BV',
|
||||||
'website': 'https://github.com/OCA/bank-statement-import',
|
'website': 'https://github.com/OCA/bank-statement-import',
|
||||||
'category': 'Banking addons',
|
'category': 'Banking addons',
|
||||||
'depends': [],
|
|
||||||
'data': [],
|
|
||||||
'js': [],
|
|
||||||
'installable': True,
|
'installable': True,
|
||||||
'auto_install': False,
|
'auto_install': False,
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -28,6 +28,5 @@
|
|||||||
'account_bank_statement_import',
|
'account_bank_statement_import',
|
||||||
'bank_statement_parse',
|
'bank_statement_parse',
|
||||||
],
|
],
|
||||||
'data': [],
|
|
||||||
'installable': True
|
'installable': True
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,8 +2,7 @@
|
|||||||
"""Generic parser for MT940 files, base for customized versions per bank."""
|
"""Generic parser for MT940 files, base for customized versions per bank."""
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# Copyright (C) 2014-2015 Therp BV <http://therp.nl>.
|
||||||
# This module copyright (C) 2014-2015 Therp BV <http://therp.nl>.
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Affero General Public License as
|
# it under the terms of the GNU Affero General Public License as
|
||||||
|
|||||||
@@ -27,7 +27,6 @@
|
|||||||
'depends': [
|
'depends': [
|
||||||
'bank_statement_parse_mt940'
|
'bank_statement_parse_mt940'
|
||||||
],
|
],
|
||||||
'data': [],
|
|
||||||
'demo': [
|
'demo': [
|
||||||
'demo/demo_data.xml',
|
'demo/demo_data.xml',
|
||||||
],
|
],
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# Copyright (C) 2014-2015 Therp BV (<http://therp.nl>).
|
||||||
# This module copyright (C) 2014 Therp BV (<http://therp.nl>).
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Affero General Public License as
|
# it under the terms of the GNU Affero General Public License as
|
||||||
|
|||||||
@@ -1,8 +1,7 @@
|
|||||||
# -*- coding: utf-8 -*-
|
# -*- coding: utf-8 -*-
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
# Copyright (C) 2014-2015 Therp BV <http://therp.nl>.
|
||||||
# This module copyright (C) 2014-2015 Therp BV <http://therp.nl>.
|
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU Affero General Public License as
|
# it under the terms of the GNU Affero General Public License as
|
||||||
@@ -19,19 +18,15 @@
|
|||||||
#
|
#
|
||||||
##############################################################################
|
##############################################################################
|
||||||
{
|
{
|
||||||
"name": "MT940 import for dutch Rabobank",
|
'name': 'MT940 import for dutch Rabobank',
|
||||||
"version": "1.1",
|
'version': '1.1',
|
||||||
'author': 'Odoo Community Association (OCA), Therp BV',
|
'author': 'Odoo Community Association (OCA), Therp BV',
|
||||||
'website': 'https://github.com/OCA/bank-statement-import',
|
'website': 'https://github.com/OCA/bank-statement-import',
|
||||||
"category": "Account Banking",
|
'category': 'Banking addons',
|
||||||
"depends": [
|
'depends': [
|
||||||
'bank_statement_parse_mt940'
|
'bank_statement_parse_mt940'
|
||||||
],
|
],
|
||||||
"data": [],
|
'auto_install': False,
|
||||||
"js": [],
|
'installable': True,
|
||||||
"css": [],
|
'application': False,
|
||||||
"qweb": [],
|
|
||||||
"auto_install": False,
|
|
||||||
"installable": True,
|
|
||||||
"application": False,
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
"""Implement parser for MT940 files - Rabobank dialect."""
|
"""Implement parser for MT940 files - Rabobank dialect."""
|
||||||
##############################################################################
|
##############################################################################
|
||||||
#
|
#
|
||||||
# OpenERP, Open Source Management Solution
|
|
||||||
# Copyright (C) 2015 Therp BV <http://therp.nl>.
|
# Copyright (C) 2015 Therp BV <http://therp.nl>.
|
||||||
#
|
#
|
||||||
# This program is free software: you can redistribute it and/or modify
|
# This program is free software: you can redistribute it and/or modify
|
||||||
|
|||||||
Reference in New Issue
Block a user