commit trytond_account_invoice for openSUSE:Factory
Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package trytond_account_invoice for openSUSE:Factory checked in at 2024-10-30 17:38:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_account_invoice (Old) and /work/SRC/openSUSE:Factory/.trytond_account_invoice.new.2020 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "trytond_account_invoice" Wed Oct 30 17:38:50 2024 rev:37 rq:1219420 version:6.0.20 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_account_invoice/trytond_account_invoice.changes 2024-08-05 17:21:51.448555355 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_account_invoice.new.2020/trytond_account_invoice.changes 2024-10-30 17:39:15.440374120 +0100 @@ -1,0 +2,5 @@ +Tue Oct 8 18:03:46 UTC 2024 - Axel Braun <axel.braun@gmx.de> + +- Version 6.0.20 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_account_invoice-6.0.19.tar.gz New: ---- trytond_account_invoice-6.0.20.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_account_invoice.spec ++++++ --- /var/tmp/diff_new_pack.M2tQXc/_old 2024-10-30 17:39:16.012398082 +0100 +++ /var/tmp/diff_new_pack.M2tQXc/_new 2024-10-30 17:39:16.012398082 +0100 @@ -29,7 +29,7 @@ %define majorver 6.0 Name: trytond_account_invoice -Version: %{majorver}.19 +Version: %{majorver}.20 Release: 0 Summary: The "account_invoice" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_account_invoice-6.0.19.tar.gz -> trytond_account_invoice-6.0.20.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.19/CHANGELOG new/trytond_account_invoice-6.0.20/CHANGELOG --- old/trytond_account_invoice-6.0.19/CHANGELOG 2024-08-01 22:09:58.000000000 +0200 +++ new/trytond_account_invoice-6.0.20/CHANGELOG 2024-10-05 18:17:56.000000000 +0200 @@ -1,4 +1,9 @@ +Version 6.0.20 - 2024-10-05 +--------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.19 - 2024-08-01 --------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.19/PKG-INFO new/trytond_account_invoice-6.0.20/PKG-INFO --- old/trytond_account_invoice-6.0.19/PKG-INFO 2024-08-01 22:10:01.097089800 +0200 +++ new/trytond_account_invoice-6.0.20/PKG-INFO 2024-10-05 18:17:59.385500000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_account_invoice -Version: 6.0.19 +Version: 6.0.20 Summary: Tryton module for invoicing Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.19/invoice.py new/trytond_account_invoice-6.0.20/invoice.py --- old/trytond_account_invoice-6.0.19/invoice.py 2024-07-25 18:12:56.000000000 +0200 +++ new/trytond_account_invoice-6.0.20/invoice.py 2024-09-28 18:06:54.000000000 +0200 @@ -1259,6 +1259,8 @@ default.setdefault('accounting_date', None) default.setdefault('payment_term_date', None) default.setdefault('lines_to_pay', None) + default.setdefault('validated_by') + default.setdefault('posted_by') return super(Invoice, cls).copy(invoices, default=default) @classmethod @@ -2071,7 +2073,7 @@ @property def origin_name(self): - if isinstance(self.origin, self.__class__): + if isinstance(self.origin, self.__class__) and self.origin.id >= 0: return self.origin.invoice.rec_name return self.origin.rec_name if self.origin else None diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.19/tox.ini new/trytond_account_invoice-6.0.20/tox.ini --- old/trytond_account_invoice-6.0.19/tox.ini 2023-05-17 23:03:30.000000000 +0200 +++ new/trytond_account_invoice-6.0.20/tox.ini 2024-09-13 16:34:34.000000000 +0200 @@ -4,6 +4,7 @@ [testenv] commands = {envpython} setup.py test deps = + setuptools<72 {py36,py37,py38,py39}-postgresql: psycopg2 >= 2.5 pypy3-postgresql: psycopg2cffi >= 2.5 py36-sqlite: sqlitebck diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.19/tryton.cfg new/trytond_account_invoice-6.0.20/tryton.cfg --- old/trytond_account_invoice-6.0.19/tryton.cfg 2024-06-02 19:09:18.000000000 +0200 +++ new/trytond_account_invoice-6.0.20/tryton.cfg 2024-08-01 22:10:12.000000000 +0200 @@ -1,5 +1,5 @@ [tryton] -version=6.0.19 +version=6.0.20 depends: account account_product diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.19/trytond_account_invoice.egg-info/PKG-INFO new/trytond_account_invoice-6.0.20/trytond_account_invoice.egg-info/PKG-INFO --- old/trytond_account_invoice-6.0.19/trytond_account_invoice.egg-info/PKG-INFO 2024-08-01 22:10:00.000000000 +0200 +++ new/trytond_account_invoice-6.0.20/trytond_account_invoice.egg-info/PKG-INFO 2024-10-05 18:17:58.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_account_invoice -Version: 6.0.19 +Version: 6.0.20 Summary: Tryton module for invoicing Home-page: http://www.tryton.org/ Download-URL: http://downloads.tryton.org/6.0/
participants (1)
-
Source-Sync