[tryton-debian-vcs] tryton-modules-analytic-invoice branch upstream updated. upstream/3.2.0-1-ge535a78
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Oct 23 12:14:33 UTC 2014
The following commit has been merged in the upstream branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-analytic-invoice.git;a=commitdiff;h=upstream/3.2.0-1-ge535a78
commit e535a7846f8d3811157cf3eadadfbc49118668de
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Tue Oct 21 11:29:08 2014 +0200
Adding upstream version 3.4.0.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
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 1f5d589..cc3614e 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond_analytic_invoice
-Version: 3.2.0
+Version: 3.4.0
Summary: Tryton module to add analytic accounting on invoice
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_invoice
========================
diff --git a/invoice.py b/invoice.py
index cf9907e..1f73a0f 100644
--- a/invoice.py
+++ b/invoice.py
@@ -41,10 +41,10 @@ class InvoiceLine:
return fields
@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(InvoiceLine, 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):
@@ -128,8 +128,7 @@ class InvoiceLine:
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/locale/es_EC.po b/locale/es_EC.po
new file mode 100644
index 0000000..c2fb3e2
--- /dev/null
+++ b/locale/es_EC.po
@@ -0,0 +1,7 @@
+#
+msgid ""
+msgstr "Content-Type: text/plain; charset=utf-8\n"
+
+msgctxt "field:account.invoice.line,analytic_accounts:"
+msgid "Analytic Accounts"
+msgstr "Cuentas Analíticas"
diff --git a/tryton.cfg b/tryton.cfg
index e5efe36..d68c885 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=3.2.0
+version=3.4.0
depends:
account_invoice
analytic_account
diff --git a/trytond_analytic_invoice.egg-info/PKG-INFO b/trytond_analytic_invoice.egg-info/PKG-INFO
index 2fe99e2..64980e3 100644
--- a/trytond_analytic_invoice.egg-info/PKG-INFO
+++ b/trytond_analytic_invoice.egg-info/PKG-INFO
@@ -1,12 +1,12 @@
Metadata-Version: 1.1
Name: trytond-analytic-invoice
-Version: 3.2.0
+Version: 3.4.0
Summary: Tryton module to add analytic accounting on invoice
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_invoice
========================
diff --git a/trytond_analytic_invoice.egg-info/SOURCES.txt b/trytond_analytic_invoice.egg-info/SOURCES.txt
index 300cc7f..68d3ca8 100644
--- a/trytond_analytic_invoice.egg-info/SOURCES.txt
+++ b/trytond_analytic_invoice.egg-info/SOURCES.txt
@@ -9,14 +9,30 @@ setup.py
tryton.cfg
./__init__.py
./invoice.py
+./invoice.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_invoice.py
+./view/invoice_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_invoice.egg-info/requires.txt b/trytond_analytic_invoice.egg-info/requires.txt
index 73c90fb..b5971d1 100644
--- a/trytond_analytic_invoice.egg-info/requires.txt
+++ b/trytond_analytic_invoice.egg-info/requires.txt
@@ -1,3 +1,3 @@
-trytond_account_invoice >= 3.2, < 3.3
-trytond_analytic_account >= 3.2, < 3.3
-trytond >= 3.2, < 3.3
\ No newline at end of file
+trytond_account_invoice >= 3.4, < 3.5
+trytond_analytic_account >= 3.4, < 3.5
+trytond >= 3.4, < 3.5
\ No newline at end of file
--
tryton-modules-analytic-invoice
More information about the tryton-debian-vcs
mailing list