[tryton-debian-vcs] tryton-modules-account-invoice branch upstream-2.6 updated. upstream/2.6.8-1-g4bf48fb
Mathias Behrle
tryton-debian-vcs at alioth.debian.org
Thu Dec 4 21:40:00 UTC 2014
The following commit has been merged in the upstream-2.6 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-invoice.git;a=commitdiff;h=upstream/2.6.8-1-g4bf48fb
commit 4bf48fbbdba82619226fc6431b1537941f4091bb
Author: Mathias Behrle <mathiasb at m9s.biz>
Date: Thu Dec 4 19:13:46 2014 +0100
Adding upstream version 2.6.9.
Signed-off-by: Mathias Behrle <mathiasb at m9s.biz>
diff --git a/CHANGELOG b/CHANGELOG
index 29417a5..a91b939 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 2.6.9 - 2014-11-06
+* Bug fixes (see mercurial logs for details)
+
Version 2.6.8 - 2014-03-22
* Bug fixes (see mercurial logs for details)
diff --git a/PKG-INFO b/PKG-INFO
index bf6c32b..ff96ce9 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond_account_invoice
-Version: 2.6.8
+Version: 2.6.9
Summary: Tryton module for invoicing
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/invoice.py b/invoice.py
index af77e89..e747b19 100644
--- a/invoice.py
+++ b/invoice.py
@@ -342,8 +342,9 @@ class Invoice(Workflow, ModelSQL, ModelView):
if self.party:
invoice_address = self.party.address_get(type='invoice')
- res['invoice_address'] = invoice_address.id
- res['invoice_address.rec_name'] = invoice_address.rec_name
+ if invoice_address:
+ res['invoice_address'] = invoice_address.id
+ res['invoice_address.rec_name'] = invoice_address.rec_name
return res
def on_change_with_currency_digits(self, name=None):
diff --git a/tryton.cfg b/tryton.cfg
index e819f84..c8481b7 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
[tryton]
-version=2.6.8
+version=2.6.9
depends:
account
account_product
diff --git a/trytond_account_invoice.egg-info/PKG-INFO b/trytond_account_invoice.egg-info/PKG-INFO
index 26486f7..9790b76 100644
--- a/trytond_account_invoice.egg-info/PKG-INFO
+++ b/trytond_account_invoice.egg-info/PKG-INFO
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: trytond-account-invoice
-Version: 2.6.8
+Version: 2.6.9
Summary: Tryton module for invoicing
Home-page: http://www.tryton.org/
Author: Tryton
diff --git a/trytond_account_invoice.egg-info/SOURCES.txt b/trytond_account_invoice.egg-info/SOURCES.txt
index 2f90b64..7b1488b 100644
--- a/trytond_account_invoice.egg-info/SOURCES.txt
+++ b/trytond_account_invoice.egg-info/SOURCES.txt
@@ -14,9 +14,25 @@ setup.py
tryton.cfg
./__init__.py
./account.py
+./account.xml
+./invoice.odt
./invoice.py
+./invoice.xml
./party.py
+./party.xml
./payment_term.py
+./payment_term.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_ES.po
+./locale/fr_FR.po
+./locale/nl_NL.po
+./locale/ru_RU.po
./tests/__init__.py
./tests/test_account_invoice.py
locale/bg_BG.po
--
tryton-modules-account-invoice
More information about the tryton-debian-vcs
mailing list