From: Jan Büren Date: Sat, 14 Mar 2020 12:31:21 +0000 (+0100) Subject: Testfall für #266 - Rückgabewert für Routine setzen X-Git-Tag: release-3.5.6.1~243 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=1acc9e567d9b25d06513775f288ae578a10bff96;p=kivitendo-erp.git Testfall für #266 - Rückgabewert für Routine setzen --- diff --git a/SL/Controller/Reconciliation.pm b/SL/Controller/Reconciliation.pm index 6e2af691a..9cf25a378 100644 --- a/SL/Controller/Reconciliation.pm +++ b/SL/Controller/Reconciliation.pm @@ -198,6 +198,8 @@ sub action_reconcile_proposals { } $counter++; } + + 1; }) or die t8('Unable to reconcile, database transaction failure'); flash('ok', t8('#1 proposal(s) saved.', $counter)); @@ -386,6 +388,8 @@ sub _reconcile { $rec_link->save; } } + + 1; }) or die t8('Unable to reconcile, database transaction failure'); }