[tryton-debian-vcs] tryton-modules-product branch debian-jessie-3.0 updated. debian/3.0.1-1-2-g2b65e21

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Jul 15 14:21:22 UTC 2015


The following commit has been merged in the debian-jessie-3.0 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-product.git;a=commitdiff;h=debian/3.0.1-1-2-g2b65e21

commit 2b65e21c18f09758c48188fecdf7885787e0beb9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 12:54:07 2015 +0200

    Releasing debian version 3.0.2-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 65ab0a1..85cc915 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-product (3.0.2-1) unstable; urgency=medium
+
+  * Merging upstream version 3.0.2.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 15 Jul 2015 12:54:07 +0200
+
 tryton-modules-product (3.0.1-1) unstable; urgency=medium
 
   * Removing  LC_ALL=C.UTF-8 as build environment.
commit fe4c9ca956474f2f9d5f16d8061f06bf45ca7544
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jul 15 12:54:06 2015 +0200

    Merging upstream version 3.0.2.

diff --git a/CHANGELOG b/CHANGELOG
index 93781a5..5df3b36 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.0.2 - 2015-07-13
+* Bug fixes (see mercurial logs for details)
+
 Version 3.0.1 - 2015-02-22
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 5371712..537c1f2 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_product
-Version: 3.0.1
+Version: 3.0.2
 Summary: Tryton module with products
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/tryton.cfg b/tryton.cfg
index fc473a9..c8571e6 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.0.1
+version=3.0.2
 depends:
     ir
     res
diff --git a/trytond_product.egg-info/PKG-INFO b/trytond_product.egg-info/PKG-INFO
index 31e7a32..606a69d 100644
--- a/trytond_product.egg-info/PKG-INFO
+++ b/trytond_product.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-product
-Version: 3.0.1
+Version: 3.0.2
 Summary: Tryton module with products
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/uom.py b/uom.py
index 987a3f0..21928b5 100644
--- a/uom.py
+++ b/uom.py
@@ -1,5 +1,6 @@
 #This file is part of Tryton.  The COPYRIGHT file at the top level of
 #this repository contains the full copyright notices and license terms.
+from __future__ import division
 from decimal import Decimal
 from sql import Table
 
@@ -133,7 +134,11 @@ class Uom(ModelSQL, ModelView):
 
     @staticmethod
     def round(number, precision=1.0):
-        return round(number / precision) * precision
+        i, d = divmod(precision, 1)
+        base = round(number / precision)
+        # Instead of multiply by the decimal part, we must divide by the
+        # integer to avoid precision lost due to float
+        return (base * i) + ((base / (1 / d)) if d != 0 else 0)
 
     @classmethod
     def validate(cls, uoms):
-- 
tryton-modules-product



More information about the tryton-debian-vcs mailing list