Hello community,
here is the log from the commit of package trytond_purchase_request for
openSUSE:Factory checked in at 2019-12-10 22:43:23
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Factory/trytond_purchase_request (Old)
and /work/SRC/openSUSE:Factory/.trytond_purchase_request.new.4691 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_purchase_request"
Tue Dec 10 22:43:23 2019 rev:7 rq:755507 version:5.0.3
Changes:
--------
---
/work/SRC/openSUSE:Factory/trytond_purchase_request/trytond_purchase_request.changes
2019-12-04 14:19:51.354411623 +0100
+++
/work/SRC/openSUSE:Factory/.trytond_purchase_request.new.4691/trytond_purchase_request.changes
2019-12-10 22:43:33.929783690 +0100
@@ -1,0 +2,5 @@
+Tue Dec 3 09:27:07 UTC 2019 - Axel Braun <[email protected]>
+
+- Version 5.0.3 - Bugfix Release
+
+-------------------------------------------------------------------
Old:
----
trytond_purchase_request-5.0.2.tar.gz
New:
----
trytond_purchase_request-5.0.3.tar.gz
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Other differences:
------------------
++++++ trytond_purchase_request.spec ++++++
--- /var/tmp/diff_new_pack.ibxsvT/_old 2019-12-10 22:43:34.689783408 +0100
+++ /var/tmp/diff_new_pack.ibxsvT/_new 2019-12-10 22:43:34.693783406 +0100
@@ -1,7 +1,7 @@
#
# spec file for package trytond_purchase_request
#
-# Copyright (c) 2019 SUSE LLC.
+# Copyright (c) 2019 SUSE LLC
# Copyright (c) 2017 Dr. Axel Braun
#
# All modifications and additions to the file contributed by third parties
@@ -20,7 +20,7 @@
%define majorver 5.0
Name: trytond_purchase_request
-Version: %{majorver}.2
+Version: %{majorver}.3
Release: 0
URL: http://www.tryton.org/
++++++ trytond_purchase_request-5.0.2.tar.gz ->
trytond_purchase_request-5.0.3.tar.gz ++++++
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_purchase_request-5.0.2/.hgtags
new/trytond_purchase_request-5.0.3/.hgtags
--- old/trytond_purchase_request-5.0.2/.hgtags 2019-02-19 22:08:08.000000000
+0100
+++ new/trytond_purchase_request-5.0.3/.hgtags 2019-12-02 20:53:21.000000000
+0100
@@ -6,3 +6,4 @@
bdfa1b2fbf0e92cb9ef04372bf770c06cc03c22d 5.0.0
da3b078b4c254862aaf1a67bae9798a1267d1f90 5.0.1
92560e4cda4be36f11dfb14fc169974bcfa91e79 5.0.2
+613a31069fbcf7f9778210596c75140375dc086d 5.0.3
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_purchase_request-5.0.2/CHANGELOG
new/trytond_purchase_request-5.0.3/CHANGELOG
--- old/trytond_purchase_request-5.0.2/CHANGELOG 2019-02-19
22:08:07.000000000 +0100
+++ new/trytond_purchase_request-5.0.3/CHANGELOG 2019-12-02
20:53:21.000000000 +0100
@@ -1,3 +1,6 @@
+Version 5.0.3 - 2019-12-02
+* Bug fixes (see mercurial logs for details)
+
Version 5.0.2 - 2019-02-19
* Bug fixes (see mercurial logs for details)
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_purchase_request-5.0.2/PKG-INFO
new/trytond_purchase_request-5.0.3/PKG-INFO
--- old/trytond_purchase_request-5.0.2/PKG-INFO 2019-02-19 22:08:09.000000000
+0100
+++ new/trytond_purchase_request-5.0.3/PKG-INFO 2019-12-02 20:53:22.000000000
+0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: trytond_purchase_request
-Version: 5.0.2
+Version: 5.0.3
Summary: Tryton module for purchase requests
Home-page: http://www.tryton.org/
Author: Tryton
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/trytond_purchase_request-5.0.2/tests/scenario_purchase_request.rst
new/trytond_purchase_request-5.0.3/tests/scenario_purchase_request.rst
--- old/trytond_purchase_request-5.0.2/tests/scenario_purchase_request.rst
2019-02-10 23:28:43.000000000 +0100
+++ new/trytond_purchase_request-5.0.3/tests/scenario_purchase_request.rst
2019-11-15 22:51:00.000000000 +0100
@@ -219,13 +219,15 @@
Create a second purchase request manually::
>>> set_user(1) # admin
- >>> pr = PurchaseRequest()
- >>> pr.product = product
- >>> pr.quantity = 1
- >>> pr.uom = unit
- >>> pr.warehouse = warehouse_loc
- >>> pr.origin = Model.get('stock.order_point')()
- >>> pr.save()
+ >>> pr_id, = PurchaseRequest.create([{
+ ... 'product': product.id,
+ ... 'quantity': 1,
+ ... 'uom': unit,
+ ... 'warehouse': warehouse_loc.id,
+ ... 'origin': 'stock.order_point,-1',
+ ... 'company': company.id,
+ ... }], config.context)
+ >>> pr = PurchaseRequest(pr_id)
There is now 2 draft purchase requests::
@@ -257,10 +259,13 @@
Create a purchase request without product::
>>> set_user(1) # admin
- >>> pr = PurchaseRequest()
- >>> pr.description = "Custom product"
- >>> pr.quantity = 1
- >>> pr.origin = Model.get('stock.order_point')()
+ >>> pr_id, = PurchaseRequest.create([{
+ ... 'description': "Custom product",
+ ... 'quantity': 1,
+ ... 'origin': 'stock.order_point,-1',
+ ... 'company': company.id,
+ ... }], config.context)
+ >>> pr = PurchaseRequest(pr_id)
>>> pr.save()
Create the purchase without product::
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore' old/trytond_purchase_request-5.0.2/tryton.cfg
new/trytond_purchase_request-5.0.3/tryton.cfg
--- old/trytond_purchase_request-5.0.2/tryton.cfg 2019-02-10
23:28:43.000000000 +0100
+++ new/trytond_purchase_request-5.0.3/tryton.cfg 2019-02-19
22:08:16.000000000 +0100
@@ -1,5 +1,5 @@
[tryton]
-version=5.0.2
+version=5.0.3
depends:
ir
purchase
diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn'
'--exclude=.svnignore'
old/trytond_purchase_request-5.0.2/trytond_purchase_request.egg-info/PKG-INFO
new/trytond_purchase_request-5.0.3/trytond_purchase_request.egg-info/PKG-INFO
---
old/trytond_purchase_request-5.0.2/trytond_purchase_request.egg-info/PKG-INFO
2019-02-19 22:08:08.000000000 +0100
+++
new/trytond_purchase_request-5.0.3/trytond_purchase_request.egg-info/PKG-INFO
2019-12-02 20:53:22.000000000 +0100
@@ -1,6 +1,6 @@
Metadata-Version: 1.2
Name: trytond-purchase-request
-Version: 5.0.2
+Version: 5.0.3
Summary: Tryton module for purchase requests
Home-page: http://www.tryton.org/
Author: Tryton