[tryton-debian-vcs] tryton-modules-production branch upstream updated. upstream/4.6.0-1-gc08dc95
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Sun Jan 7 12:57:40 UTC 2018
The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-production.git;a=commitdiff;h=upstream/4.6.0-1-gc08dc95
commit c08dc95cc00a1e633bef3a99e1d63154cef971b5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Jan 6 11:41:22 2018 +0100
Adding upstream version 4.6.1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 516a644..a2ecdb9 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.6.1 - 2018-01-04
+* Bug fixes (see mercurial logs for details)
+
Version 4.6.0 - 2017-10-30
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index 81477b5..c2954aa 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_production
-Version: 4.6.0
+Version: 4.6.1
Summary: Tryton module for production
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/production.py b/production.py
index f697d0b..49fb95c 100644
--- a/production.py
+++ b/production.py
@@ -62,7 +62,7 @@ class Production(Workflow, ModelSQL, ModelView):
],
states={
'readonly': (~Eval('state').in_(['request', 'draft'])
- | Eval('inputs', True) | Eval('outputs', True)),
+ | Eval('inputs', [-1]) | Eval('outputs', [-1])),
},
depends=['state'])
location = fields.Many2One('stock.location', 'Location', required=True,
@@ -71,7 +71,7 @@ class Production(Workflow, ModelSQL, ModelView):
],
states={
'readonly': (~Eval('state').in_(['request', 'draft'])
- | Eval('inputs', True) | Eval('outputs', True)),
+ | Eval('inputs', [-1]) | Eval('outputs', [-1])),
},
depends=['state'])
product = fields.Many2One('product.product', 'Product',
diff --git a/tryton.cfg b/tryton.cfg
index 32d3b2c..03b1442 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.6.0
+version=4.6.1
depends:
company
ir
diff --git a/trytond_production.egg-info/PKG-INFO b/trytond_production.egg-info/PKG-INFO
index 619d421..03ad9de 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: 4.6.0
+Version: 4.6.1
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