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