[tryton-debian-vcs] tryton-modules-purchase branch upstream-2.8 updated. upstream/2.8.2-1-g5485fe6

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Mon May 12 16:09:53 UTC 2014


The following commit has been merged in the upstream-2.8 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-purchase.git;a=commitdiff;h=upstream/2.8.2-1-g5485fe6

commit 5485fe62ca7745693466614e6c4f6d34061a2ef9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon May 12 16:04:16 2014 +0200

    Adding upstream version 2.8.3.

diff --git a/CHANGELOG b/CHANGELOG
index bc968b4..935fc71 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.8.3 - 2014-05-07
+* Bug fixes (see mercurial logs for details)
+
 Version 2.8.2 - 2013-12-04
 * Bug fixes (see mercurial logs for details)
 
diff --git a/COPYRIGHT b/COPYRIGHT
index 5d422e0..77715d8 100644
--- a/COPYRIGHT
+++ b/COPYRIGHT
@@ -1,6 +1,6 @@
-Copyright (C) 2008-2013 Cédric Krier.
+Copyright (C) 2008-2014 Cédric Krier.
 Copyright (C) 2008-2013 Bertrand Chenal.
-Copyright (C) 2008-2013 B2CK SPRL.
+Copyright (C) 2008-2014 B2CK SPRL.
 Copyright (C) 2004-2008 Tiny SPRL.
 
 This program is free software: you can redistribute it and/or modify
diff --git a/PKG-INFO b/PKG-INFO
index d91f1c2..4386711 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_purchase
-Version: 2.8.2
+Version: 2.8.3
 Summary: Tryton module for purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/purchase.py b/purchase.py
index 4e30c24..ea355e6 100644
--- a/purchase.py
+++ b/purchase.py
@@ -1171,7 +1171,7 @@ class PurchaseLine(ModelSQL, ModelView):
             if not invoice_line.account:
                 self.raise_user_error('missing_account_expense', {
                         'product': invoice_line.product.rec_name,
-                        'purchase': invoice_line.purchase.rec_name,
+                        'purchase': self.purchase.rec_name,
                         })
         else:
             for model in ('product.template', 'product.category'):
@@ -1180,7 +1180,7 @@ class PurchaseLine(ModelSQL, ModelView):
                     break
             if not invoice_line.account:
                 self.raise_user_error('missing_account_expense_property',
-                    (invoice_line.purchase.rec_name,))
+                    {'purchase': self.purchase.rec_name})
         return [invoice_line]
 
     @classmethod
@@ -1879,7 +1879,7 @@ class HandleShipmentException(Wizard):
                 if move.state == 'cancel' and move not in skip:
                     moves.append(move.id)
         return {
-            'to_recreate': moves,
+            'recreate_moves': moves,
             'domain_moves': moves,
             }
 
@@ -1949,7 +1949,7 @@ class HandleInvoiceException(Wizard):
             if invoice.state == 'cancel' and invoice not in skip:
                 invoices.append(invoice.id)
         return {
-            'to_recreate': invoices,
+            'recreate_invoices': invoices,
             'domain_invoices': invoices,
             }
 
diff --git a/tryton.cfg b/tryton.cfg
index 57ed693..1d363fe 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=2.8.2
+version=2.8.3
 depends:
     account
     account_invoice
diff --git a/trytond_purchase.egg-info/PKG-INFO b/trytond_purchase.egg-info/PKG-INFO
index dd56ce5..ea01c79 100644
--- a/trytond_purchase.egg-info/PKG-INFO
+++ b/trytond_purchase.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond-purchase
-Version: 2.8.2
+Version: 2.8.3
 Summary: Tryton module for purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
-- 
tryton-modules-purchase



More information about the tryton-debian-vcs mailing list