[tryton-debian-vcs] tryton-modules-stock branch debian-squeeze-1.6 created. ef97f375955976250dabebc0f250fd613164893a

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:10:21 UTC 2013


The following commit has been merged in the debian-squeeze-1.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-stock.git;a=commitdiff;h=ef97f375955976250dabebc0f250fd613164893a
commit ef97f375955976250dabebc0f250fd613164893a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 20 21:29:13 2010 +0100

    Releasing debian version 1.6.2-0~50squeeze1.

diff --git a/debian/changelog b/debian/changelog
index 4688a49..75ae14a 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-stock (1.6.2-0~50squeeze1) unstable; urgency=low
+
+  * Merging upstream version 1.6.2.
+  * Changing my email address.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Sat, 20 Nov 2010 21:18:25 +0100
+
 tryton-modules-stock (1.6.1-1) unstable; urgency=high
 
   [ Daniel Baumann ]
commit 4eec87ed1b8c50d34c91d7976517b593b342d103
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 20 21:16:04 2010 +0100

    Changing my email address.

diff --git a/debian/control b/debian/control
index e3ee576..777c748 100644
--- a/debian/control
+++ b/debian/control
@@ -4,7 +4,7 @@ Priority: optional
 Maintainer: Debian Tryton Maintainers <tryton at lists.debian-maintainers.org>
 Uploaders:
  Daniel Baumann <daniel at debian.org>,
- Mathias Behrle <mathiasb at mbsolutions.selfip.biz>
+ Mathias Behrle <mathiasb at m9s.biz>
 Dm-Upload-Allowed: yes
 Build-Depends: debhelper (>= 7), python, python-setuptools, python-support
 Standards-Version: 3.9.0
commit 8f7957fe2216db7247d15b85c268486c16a1282d
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Sat Nov 20 20:59:59 2010 +0100

    Merging upstream version 1.6.2.

diff --git a/CHANGELOG b/CHANGELOG
index 14170ff..e9a6532 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 1.6.2 - 2010-11-02
+* Bug fixes (see mercurial logs for details)
+
 Version 1.6.1 - 2010-08-31
 * Bug fixes (see mercurial logs for details)
 * Security fix to use safe_eval instead of eval
diff --git a/PKG-INFO b/PKG-INFO
index 1e25d37..b56ba20 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: trytond_stock
-Version: 1.6.1
+Version: 1.6.2
 Summary: Stock Management and Inventory Control with:
     - Location definition
     - Stock move
diff --git a/__tryton__.py b/__tryton__.py
index 89bbb17..e8f68f4 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -6,7 +6,7 @@
     'name_es_CO': 'Inventarios',
     'name_es_ES': 'Gestión de existencias',
     'name_fr_FR': 'Gestion des stocks',
-    'version': '1.6.1',
+    'version': '1.6.2',
     'author': 'B2CK',
     'email': 'info at b2ck.com',
     'website': 'http://www.tryton.org/',
diff --git a/location.py b/location.py
index fb5f752..e619fe8 100644
--- a/location.py
+++ b/location.py
@@ -173,6 +173,8 @@ class Location(ModelSQL, ModelView):
         product_obj = self.pool.get('product.product')
         if context is None:
             context = {}
+        value = super(Location, self).view_header_get(cursor, user, value,
+                view_type=view_type, context=context)
         ctx = context.copy()
         ctx['active_test'] = False
         if context.get('product') \
diff --git a/product.py b/product.py
index df2aaba..f5b2ce8 100644
--- a/product.py
+++ b/product.py
@@ -522,6 +522,10 @@ class Product(ModelSQL, ModelView):
 
     def view_header_get(self, cursor, user, value, view_type='form',
             context=None):
+        if context is None:
+            context = {}
+        value = super(Product, self).view_header_get(cursor, user, value,
+                view_type=view_type, context=context)
         if not context.get('locations'):
             return value
         location_obj = self.pool.get('stock.location')
diff --git a/trytond_stock.egg-info/PKG-INFO b/trytond_stock.egg-info/PKG-INFO
index a89d0c5..0f77aa8 100644
--- a/trytond_stock.egg-info/PKG-INFO
+++ b/trytond_stock.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.0
 Name: trytond-stock
-Version: 1.6.1
+Version: 1.6.2
 Summary: Stock Management and Inventory Control with:
     - Location definition
     - Stock move
-- 
tryton-modules-stock



More information about the tryton-debian-vcs mailing list