[tryton-debian-vcs] tryton-modules-analytic-purchase branch debian updated. debian/3.2.0-1-5-g0e71462

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Thu Oct 23 12:14:37 UTC 2014


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

commit 0e7146235badab3514268f063d5ee6855ec54cb9
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Thu Oct 23 13:31:59 2014 +0200

    Releasing debian version 3.4.0-1.
    
    Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>

diff --git a/debian/changelog b/debian/changelog
index 435df0b..13a3d10 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,13 @@
+tryton-modules-analytic-purchase (3.4.0-1) unstable; urgency=medium
+
+  * Updating signing key while using now plain .asc files instead of .pgp
+    binaries.
+  * Adding actual upstream signing key.
+  * Updating to Standards-Version: 3.9.6, no changes needed.
+  * Merging upstream version 3.4.0.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Tue, 21 Oct 2014 20:23:53 +0200
+
 tryton-modules-analytic-purchase (3.2.0-1) unstable; urgency=medium
 
   * Removing  LC_ALL=C.UTF-8 as build environment.
commit 1da0828c568c60f3e8ab1821498ef2a36f43c49e
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Tue Oct 21 11:29:08 2014 +0200

    Merging upstream version 3.4.0.

diff --git a/CHANGELOG b/CHANGELOG
index c4f3c28..40a6dd8 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.4.0 - 2014-10-20
+* Bug fixes (see mercurial logs for details)
+
 Version 3.2.0 - 2014-04-21
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index bd40c0a..606d5fe 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond_analytic_purchase
-Version: 3.2.0
+Version: 3.4.0
 Summary: Tryton module to add analytic accounting on purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.2/
+Download-URL: http://downloads.tryton.org/3.4/
 Description: trytond_analytic_purchase
         =========================
         
diff --git a/locale/es_CO.po b/locale/es_CO.po
index d1fd1e5..e7e713b 100644
--- a/locale/es_CO.po
+++ b/locale/es_CO.po
@@ -352,7 +352,7 @@ msgstr "Anulada"
 
 msgctxt "selection:purchase.purchase,state:"
 msgid "Confirmed"
-msgstr "Confirmado"
+msgstr "Confirmada"
 
 msgctxt "selection:purchase.purchase,state:"
 msgid "Done"
diff --git a/locale/fr_FR.po b/locale/es_EC.po
similarity index 71%
copy from locale/fr_FR.po
copy to locale/es_EC.po
index 4dad4cf..9ae336d 100644
--- a/locale/fr_FR.po
+++ b/locale/es_EC.po
@@ -4,8 +4,8 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "error:purchase.purchase:"
 msgid "Analytic account is required on line \"%s\"."
-msgstr "Le compte analytique est requis sur la ligne \"%s\""
+msgstr "Se requiere la cuenta analítica en la línea \"%s\"."
 
 msgctxt "field:purchase.line,analytic_accounts:"
 msgid "Analytic Accounts"
-msgstr "Comptes analytiques"
+msgstr "Cuentas Analíticas"
diff --git a/locale/fr_FR.po b/locale/fr_FR.po
index 4dad4cf..71747e6 100644
--- a/locale/fr_FR.po
+++ b/locale/fr_FR.po
@@ -4,7 +4,7 @@ msgstr "Content-Type: text/plain; charset=utf-8\n"
 
 msgctxt "error:purchase.purchase:"
 msgid "Analytic account is required on line \"%s\"."
-msgstr "Le compte analytique est requis sur la ligne \"%s\""
+msgstr "Le compte analytique est requis sur la ligne « %s »."
 
 msgctxt "field:purchase.line,analytic_accounts:"
 msgid "Analytic Accounts"
diff --git a/purchase.py b/purchase.py
index 78b7221..eed89e9 100644
--- a/purchase.py
+++ b/purchase.py
@@ -74,10 +74,10 @@ class PurchaseLine:
         return res
 
     @classmethod
-    def default_get(cls, fields, with_rec_name=True, with_on_change=True):
+    def default_get(cls, fields, with_rec_name=True):
         fields = [x for x in fields if not x.startswith('analytic_account_')]
         return super(PurchaseLine, cls).default_get(fields,
-            with_rec_name=with_rec_name, with_on_change=with_on_change)
+            with_rec_name=with_rec_name)
 
     @classmethod
     def read(cls, ids, fields_names=None):
@@ -162,8 +162,7 @@ class PurchaseLine:
                     accounts = []
                     if not line.analytic_accounts:
                         # Create missing selection
-                        with Transaction().set_user(0):
-                            selection, = Selection.create([{}])
+                        selection, = Selection.create([{}])
                         cls.write([line], {
                             'analytic_accounts': selection.id,
                             })
diff --git a/tryton.cfg b/tryton.cfg
index a354e48..925e651 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.2.0
+version=3.4.0
 depends:
     analytic_account
     analytic_invoice
diff --git a/trytond_analytic_purchase.egg-info/PKG-INFO b/trytond_analytic_purchase.egg-info/PKG-INFO
index 0690306..1995b67 100644
--- a/trytond_analytic_purchase.egg-info/PKG-INFO
+++ b/trytond_analytic_purchase.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
 Metadata-Version: 1.1
 Name: trytond-analytic-purchase
-Version: 3.2.0
+Version: 3.4.0
 Summary: Tryton module to add analytic accounting on purchase
 Home-page: http://www.tryton.org/
 Author: Tryton
 Author-email: issue_tracker at tryton.org
 License: GPL-3
-Download-URL: http://downloads.tryton.org/3.2/
+Download-URL: http://downloads.tryton.org/3.4/
 Description: trytond_analytic_purchase
         =========================
         
diff --git a/trytond_analytic_purchase.egg-info/SOURCES.txt b/trytond_analytic_purchase.egg-info/SOURCES.txt
index 3c7a573..4404b39 100644
--- a/trytond_analytic_purchase.egg-info/SOURCES.txt
+++ b/trytond_analytic_purchase.egg-info/SOURCES.txt
@@ -9,14 +9,30 @@ setup.py
 tryton.cfg
 ./__init__.py
 ./purchase.py
+./purchase.xml
+./tryton.cfg
+./locale/bg_BG.po
+./locale/ca_ES.po
+./locale/cs_CZ.po
+./locale/de_DE.po
+./locale/es_AR.po
+./locale/es_CO.po
+./locale/es_EC.po
+./locale/es_ES.po
+./locale/fr_FR.po
+./locale/nl_NL.po
+./locale/ru_RU.po
+./locale/sl_SI.po
 ./tests/__init__.py
 ./tests/test_analytic_purchase.py
+./view/purchase_line_form.xml
 locale/bg_BG.po
 locale/ca_ES.po
 locale/cs_CZ.po
 locale/de_DE.po
 locale/es_AR.po
 locale/es_CO.po
+locale/es_EC.po
 locale/es_ES.po
 locale/fr_FR.po
 locale/nl_NL.po
diff --git a/trytond_analytic_purchase.egg-info/requires.txt b/trytond_analytic_purchase.egg-info/requires.txt
index 6c74fb9..d23de92 100644
--- a/trytond_analytic_purchase.egg-info/requires.txt
+++ b/trytond_analytic_purchase.egg-info/requires.txt
@@ -1,4 +1,4 @@
-trytond_analytic_account >= 3.2, < 3.3
-trytond_analytic_invoice >= 3.2, < 3.3
-trytond_purchase >= 3.2, < 3.3
-trytond >= 3.2, < 3.3
\ No newline at end of file
+trytond_analytic_account >= 3.4, < 3.5
+trytond_analytic_invoice >= 3.4, < 3.5
+trytond_purchase >= 3.4, < 3.5
+trytond >= 3.4, < 3.5
\ No newline at end of file
-- 
tryton-modules-analytic-purchase



More information about the tryton-debian-vcs mailing list