From ea4101ecf18d6fd6e8804db16c4f871a56dda441 Mon Sep 17 00:00:00 2001 From: "Martin Helmling martin.helmling@octosoft.eu" Date: Wed, 9 Nov 2016 14:43:30 +0100 Subject: [PATCH] BUGFIX: single-dbh: Rollback bei Auftrag => Angebot MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit hier fehlt der returnwert 1 damit kein Rollback gemacht wird Korrektur von 8e0f6e70 (Womöglich noch woanders fehlerhaft !) --- SL/OE.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SL/OE.pm b/SL/OE.pm index 86869f235..c82a3322e 100644 --- a/SL/OE.pm +++ b/SL/OE.pm @@ -867,7 +867,7 @@ sub _close_quotations_rfqs { my ($quotation) = $sth->fetchrow_array(); if ($quotation) { - return; + return 1; } my @close_ids; -- 2.20.1