[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#687639: marked as done (pre-approve unblock: tryton-modules-stock-supply/2.2.2-1)



Your message dated Mon, 08 Oct 2012 20:25:49 +0100
with message-id <1349724349.11774.19.camel@jacala.jungle.funky-badger.org>
and subject line Re: Bug#687639: pre-approve unblock: tryton-modules-stock-supply/2.2.2-1
has caused the Debian Bug report #687639,
regarding pre-approve unblock: tryton-modules-stock-supply/2.2.2-1
to be marked as done.

This means that you claim that the problem has been dealt with.
If this is not the case it is now your responsibility to reopen the
Bug report if necessary, and/or fix the problem forthwith.

(NB: If you are a system administrator and have no idea what this
message is talking about, this may indicate a serious mail system
misconfiguration somewhere. Please contact owner@bugs.debian.org
immediately.)


-- 
687639: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=687639
Debian Bug Tracking System
Contact owner@bugs.debian.org with problems
--- Begin Message ---
Package: release.debian.org
Severity: normal
User: release.debian.org@packages.debian.org
Usertags: unblock

Dear release managers,

please approve the upload of tryton-modules-stock-supply_2.2.2-1.

The new version contains the upstream bug fix release [1].

The fixes are for

 * Tax rule apply method return a list of tax ids


Mathias

[1] http://news.tryton.org/2012/09/maintenance-releases-for-supported.html


debdiff attached

unblock: tryton-modules-stock-supply/2.2.2-1
diff -Nru tryton-modules-stock-supply-2.2.1/CHANGELOG tryton-modules-stock-supply-2.2.2/CHANGELOG
--- tryton-modules-stock-supply-2.2.1/CHANGELOG	2012-05-07 11:10:26.000000000 +0200
+++ tryton-modules-stock-supply-2.2.2/CHANGELOG	2012-09-02 16:56:34.000000000 +0200
@@ -1,3 +1,6 @@
+Version 2.2.2 - 2012-09-02
+* Bug fixes (see mercurial logs for details)
+
 Version 2.2.1 - 2012-05-07
 * Bug fixes (see mercurial logs for details)
 
diff -Nru tryton-modules-stock-supply-2.2.1/debian/changelog tryton-modules-stock-supply-2.2.2/debian/changelog
--- tryton-modules-stock-supply-2.2.1/debian/changelog	2012-06-30 18:34:12.000000000 +0200
+++ tryton-modules-stock-supply-2.2.2/debian/changelog	2012-09-12 15:46:00.000000000 +0200
@@ -1,3 +1,9 @@
+tryton-modules-stock-supply (2.2.2-1) unstable; urgency=low
+
+  * Merging upstream version 2.2.2.
+
+ -- Mathias Behrle <mathiasb@m9s.biz>  Wed, 12 Sep 2012 15:46:00 +0200
+
 tryton-modules-stock-supply (2.2.1-2) unstable; urgency=low
 
   * Updating maintainers field.
diff -Nru tryton-modules-stock-supply-2.2.1/PKG-INFO tryton-modules-stock-supply-2.2.2/PKG-INFO
--- tryton-modules-stock-supply-2.2.1/PKG-INFO	2012-05-07 11:10:29.000000000 +0200
+++ tryton-modules-stock-supply-2.2.2/PKG-INFO	2012-09-02 16:56:39.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
 Name: trytond_stock_supply
-Version: 2.2.1
+Version: 2.2.2
 Summary: Supply Management Module with:
     - Order point
     - Purchase Request
diff -Nru tryton-modules-stock-supply-2.2.1/purchase_request.py tryton-modules-stock-supply-2.2.2/purchase_request.py
--- tryton-modules-stock-supply-2.2.1/purchase_request.py	2012-04-24 13:40:59.000000000 +0200
+++ tryton-modules-stock-supply-2.2.2/purchase_request.py	2012-06-12 14:55:54.000000000 +0200
@@ -697,10 +697,10 @@
         for tax in request.product.supplier_taxes_used:
             if request.party and request.party.supplier_tax_rule:
                 pattern = self._get_tax_rule_pattern(request)
-                tax_id = tax_rule_obj.apply(request.party.supplier_tax_rule, 
+                tax_ids = tax_rule_obj.apply(request.party.supplier_tax_rule,
                         tax, pattern)
-                if tax_id:
-                    taxes.append(tax_id)
+                if tax_ids:
+                    taxes.extend(tax_ids)
                 continue
             taxes.append(tax.id)
         line['taxes'] = [('add', taxes)]
diff -Nru tryton-modules-stock-supply-2.2.1/trytond_stock_supply.egg-info/PKG-INFO tryton-modules-stock-supply-2.2.2/trytond_stock_supply.egg-info/PKG-INFO
--- tryton-modules-stock-supply-2.2.1/trytond_stock_supply.egg-info/PKG-INFO	2012-05-07 11:10:27.000000000 +0200
+++ tryton-modules-stock-supply-2.2.2/trytond_stock_supply.egg-info/PKG-INFO	2012-09-02 16:56:38.000000000 +0200
@@ -1,6 +1,6 @@
-Metadata-Version: 1.1
+Metadata-Version: 1.0
 Name: trytond-stock-supply
-Version: 2.2.1
+Version: 2.2.2
 Summary: Supply Management Module with:
     - Order point
     - Purchase Request
diff -Nru tryton-modules-stock-supply-2.2.1/__tryton__.py tryton-modules-stock-supply-2.2.2/__tryton__.py
--- tryton-modules-stock-supply-2.2.1/__tryton__.py	2011-11-22 13:30:24.000000000 +0100
+++ tryton-modules-stock-supply-2.2.2/__tryton__.py	2012-05-07 14:54:52.000000000 +0200
@@ -7,7 +7,7 @@
     'name_es_CO': 'Gestión de pedidos de inventario',
     'name_es_ES': 'Gestión de suministro de existencias',
     'name_fr_FR': 'Gestion des approvisionnements de stock',
-    'version': '2.2.1',
+    'version': '2.2.2',
     'author': 'B2CK',
     'email': 'info@b2ck.com',
     'website': 'http://www.tryton.org/',

Attachment: signature.asc
Description: PGP signature


--- End Message ---
--- Begin Message ---
On Mon, 2012-10-08 at 10:12 +0200, Mathias Behrle wrote:
> * Betr.: " Re: Bug#687639: pre-approve unblock:
>   tryton-modules-stock-supply/2.2.2-1" (Wed, 03 Oct 2012 19:07:01 +0100):
> 
> > Please go ahead, and let us know once the package has been in unstable
> > for a few days.
> 
> Package was uploaded to unstable on 2012-10-05.

Unblocked.

Regards,

Adam

--- End Message ---

Reply to: