[tryton-debian-vcs] tryton-modules-sale-price-list branch debian-squeeze-1.6 created. 4450a924c2514c7636b29200d328f93f344bd854
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:09: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-sale-price-list.git;a=commitdiff;h=4450a924c2514c7636b29200d328f93f344bd854
commit 4450a924c2514c7636b29200d328f93f344bd854
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 20 21:29:12 2010 +0100
Releasing debian version 1.6.1-0~50squeeze1.
diff --git a/debian/changelog b/debian/changelog
index b472406..5f39763 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-sale-price-list (1.6.1-0~50squeeze1) unstable; urgency=low
+
+ * Merging upstream version 1.6.1.
+ * Changing my email address.
+
+ -- Mathias Behrle <mathiasb at m9s.biz> Sat, 20 Nov 2010 21:26:08 +0100
+
tryton-modules-sale-price-list (1.6.0-1) unstable; urgency=low
[ Daniel Baumann ]
commit f5a361751263ae03bbeb204230acd1d492697594
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 fabb4a5..b3c2635 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.8.4
commit ff4b4f5062692860e4540de96df0971f13e1ab45
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 20 20:52:15 2010 +0100
Merging upstream version 1.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index 6175416..80237d3 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 1.6.1 - 2010-11-02
+* Bug fixes (see mercurial logs for details)
+
Version 1.6.0 - 2010-05-13
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index c3a70cc..5a89f81 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond_sale_price_list
-Version: 1.6.0
+Version: 1.6.1
Summary: Define price list on party and sale order.
Home-page: http://www.tryton.org/
diff --git a/__tryton__.py b/__tryton__.py
index b9368f4..17f7ea6 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -6,7 +6,7 @@
'name_es_CO': 'Lista de Precios de Venta',
'name_es_ES': 'Lista de precios de venta',
'name_fr_FR' : 'Listes de prix de vente',
- 'version': '1.6.0',
+ 'version': '1.6.1',
'author': 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/sale.py b/sale.py
index 29e2b7f..2e019ad 100644
--- a/sale.py
+++ b/sale.py
@@ -55,6 +55,10 @@ class SaleLine(ModelSQL, ModelView):
self.quantity = copy.copy(self.quantity)
self.quantity.on_change = copy.copy(self.quantity.on_change)
self.quantity.on_change.append('_parent_sale.price_list')
+ if '_parent_sale.price_list' not in self.unit.on_change:
+ self.unit = copy.copy(self.unit)
+ self.unit.on_change = copy.copy(self.unit.on_change)
+ self.unit.on_change.append('_parent_sale.price_list')
if '_parent_sale.price_list' not in self.product.on_change:
self.product = copy.copy(self.product)
self.product.on_change = copy.copy(self.product.on_change)
diff --git a/trytond_sale_price_list.egg-info/PKG-INFO b/trytond_sale_price_list.egg-info/PKG-INFO
index 29093c5..7e2dbdc 100644
--- a/trytond_sale_price_list.egg-info/PKG-INFO
+++ b/trytond_sale_price_list.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond-sale-price-list
-Version: 1.6.0
+Version: 1.6.1
Summary: Define price list on party and sale order.
Home-page: http://www.tryton.org/
--
tryton-modules-sale-price-list
More information about the tryton-debian-vcs
mailing list