[tryton-debian-vcs] tryton-modules-account-invoice branch debian-jessie-3.0 updated. debian/3.0.4-1-3-g04c2d24

Mathias Behrle tryton-debian-vcs at alioth.debian.org
Wed Nov 12 13:49:35 UTC 2014


The following commit has been merged in the debian-jessie-3.0 branch:
https://alioth.debian.org/plugins/scmgit/cgi-bin/gitweb.cgi/?p=tryton/tryton-modules-account-invoice.git;a=commitdiff;h=debian/3.0.4-1-3-g04c2d24

commit 04c2d24adad11a534d0a0f26964896d12e2e8a3b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Nov 12 13:43:46 2014 +0100

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

diff --git a/debian/changelog b/debian/changelog
index 61a5d85..23c3354 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,10 @@
+tryton-modules-account-invoice (3.0.5-1) unstable; urgency=medium
+
+  * Adding actual upstream signing key.
+  * Merging upstream version 3.0.5.
+
+ -- Mathias Behrle <mathiasb at m9s.biz>  Wed, 12 Nov 2014 13:43:46 +0100
+
 tryton-modules-account-invoice (3.0.4-1) unstable; urgency=medium
 
   * Merging upstream version 3.0.4.
commit 18f795196e0f4df29d740b939921e5d36678a73b
Author: Mathias Behrle <mathiasb at m9s.biz>
Date:   Wed Nov 12 13:43:45 2014 +0100

    Merging upstream version 3.0.5.

diff --git a/CHANGELOG b/CHANGELOG
index f0429de..7aa133a 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,6 @@
+Version 3.0.5 - 2014-11-06
+* Bug fixes (see mercurial logs for details)
+
 Version 3.0.4 - 2014-08-03
 * Bug fixes (see mercurial logs for details)
 
diff --git a/PKG-INFO b/PKG-INFO
index 1e6d54c..dd7d8a3 100644
--- a/PKG-INFO
+++ b/PKG-INFO
@@ -1,6 +1,6 @@
 Metadata-Version: 1.1
 Name: trytond_account_invoice
-Version: 3.0.4
+Version: 3.0.5
 Summary: Tryton module for invoicing
 Home-page: http://www.tryton.org/
 Author: Tryton
diff --git a/invoice.py b/invoice.py
index 485b586..3ca6d53 100644
--- a/invoice.py
+++ b/invoice.py
@@ -392,8 +392,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 e04d224..4b50895 100644
--- a/tryton.cfg
+++ b/tryton.cfg
@@ -1,5 +1,5 @@
 [tryton]
-version=3.0.4
+version=3.0.5
 depends:
     account
     account_product
diff --git a/trytond_account_invoice.egg-info/PKG-INFO b/trytond_account_invoice.egg-info/PKG-INFO
index e167134..07b5286 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: 3.0.4
+Version: 3.0.5
 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 fff6fee..cabef44 100644
--- a/trytond_account_invoice.egg-info/SOURCES.txt
+++ b/trytond_account_invoice.egg-info/SOURCES.txt
@@ -14,11 +14,54 @@ 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
+./locale/sl_SI.po
 ./tests/__init__.py
+./tests/scenario_invoice.rst
+./tests/scenario_invoice_supplier.rst
 ./tests/test_account_invoice.py
+./view/address_form.xml
+./view/address_tree.xml
+./view/credit_start_form.xml
+./view/fiscalyear_form.xml
+./view/invoice_form.xml
+./view/invoice_line_form.xml
+./view/invoice_line_tree.xml
+./view/invoice_line_tree_sequence.xml
+./view/invoice_tax_form.xml
+./view/invoice_tax_tree.xml
+./view/invoice_tax_tree_sequence.xml
+./view/invoice_tree.xml
+./view/move_line_list_payment.xml
+./view/move_line_list_to_pay.xml
+./view/party_form.xml
+./view/pay_ask_form.xml
+./view/pay_start_form.xml
+./view/payment_term_form.xml
+./view/payment_term_line_form.xml
+./view/payment_term_line_list.xml
+./view/payment_term_line_list_sequence.xml
+./view/payment_term_tree.xml
+./view/period_form.xml
+./view/print_warning_form.xml
 locale/bg_BG.po
 locale/ca_ES.po
 locale/cs_CZ.po
-- 
tryton-modules-account-invoice



More information about the tryton-debian-vcs mailing list