[tryton-debian-vcs] tryton-modules-account-dunning-letter branch upstream updated. upstream/3.0.1-1-g814b3dd

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Mar 26 19:49:31 UTC 2014


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-dunning-letter.git;a=commitdiff;h=upstream/3.0.1-1-g814b3dd

commit 814b3ddbeaa43e4090732642d4963b1f5bf97b64
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Mar 26 18:44:48 2014 +0100

    Adding upstream version 3.0.2.

diff --git a/CHANGELOG b/CHANGELOG
index be7289e..a33d539 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.0.2 - 2014-03-22
+* Bug fixes (see mercurial logs for details)
+
 Version 3.0.1 - 2013-12-04
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index 1ef62b0..f8646f0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2013 Cédric Krier.
-Copyright (C) 2013 B2CK SPRL.
+Copyright (C) 2013-2014 Cédric Krier.
+Copyright (C) 2013-2014 B2CK SPRL.
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
diff --git a/PKG-INFO b/PKG-INFO
index fc7dfd5..f097a54 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_account_dunning_letter
-Version: 3.0.1
+Version: 3.0.2
 Summary: Tryton module for account dunning letter
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/dunning.py b/dunning.py
index 08fec08..1b163cf 100644
--- a/dunning.py
+++ b/dunning.py
@@ -121,7 +121,8 @@ class Letter(CompanyReport):
                         ],
                     order=[('party', 'ASC'), ('id', 'ASC')]))
         payments = list(chain(*payments))
-        return dict(groupby(payments, attrgetter('party')))
+        return dict((party, list(payments))
+            for party, payments in groupby(payments, attrgetter('party')))
 
     @staticmethod
     def get_payment_amount(payment):
diff --git a/tryton.cfg b/tryton.cfg
index 3f21470..683bb4c 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.0.1
+version=3.0.2
 depends:
     account
     account_dunning
diff --git a/trytond_account_dunning_letter.egg-info/PKG-INFO b/trytond_account_dunning_letter.egg-info/PKG-INFO
index 2d8f18c..8f0eb9b 100644
--- a/trytond_account_dunning_letter.egg-info/PKG-INFO
+++ b/trytond_account_dunning_letter.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-account-dunning-letter
-Version: 3.0.1
+Version: 3.0.2
 Summary: Tryton module for account dunning letter
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-account-dunning-letter



More information about the tryton-debian-vcs mailing list