[tryton-debian-vcs] tryton-modules-sale-opportunity branch upstream updated. upstream/3.4.1-1-g2050527

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Feb 25 00:44:37 UTC 2015


The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale-opportunity.git;a=commitdiff;h=upstream/3.4.1-1-g2050527

commit 2050527094f7e75f0a975fea5f33189e7a9847cf
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Feb 24 19:04:44 2015 +0100

    Adding upstream version 3.4.2.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index 15ea0fe..d58035c 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.2 - 2015-02-21
+* Bug fixes (see mercurial logs for details)
+
 Version 3.4.1 - 2014-12-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index d304d80..56606a0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
 Copyright (C) 2010-2011 Open Labs Business Solutions.
-Copyright (C) 2010-2014 Cédric Krier.
-Copyright (C) 2010-2014 B2CK SPRL.
+Copyright (C) 2010-2015 Cédric Krier.
+Copyright (C) 2010-2015 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 489046d..3741640 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_sale_opportunity
-Version: 3.4.1
+Version: 3.4.2
 Summary: Tryton module with leads and opportunities
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/opportunity.py b/opportunity.py
index da767ec..02419e7 100644
--- a/opportunity.py
+++ b/opportunity.py
@@ -499,9 +499,7 @@ class SaleOpportunityHistory(ModelSQL, ModelView):
         for name, field in cls._fields.iteritems():
             if name in ('id', 'opportunity', 'date', 'user'):
                 continue
-            try:
-                field.sql_type()
-            except NotImplementedError:
+            if hasattr(field, 'set'):
                 continue
             column = Column(opportunity_history, name)
             columns.append(column.as_(name))
diff --git a/tryton.cfg b/tryton.cfg
index 79591f7..aeb7b7b 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.4.1
+version=3.4.2
 depends:
     account
     company
diff --git a/trytond_sale_opportunity.egg-info/PKG-INFO b/trytond_sale_opportunity.egg-info/PKG-INFO
index 5631334..298a72b 100644
--- a/trytond_sale_opportunity.egg-info/PKG-INFO
+++ b/trytond_sale_opportunity.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-sale-opportunity
-Version: 3.4.1
+Version: 3.4.2
 Summary: Tryton module with leads and opportunities
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-sale-opportunity



More information about the tryton-debian-vcs mailing list