[tryton-debian-vcs] tryton-modules-stock-supply-forecast branch upstream-3.6 updated. upstream/3.6.0-1-gf6c3687
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Jan 5 10:57:59 UTC 2017
The following commit has been merged in the upstream-3.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock-supply-forecast.git;a=commitdiff;h=upstream/3.6.0-1-gf6c3687
commit f6c368750d7c06ba647f62ba52fd42db794f5593
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Wed Jan 4 12:44:11 2017 +0100
Adding upstream version 3.6.1.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 824163d..036a6b5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.6.1 - 2017-01-03
+* Bug fixes (see mercurial logs for details)
+
Version 3.6.0 - 2015-04-20
* Bug fixes (see mercurial logs for details)
* Add support for PyPy
diff --git a/COPYRIGHT b/COPYRIGHT
index 196a420..4f1c2b0 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,5 +1,5 @@
-Copyright (C) 2011-2015 Cédric Krier.
-Copyright (C) 2011-2015 B2CK SPRL.
+Copyright (C) 2011-2017 Cédric Krier.
+Copyright (C) 2011-2017 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 9c3b187..459a953 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_stock_supply_forecast
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module to add forecast to supply computation
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/purchase_request.py b/purchase_request.py
index 459d25c..f803609 100644
--- a/purchase_request.py
+++ b/purchase_request.py
@@ -10,7 +10,7 @@ class PurchaseRequest:
__name__ = 'purchase.request'
@classmethod
- def generate_requests(cls):
+ def generate_requests(cls, *args, **kwargs):
pool = Pool()
Forecast = pool.get('stock.forecast')
Date = pool.get('ir.date')
@@ -22,5 +22,5 @@ class PurchaseRequest:
('state', '=', 'done'),
])
Forecast.create_moves(forecasts)
- super(PurchaseRequest, cls).generate_requests()
+ super(PurchaseRequest, cls).generate_requests(*args, **kwargs)
Forecast.delete_moves(forecasts)
diff --git a/tryton.cfg b/tryton.cfg
index be11eec..5294a01 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.6.0
+version=3.6.1
depends:
ir
stock_supply
diff --git a/trytond_stock_supply_forecast.egg-info/PKG-INFO b/trytond_stock_supply_forecast.egg-info/PKG-INFO
index 32e0ea3..78dfa47 100644
--- a/trytond_stock_supply_forecast.egg-info/PKG-INFO
+++ b/trytond_stock_supply_forecast.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-stock-supply-forecast
-Version: 3.6.0
+Version: 3.6.1
Summary: Tryton module to add forecast to supply computation
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_stock_supply_forecast.egg-info/requires.txt b/trytond_stock_supply_forecast.egg-info/requires.txt
index d3d7fa9..eb80332 100644
--- a/trytond_stock_supply_forecast.egg-info/requires.txt
+++ b/trytond_stock_supply_forecast.egg-info/requires.txt
@@ -1,3 +1,3 @@
trytond_stock_supply >= 3.6, < 3.7
trytond_stock_forecast >= 3.6, < 3.7
-trytond >= 3.6, < 3.7
\ No newline at end of file
+trytond >= 3.6, < 3.7
--
tryton-modules-stock-supply-forecast
More information about the tryton-debian-vcs
mailing list