[tryton-debian-vcs] tryton-modules-stock-supply branch debian updated. debian/4.4.0-2-2-g199f396
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Aug 17 12:43:46 UTC 2017
The following commit has been merged in the debian branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock-supply.git;a=commitdiff;h=debian/4.4.0-2-2-g199f396
commit 199f396de06cd4931f0990eed961f9f3d0779898
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Aug 17 12:38:02 2017 +0200
Releasing debian version 4.4.1-1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/debian/changelog b/debian/changelog
index 07e5d16..8766054 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,9 @@
+tryton-modules-stock-supply (4.4.1-1) unstable; urgency=medium
+
+ * Merging upstream version 4.4.1.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Thu, 17 Aug 2017 12:38:02 +0200
+
tryton-modules-stock-supply (4.4.0-2) unstable; urgency=medium
* Change the maintainer address to tryton-debian at lists.alioth.debian.org
commit 669f1eb64270898dab4c80e51c4b6c1aced95194
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Aug 17 12:38:01 2017 +0200
Merging upstream version 4.4.1.
diff --git a/CHANGELOG b/CHANGELOG
index a06c9c5..058cab4 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 4.4.1 - 2017-08-08
+* Bug fixes (see mercurial logs for details)
+
Version 4.4.0 - 2017-05-01
* Bug fixes (see mercurial logs for details)
* Add warning for late customer moves
diff --git a/PKG-INFO b/PKG-INFO
index 7315058..8efc6bf 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_stock_supply
-Version: 4.4.0
+Version: 4.4.1
Summary: Tryton module for stock supply
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/purchase_request.py b/purchase_request.py
index 685f855..8d15bfc 100644
--- a/purchase_request.py
+++ b/purchase_request.py
@@ -328,7 +328,7 @@ class PurchaseRequest:
min_quantity = min_quantities[product_id]
res_qty = res_qties.get(product_id)
res_date = res_dates.get(product_id)
- if current_qty < min_quantity:
+ if min_quantity is not None and current_qty < min_quantity:
if not res_date:
res_dates[product_id] = current_date
if (not res_qty) or (current_qty < res_qty):
diff --git a/setup.cfg b/setup.cfg
index 861a9f5..8bfd5a1 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -1,5 +1,4 @@
[egg_info]
tag_build =
tag_date = 0
-tag_svn_revision = 0
diff --git a/tryton.cfg b/tryton.cfg
index d7d577b..6647016 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=4.4.0
+version=4.4.1
depends:
account
ir
diff --git a/trytond_stock_supply.egg-info/PKG-INFO b/trytond_stock_supply.egg-info/PKG-INFO
index f71d94e..e5754ce 100644
--- a/trytond_stock_supply.egg-info/PKG-INFO
+++ b/trytond_stock_supply.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-stock-supply
-Version: 4.4.0
+Version: 4.4.1
Summary: Tryton module for stock supply
Home-page: http://www.tryton.org/
Author: Tryton
--
tryton-modules-stock-supply
More information about the tryton-debian-vcs
mailing list