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 2023-09-07 21:13:33 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/trytond_account_invoice (Old) and /work/SRC/openSUSE:Factory/.trytond_account_invoice.new.1766 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "trytond_account_invoice" Thu Sep 7 21:13:33 2023 rev:29 rq:1109465 version:6.0.13 Changes: -------- --- /work/SRC/openSUSE:Factory/trytond_account_invoice/trytond_account_invoice.changes 2023-05-23 14:55:46.998923297 +0200 +++ /work/SRC/openSUSE:Factory/.trytond_account_invoice.new.1766/trytond_account_invoice.changes 2023-09-07 21:14:59.810143742 +0200 @@ -1,0 +2,5 @@ +Thu Sep 7 08:07:54 UTC 2023 - Axel Braun <axel.br...@gmx.de> + +- Version 6.0.13 - Bugfix Release + +------------------------------------------------------------------- Old: ---- trytond_account_invoice-6.0.12.tar.gz trytond_account_invoice-6.0.12.tar.gz.asc New: ---- trytond_account_invoice-6.0.13.tar.gz trytond_account_invoice-6.0.13.tar.gz.asc ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ trytond_account_invoice.spec ++++++ --- /var/tmp/diff_new_pack.Xhybgo/_old 2023-09-07 21:15:00.990185926 +0200 +++ /var/tmp/diff_new_pack.Xhybgo/_new 2023-09-07 21:15:00.994186069 +0200 @@ -19,7 +19,7 @@ %define majorver 6.0 Name: trytond_account_invoice -Version: %{majorver}.12 +Version: %{majorver}.13 Release: 0 Summary: The "account_invoice" module for the Tryton ERP system License: GPL-3.0-only ++++++ trytond_account_invoice-6.0.12.tar.gz -> trytond_account_invoice-6.0.13.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.12/.readthedocs.yaml new/trytond_account_invoice-6.0.13/.readthedocs.yaml --- old/trytond_account_invoice-6.0.12/.readthedocs.yaml 1970-01-01 01:00:00.000000000 +0100 +++ new/trytond_account_invoice-6.0.13/.readthedocs.yaml 2023-08-06 19:28:07.000000000 +0200 @@ -0,0 +1,7 @@ +version: 2 +build: + os: ubuntu-22.04 + tools: + python: "3" +sphinx: + configuration: modules/account_invoice/doc/conf.py diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.12/CHANGELOG new/trytond_account_invoice-6.0.13/CHANGELOG --- old/trytond_account_invoice-6.0.12/CHANGELOG 2023-05-17 22:59:37.000000000 +0200 +++ new/trytond_account_invoice-6.0.13/CHANGELOG 2023-09-06 23:35:37.000000000 +0200 @@ -1,4 +1,9 @@ +Version 6.0.13 - 2023-09-06 +--------------------------- +* Bug fixes (see mercurial logs for details) + + Version 6.0.12 - 2023-05-17 --------------------------- * Bug fixes (see mercurial logs for details) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.12/PKG-INFO new/trytond_account_invoice-6.0.13/PKG-INFO --- old/trytond_account_invoice-6.0.12/PKG-INFO 2023-05-17 22:59:40.242490500 +0200 +++ new/trytond_account_invoice-6.0.13/PKG-INFO 2023-09-06 23:35:40.474732400 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond_account_invoice -Version: 6.0.12 +Version: 6.0.13 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.12/invoice.py new/trytond_account_invoice-6.0.13/invoice.py --- old/trytond_account_invoice-6.0.12/invoice.py 2023-05-14 00:14:03.000000000 +0200 +++ new/trytond_account_invoice-6.0.13/invoice.py 2023-08-06 19:15:49.000000000 +0200 @@ -2886,7 +2886,7 @@ amount_writeoff = fields.Numeric('Write-Off Amount', digits=(16, Eval('currency_digits_writeoff', 2)), readonly=True, depends=['currency_digits_writeoff', 'type'], states={ - 'invisible': Eval('type') != 'writeoff', + 'invisible': ~Eval('type').in_(['writeoff', 'overpayment']), }) currency_writeoff = fields.Many2One('currency.currency', 'Write-Off Currency', readonly=True, states={ @@ -2902,13 +2902,14 @@ ('reconciliation', '=', None), ], states={ - 'invisible': Eval('type') != 'writeoff', + 'invisible': ~Eval('type').in_(['writeoff', 'overpayment']), + 'required': Eval('type').in_(['writeoff', 'overpayment']), }, depends=['lines_to_pay', 'type']) payment_lines = fields.Many2Many('account.move.line', None, None, 'Payment Lines', readonly=True, states={ - 'invisible': Eval('type') != 'writeoff', + 'invisible': ~Eval('type').in_(['writeoff', 'overpayment']), }, depends=['type']) company = fields.Many2One('company.company', 'Company', readonly=True) invoice = fields.Many2One('account.invoice', 'Invoice', readonly=True) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.12/tryton.cfg new/trytond_account_invoice-6.0.13/tryton.cfg --- old/trytond_account_invoice-6.0.12/tryton.cfg 2023-05-03 19:01:39.000000000 +0200 +++ new/trytond_account_invoice-6.0.13/tryton.cfg 2023-05-17 23:04:54.000000000 +0200 @@ -1,5 +1,5 @@ [tryton] -version=6.0.12 +version=6.0.13 depends: account account_product diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/trytond_account_invoice-6.0.12/trytond_account_invoice.egg-info/PKG-INFO new/trytond_account_invoice-6.0.13/trytond_account_invoice.egg-info/PKG-INFO --- old/trytond_account_invoice-6.0.12/trytond_account_invoice.egg-info/PKG-INFO 2023-05-17 22:59:39.000000000 +0200 +++ new/trytond_account_invoice-6.0.13/trytond_account_invoice.egg-info/PKG-INFO 2023-09-06 23:35:39.000000000 +0200 @@ -1,6 +1,6 @@ Metadata-Version: 2.1 Name: trytond-account-invoice -Version: 6.0.12 +Version: 6.0.13 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.12/trytond_account_invoice.egg-info/SOURCES.txt new/trytond_account_invoice-6.0.13/trytond_account_invoice.egg-info/SOURCES.txt --- old/trytond_account_invoice-6.0.12/trytond_account_invoice.egg-info/SOURCES.txt 2023-05-17 22:59:40.000000000 +0200 +++ new/trytond_account_invoice-6.0.13/trytond_account_invoice.egg-info/SOURCES.txt 2023-09-06 23:35:40.000000000 +0200 @@ -1,3 +1,4 @@ +.readthedocs.yaml CHANGELOG COPYRIGHT LICENSE