[tryton-debian-vcs] tryton-modules-stock-supply-forecast branch upstream-3.8 updated. upstream/3.8.0-1-geddef1d

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.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock-supply-forecast.git;a=commitdiff;h=upstream/3.8.0-1-geddef1d

commit eddef1d43cb312d9fe3e3d8d0c4ea37b8420b538
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Jan 4 12:45:18 2017 +0100

    Adding upstream version 3.8.1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/CHANGELOG b/CHANGELOG
index 356ca60..a4ef5d0 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.8.1 - 2017-01-03
+* Bug fixes (see mercurial logs for details)
+
 Version 3.8.0 - 2015-11-02
 * Bug fixes (see mercurial logs for details)
 
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 eac8f63..7cbb999 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_stock_supply_forecast
-Version: 3.8.0
+Version: 3.8.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 98e044d..11bf645 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.8.0
+version=3.8.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 3211a15..0951661 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.8.0
+Version: 3.8.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 8adb4bb..794eea5 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.8, < 3.9
 trytond_stock_forecast >= 3.8, < 3.9
-trytond >= 3.8, < 3.9
\ No newline at end of file
+trytond >= 3.8, < 3.9
-- 
tryton-modules-stock-supply-forecast



More information about the tryton-debian-vcs mailing list