[tryton-debian-vcs] tryton-modules-purchase branch upstream-1.6 created. 750b6b22e91bee5561ef943cd4b732e578ce24f5
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Wed Nov 27 17:07: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-purchase.git;a=commitdiff;h=750b6b22e91bee5561ef943cd4b732e578ce24f5
commit 750b6b22e91bee5561ef943cd4b732e578ce24f5
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Sat Nov 20 20:53:32 2010 +0100
Adding upstream version 1.6.1.
diff --git a/CHANGELOG b/CHANGELOG
index 62723b3..04a5861 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 model singleton to define which purchase sequence to use
diff --git a/PKG-INFO b/PKG-INFO
index 157ee5a..1e08af7 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond_purchase
-Version: 1.6.0
+Version: 1.6.1
Summary: Define purchase order.
Add product supplier and purchase informations.
Define the purchase price as the supplier price or the cost price.
diff --git a/__tryton__.py b/__tryton__.py
index 4dacfb9..4c48582 100644
--- a/__tryton__.py
+++ b/__tryton__.py
@@ -6,7 +6,7 @@
'name_es_CO': 'Compras',
'name_es_ES': 'Compras',
'name_fr_FR': 'Achat',
- 'version': '1.6.0',
+ 'version': '1.6.1',
'author': 'B2CK',
'email': 'info at b2ck.com',
'website': 'http://www.tryton.org/',
diff --git a/purchase.py b/purchase.py
index 6e09c44..cc51bc9 100644
--- a/purchase.py
+++ b/purchase.py
@@ -308,7 +308,7 @@ class Purchase(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,
'in_invoice', context=context)
if not key in taxes:
diff --git a/trytond_purchase.egg-info/PKG-INFO b/trytond_purchase.egg-info/PKG-INFO
index 2eb6ed0..da8a268 100644
--- a/trytond_purchase.egg-info/PKG-INFO
+++ b/trytond_purchase.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.0
Name: trytond-purchase
-Version: 1.6.0
+Version: 1.6.1
Summary: Define purchase order.
Add product supplier and purchase informations.
Define the purchase price as the supplier price or the cost price.
--
tryton-modules-purchase
More information about the tryton-debian-vcs
mailing list