[tryton-debian-vcs] tryton-modules-sale branch upstream-1.6 created. e73c2890e2d00e397cbae7fb601ca1cc7e59acc4
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:08:43 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.git;a=commitdiff;h=e73c2890e2d00e397cbae7fb601ca1cc7e59acc4
commit e73c2890e2d00e397cbae7fb601ca1cc7e59acc4
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 20 20:53:03 2010 +0100
Adding upstream version 1.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index a812581..9406a3f 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)
* Use a modelsingleton to define which sale sequence to use
diff --git a/PKG-INFO b/PKG-INFO
index 8e156a3..5505c05 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond_sale
-Version: 1.6.0
+Version: 1.6.1
Summary: Define sale order.
Add to product sale informations.
Define the sale price as the list price.
diff --git a/__tryton__.py b/__tryton__.py
index 7c963cc..92b1141 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -6,7 +6,7 @@
'name_es_CO': 'Ventas',
'name_es_ES': 'Venta',
'name_fr_FR': '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 c201ed1..789e7d2 100644
--- a/sale.py
+++ b/sale.py
@@ -365,7 +365,7 @@ class Sale(ModelWorkflow, ModelSQL, ModelView):
for tax in tax_obj.compute(cursor, user, line.get('taxes', []),
line.get('unit_price', Decimal('0.0')),
- line.get('quantity', 0.0), context=context):
+ line.get('quantity', 0.0), context=ctx):
key, val = invoice_obj._compute_tax(cursor, user, tax,
'out_invoice', context=context)
if not key in taxes:
diff --git a/trytond_sale.egg-info/PKG-INFO b/trytond_sale.egg-info/PKG-INFO
index 728f0f8..fdd3533 100644
--- a/trytond_sale.egg-info/PKG-INFO
+++ b/trytond_sale.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond-sale
-Version: 1.6.0
+Version: 1.6.1
Summary: Define sale order.
Add to product sale informations.
Define the sale price as the list price.
--
tryton-modules-sale
More information about the tryton-debian-vcs
mailing list