[MERGE] merged triodos patch from Stefan Rijnhart (Therp)

This commit is contained in:
Pieter J. Kersten
2011-11-08 14:35:31 +01:00
8 changed files with 10 additions and 7 deletions

View File

@@ -25,7 +25,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Account Banking', 'name': 'Account Banking',
'version': '0.1.67', 'version': '0.1.68',
'license': 'GPL-3', 'license': 'GPL-3',
'author': 'EduSense BV', 'author': 'EduSense BV',
'website': 'http://www.edusense.nl', 'website': 'http://www.edusense.nl',

View File

@@ -26,7 +26,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Account Banking PATU module', 'name': 'Account Banking PATU module',
'version': '0.67', 'version': '0.68',
'license': 'GPL-3', 'license': 'GPL-3',
'author': 'Sami Haahtinen', 'author': 'Sami Haahtinen',
'website': 'http://ressukka.net', 'website': 'http://ressukka.net',

View File

@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
{ {
'name': 'abnamro (NL) Bank Statements Import', 'name': 'abnamro (NL) Bank Statements Import',
'version': '0.67', 'version': '0.68',
'license': 'GPL-3', 'license': 'GPL-3',
'author': 'Therp BV / EduSense BV', 'author': 'Therp BV / EduSense BV',
'website': 'https://launchpad.net/account-banking', 'website': 'https://launchpad.net/account-banking',

View File

@@ -25,7 +25,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Account Banking NL ClieOp', 'name': 'Account Banking NL ClieOp',
'version': '0.67', 'version': '0.68',
'license': 'GPL-3', 'license': 'GPL-3',
'author': 'EduSense BV', 'author': 'EduSense BV',
'website': 'http://www.edusense.nl', 'website': 'http://www.edusense.nl',

View File

@@ -25,7 +25,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Account Banking - Girotel', 'name': 'Account Banking - Girotel',
'version': '0.67', 'version': '0.68',
'license': 'GPL-3', 'license': 'GPL-3',
'author': 'EduSense BV', 'author': 'EduSense BV',
'website': 'http://www.edusense.nl', 'website': 'http://www.edusense.nl',

View File

@@ -25,7 +25,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Account Banking', 'name': 'Account Banking',
'version': '0.67', 'version': '0.68',
'license': 'GPL-3', 'license': 'GPL-3',
'author': 'EduSense BV', 'author': 'EduSense BV',
'website': 'http://www.edusense.nl', 'website': 'http://www.edusense.nl',

View File

@@ -27,7 +27,7 @@
############################################################################## ##############################################################################
{ {
'name': 'Triodos (NL) Bank Statements Import', 'name': 'Triodos (NL) Bank Statements Import',
'version': '0.67', 'version': '0.68',
'license': 'GPL-3', 'license': 'GPL-3',
'author': 'Therp BV / EduSense BV', 'author': 'Therp BV / EduSense BV',
'website': 'https://launchpad.net/account-banking', 'website': 'https://launchpad.net/account-banking',

View File

@@ -68,6 +68,9 @@ class transaction_message(object):
# Set statement_id based on week number # Set statement_id based on week number
self.statement_id = self.effective_date.strftime('%Yw%W') self.statement_id = self.effective_date.strftime('%Yw%W')
self.id = str(subno).zfill(4) self.id = str(subno).zfill(4)
# Normalize basic account numbers
self.remote_account = self.remote_account.replace('.', '').zfill(10)
self.local_account = self.local_account.replace('.', '').zfill(10)
class transaction(models.mem_bank_transaction): class transaction(models.mem_bank_transaction):
''' '''