Hello community,

here is the log from the commit of package trytond_stock for openSUSE:Factory 
checked in at 2018-12-08 11:21:38
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_stock (Old)
 and      /work/SRC/openSUSE:Factory/.trytond_stock.new.19453 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "trytond_stock"

Sat Dec  8 11:21:38 2018 rev:10 rq:653623 version:4.2.8

Changes:
--------
--- /work/SRC/openSUSE:Factory/trytond_stock/trytond_stock.changes      
2018-05-15 10:33:38.455661616 +0200
+++ /work/SRC/openSUSE:Factory/.trytond_stock.new.19453/trytond_stock.changes   
2018-12-08 11:21:53.182752348 +0100
@@ -1,0 +2,5 @@
+Tue Nov 13 15:13:12 UTC 2018 - Axel Braun <[email protected]>
+
+- Version 4.2.8 - Bugfix Release
+
+-------------------------------------------------------------------

Old:
----
  trytond_stock-4.2.7.tar.gz

New:
----
  trytond_stock-4.2.8.tar.gz

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ trytond_stock.spec ++++++
--- /var/tmp/diff_new_pack.K0vaVj/_old  2018-12-08 11:21:53.746751808 +0100
+++ /var/tmp/diff_new_pack.K0vaVj/_new  2018-12-08 11:21:53.746751808 +0100
@@ -13,13 +13,13 @@
 # license that conforms to the Open Source Definition (Version 1.9)
 # published by the Open Source Initiative.
 
-# Please submit bugfixes or comments via http://bugs.opensuse.org/
+# Please submit bugfixes or comments via https://bugs.opensuse.org/
 #
 
 
 %define majorver 4.2
 Name:           trytond_stock
-Version:        %{majorver}.7
+Version:        %{majorver}.8
 Release:        0
 Summary:        The "stock" module for the Tryton ERP system
 License:        GPL-3.0-only

++++++ trytond_stock-4.2.7.tar.gz -> trytond_stock-4.2.8.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-4.2.7/.hgtags 
new/trytond_stock-4.2.8/.hgtags
--- old/trytond_stock-4.2.7/.hgtags     2018-04-03 18:18:16.000000000 +0200
+++ new/trytond_stock-4.2.8/.hgtags     2018-11-12 23:47:34.000000000 +0100
@@ -22,3 +22,4 @@
 6947c089e6ef6f58bb8de5ace265246dc6d2768a 4.2.5
 1e58aa853ed03710d5dff62d9d62e5d1c42128e3 4.2.6
 732c51e75017bd833194d9011b7edcc313252b8d 4.2.7
+2c3a987e08ca92e9bda247240d36a39c0e222254 4.2.8
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-4.2.7/CHANGELOG 
new/trytond_stock-4.2.8/CHANGELOG
--- old/trytond_stock-4.2.7/CHANGELOG   2018-04-03 18:18:15.000000000 +0200
+++ new/trytond_stock-4.2.8/CHANGELOG   2018-11-12 23:47:34.000000000 +0100
@@ -1,3 +1,6 @@
+Version 4.2.8 - 2018-11-12
+* Bug fixes (see mercurial logs for details)
+
 Version 4.2.7 - 2018-04-03
 * Bug fixes (see mercurial logs for details)
 
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-4.2.7/PKG-INFO 
new/trytond_stock-4.2.8/PKG-INFO
--- old/trytond_stock-4.2.7/PKG-INFO    2018-04-03 18:18:16.000000000 +0200
+++ new/trytond_stock-4.2.8/PKG-INFO    2018-11-12 23:47:35.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_stock
-Version: 4.2.7
+Version: 4.2.8
 Summary: Tryton module for stock and inventory
 Home-page: http://www.tryton.org/
 Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-4.2.7/move.py 
new/trytond_stock-4.2.8/move.py
--- old/trytond_stock-4.2.7/move.py     2017-11-07 23:59:31.000000000 +0100
+++ new/trytond_stock-4.2.8/move.py     2018-10-02 13:04:20.000000000 +0200
@@ -515,7 +515,7 @@
                 for move in moves:
                     date = (move.effective_date if move.effective_date
                         else move.planned_date)
-                    if date and date < period.date:
+                    if date and date <= period.date:
                         cls.raise_user_error('period_closed', {
                                 'move': move.rec_name,
                                 'period': period.rec_name,
@@ -1039,7 +1039,7 @@
                     context.get('stock_assign'))
         elif PeriodCache:
             periods = Period.search([
-                    ('date', '<', context['stock_date_end']),
+                    ('date', '<=', context['stock_date_end']),
                     ('state', '=', 'closed'),
                     ], order=[('date', 'DESC')], limit=1)
             if periods:
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-4.2.7/tryton.cfg 
new/trytond_stock-4.2.8/tryton.cfg
--- old/trytond_stock-4.2.7/tryton.cfg  2018-03-01 23:06:39.000000000 +0100
+++ new/trytond_stock-4.2.8/tryton.cfg  2018-08-20 23:00:00.000000000 +0200
@@ -1,5 +1,5 @@
 [tryton]
-version=4.2.7
+version=4.2.8
 depends:
     company
     currency
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' 
'--exclude=.svnignore' old/trytond_stock-4.2.7/trytond_stock.egg-info/PKG-INFO 
new/trytond_stock-4.2.8/trytond_stock.egg-info/PKG-INFO
--- old/trytond_stock-4.2.7/trytond_stock.egg-info/PKG-INFO     2018-04-03 
18:18:16.000000000 +0200
+++ new/trytond_stock-4.2.8/trytond_stock.egg-info/PKG-INFO     2018-11-12 
23:47:35.000000000 +0100
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-stock
-Version: 4.2.7
+Version: 4.2.8
 Summary: Tryton module for stock and inventory
 Home-page: http://www.tryton.org/
 Author: Tryton


Reply via email to