[tryton-debian-vcs] tryton-modules-production branch debian-jessie-2.8 updated. debian/2.8.2-1-2-g2d9391c
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun May 24 12:19:10 UTC 2015
The following commit has been merged in the debian-jessie-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-production.git;a=commitdiff;h=debian/2.8.2-1-2-g2d9391c
commit 2d9391cf0209fd1f2e9278a78472eb1e73c65454
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat May 23 21:09:45 2015 +0200
Releasing debian version 2.8.3-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 5025d09..897642f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-production (2.8.3-1) unstable; urgency=medium
+
+ * Merging upstream version 2.8.3.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 23 May 2015 21:09:45 +0200
+
tryton-modules-production (2.8.2-1) unstable; urgency=medium
* Merging upstream version 2.8.2.
commit 6fd276394515d1cd7c9174618d1608f5eaf305f5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat May 23 21:09:45 2015 +0200
Merging upstream version 2.8.3.
diff --git a/CHANGELOG b/CHANGELOG
index b6218f6..56ea420 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.3 - 2015-05-22
+* Bug fixes (see mercurial logs for details)
+
Version 2.8.2 - 2015-02-22
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index ae1e6a2..25b5106 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_production
-Version: 2.8.2
+Version: 2.8.3
Summary: Tryton module for production
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/production.py b/production.py
index 6638001..7089edf 100644
--- a/production.py
+++ b/production.py
@@ -363,7 +363,9 @@ class Production(Workflow, ModelSQL, ModelView):
else:
cost_price = input_.product.cost_price
cost += (Decimal(str(input_.internal_quantity)) * cost_price)
- return cost
+
+ digits = self.__class__.cost.digits
+ return cost.quantize(Decimal(str(10 ** -digits[1])))
def on_change_with_cost(self):
Uom = Pool().get('product.uom')
diff --git a/tryton.cfg b/tryton.cfg
index 29bdab7..ff4e965 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.8.2
+version=2.8.3
depends:
company
ir
diff --git a/trytond_production.egg-info/PKG-INFO b/trytond_production.egg-info/PKG-INFO
index 281053f..c10c495 100644
--- a/trytond_production.egg-info/PKG-INFO
+++ b/trytond_production.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-production
-Version: 2.8.2
+Version: 2.8.3
Summary: Tryton module for production
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-production
More information about the tryton-debian-vcs
mailing list