From b0c83ce11844963f0c1ee103d65237ecd096347b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Stephan=20K=C3=B6hler?= Date: Thu, 6 Apr 2006 10:42:47 +0000 Subject: [PATCH] Bugfix 334 - Interne Notizen wurden bei gesetzter Lieferanschrift als Notizen auf den Angeboten, Auftraegen und Rechnungen dargestellt --- SL/IS.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SL/IS.pm b/SL/IS.pm index d4d8c6f1d..31ded06f0 100644 --- a/SL/IS.pm +++ b/SL/IS.pm @@ -360,8 +360,8 @@ sub customer_details { $ref = $sth->fetchrow_hashref(NAME_lc); - # remove id and taxincluded before copy back - delete @$ref{qw(id taxincluded)}; + # remove notes, id and taxincluded before copy back + delete @$ref{qw(id taxincluded notes)}; map { $form->{$_} = $ref->{$_} } keys %$ref; $sth->finish; -- 2.20.1