[tryton-debian-vcs] tryton-modules-purchase branch debian-jessie-2.8 updated. debian/2.8.2-1-3-g3899280

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


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

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

    Releasing debian version 2.8.3-1.

diff --git a/debian/changelog b/debian/changelog
index 6e9db93..ebcb14f 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-purchase (2.8.3-1) unstable; urgency=medium
+
+  * Merging upstream version 2.8.3.
+  * Updating copyright file.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Mon, 12 May 2014 16:04:19 +0200
+
 tryton-modules-purchase (2.8.2-1) unstable; urgency=low
 
   * Fixing the branch version in the watch file.
commit b515d1e937fe40763ce9faf1879ff1dd9d1425c9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon May 12 16:04:17 2014 +0200

    Updating copyright file.

diff --git a/debian/copyright b/debian/copyright
index e096e63..6fab0fb 100644
--- a/debian/copyright
+++ b/debian/copyright
@@ -1,9 +1,9 @@
 Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
 
 Files: *
-Copyright: 2008-2013 Cédric Krier
+Copyright: 2008-2014 Cédric Krier
            2008-2013 Bertrand Chenal
-           2008-2013 B2CK SPRL
+           2008-2014 B2CK SPRL
            2004-2008 Tiny SPRL
 License: GPL-3+
 
commit 95b4254d8b53e3df6678c51304cef08fa8fd274a
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Mon May 12 16:04:17 2014 +0200

    Merging 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