[DEL] No more any need for porting account_iban_preserve_domestic.

- IBAN is now required for all countries/banks using IBAN accounts.
This commit is contained in:
Ronald Portier
2014-10-27 15:01:01 +01:00
parent e10b5c3c9a
commit 8b15aef945
7 changed files with 0 additions and 190 deletions

View File

@@ -1 +0,0 @@
import res_partner_bank

View File

@@ -1,53 +0,0 @@
##############################################################################
#
# Copyright (C) 2012 - 2013 Therp BV (<http://therp.nl>).
#
# All other contributions are (C) by their respective contributors
#
# All Rights Reserved
#
# 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
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
{
'name': 'Domestic bank account number',
'version': '0.1.163',
'license': 'AGPL-3',
'author': 'Therp BV',
'website': 'https://launchpad.net/banking-addons',
'category': 'Banking addons',
'depends': [
'base_iban',
'account',
],
'data': [
'res_partner_bank_view.xml'
],
'description': '''
This module is compatible with OpenERP 7.0.
The IBAN module in OpenERP 6.1/7.0 registers the IBAN
on the same field as the domestic account number,
instead of keeping both on separate fields as is the
case in 6.0.
This module adds a field to register the domestic account
number on IBANs, as the domestic account number is
still in use in certain regions. This should make for a
smoother migration to SEPA.
''',
'active': False,
'installable': False,
}

View File

@@ -1,27 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * account_iban_preserve_domestic
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-25 16:02+0000\n"
"PO-Revision-Date: 2013-10-25 16:02+0000\n"
"Last-Translator: <>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: \n"
"Plural-Forms: \n"
#. module: account_iban_preserve_domestic
#: field:res.partner.bank,acc_number_domestic:0
msgid "Domestic Account Number"
msgstr ""
#. module: account_iban_preserve_domestic
#: model:ir.model,name:account_iban_preserve_domestic.model_res_partner_bank
msgid "Bank Accounts"
msgstr ""

View File

@@ -1,27 +0,0 @@
# Translation of OpenERP Server.
# This file contains the translation of the following modules:
# * account_iban_preserve_domestic
#
msgid ""
msgstr ""
"Project-Id-Version: OpenERP Server 7.0\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-10-25 16:02+0000\n"
"PO-Revision-Date: 2013-11-11 17:54+0000\n"
"Last-Translator: Erwin van der Ploeg (BAS Solutions) <Unknown>\n"
"Language-Team: \n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-05-31 06:02+0000\n"
"X-Generator: Launchpad (build 17031)\n"
#. module: account_iban_preserve_domestic
#: field:res.partner.bank,acc_number_domestic:0
msgid "Domestic Account Number"
msgstr "Nationaal rekening nummer"
#. module: account_iban_preserve_domestic
#: model:ir.model,name:account_iban_preserve_domestic.model_res_partner_bank
msgid "Bank Accounts"
msgstr "Bankrekeningen"

View File

@@ -1,28 +0,0 @@
# Brazilian Portuguese translation for banking-addons
# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
# This file is distributed under the same license as the banking-addons package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
#
msgid ""
msgstr ""
"Project-Id-Version: banking-addons\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
"POT-Creation-Date: 2013-10-25 16:02+0000\n"
"PO-Revision-Date: 2013-12-25 12:28+0000\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Launchpad-Export-Date: 2014-05-31 06:02+0000\n"
"X-Generator: Launchpad (build 17031)\n"
#. module: account_iban_preserve_domestic
#: field:res.partner.bank,acc_number_domestic:0
msgid "Domestic Account Number"
msgstr ""
#. module: account_iban_preserve_domestic
#: model:ir.model,name:account_iban_preserve_domestic.model_res_partner_bank
msgid "Bank Accounts"
msgstr ""

View File

@@ -1,32 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# This module copyright (C) 2012 - 2013 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
# published by the Free Software Foundation, either version 3 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
##############################################################################
from openerp.osv import fields, orm
class res_partner_bank(orm.Model):
''' Adds a field for domestic account numbers '''
_inherit = "res.partner.bank"
_columns = {
'acc_number_domestic': fields.char(
'Domestic Account Number', size=64)
}

View File

@@ -1,22 +0,0 @@
<?xml version="1.0" encoding="utf-8"?>
<openerp>
<data>
<!-- add the field to the partner bank form, as defined in
the base module -->
<record id="view_partner_bank_form" model="ir.ui.view">
<field name="name">res.partner.bank.form</field>
<field name="model">res.partner.bank</field>
<field name="inherit_id" ref="base.view_partner_bank_form"/>
<field name="arch" type="xml">
<field name="acc_number" position="after">
<newline/>
<field name="acc_number_domestic"
attrs="{'invisible': [('state', '!=', 'iban')]}"
/>
</field>
</field>
</record>
</data>
</openerp>