From: Stephan Köhler Date: Thu, 6 Apr 2006 10:42:47 +0000 (+0000) Subject: Bugfix 334 - Interne Notizen wurden bei gesetzter Lieferanschrift als Notizen auf X-Git-Tag: release-2.4.0^2~284 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=b0c83ce11844963f0c1ee103d65237ecd096347b;p=kivitendo-erp.git Bugfix 334 - Interne Notizen wurden bei gesetzter Lieferanschrift als Notizen auf den Angeboten, Auftraegen und Rechnungen dargestellt --- 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;