[tryton-debian-vcs] tryton-modules-sale-price-list branch upstream-1.6 created. 24bbf843561f48f3bc85ce17db0173983a472cfe
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:09:22 UTC 2013
The following commit has been merged in the upstream-1.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-sale-price-list.git;a=commitdiff;h=24bbf843561f48f3bc85ce17db0173983a472cfe
commit 24bbf843561f48f3bc85ce17db0173983a472cfe
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 20 20:52:14 2010 +0100
Adding 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