Browse Source

[FIX] Copyright headers, vim line and manifest keys.

pull/15/head
Ronald Portier (Therp BV) 9 years ago
parent
commit
6fe358a6cd
  1. 2
      account_bank_statement_import/__openerp__.py
  2. 2
      account_bank_statement_import_ofx/__openerp__.py
  3. 2
      account_bank_statement_import_qif/__openerp__.py
  4. 5
      bank_statement_parse/__init__.py
  5. 5
      bank_statement_parse/__openerp__.py
  6. 1
      bank_statement_parse_mt940/__openerp__.py
  7. 3
      bank_statement_parse_mt940/mt940.py
  8. 1
      bank_statement_parse_nl_ing_mt940/__openerp__.py
  9. 3
      bank_statement_parse_nl_rabo_mt940/__init__.py
  10. 21
      bank_statement_parse_nl_rabo_mt940/__openerp__.py
  11. 1
      bank_statement_parse_nl_rabo_mt940/mt940.py

2
account_bank_statement_import/__openerp__.py

@ -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)',

2
account_bank_statement_import_ofx/__openerp__.py

@ -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
account_bank_statement_import_qif/__openerp__.py

@ -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)',

5
bank_statement_parse/__init__.py

@ -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:

5
bank_statement_parse/__openerp__.py

@ -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,
}

1
bank_statement_parse_mt940/__openerp__.py

@ -28,6 +28,5 @@
'account_bank_statement_import',
'bank_statement_parse',
],
'data': [],
'installable': True
}

3
bank_statement_parse_mt940/mt940.py

@ -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

1
bank_statement_parse_nl_ing_mt940/__openerp__.py

@ -27,7 +27,6 @@
'depends': [
'bank_statement_parse_mt940'
],
'data': [],
'demo': [
'demo/demo_data.xml',
],

3
bank_statement_parse_nl_rabo_mt940/__init__.py

@ -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

21
bank_statement_parse_nl_rabo_mt940/__openerp__.py

@ -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,
}

1
bank_statement_parse_nl_rabo_mt940/mt940.py

@ -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

Loading…
Cancel
Save