From c0ed7d2fa13650cc51cf3ed641aa5cc9afb41d7f Mon Sep 17 00:00:00 2001 From: "mh@waldpark.octosoft.eu" Date: Fri, 10 Jun 2016 11:43:39 +0200 Subject: [PATCH] customernotes auch als notes Form Variable(fixmaster) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Durch den query ct.* werden die notes und per ct.notes as customernotes eingelesen fixup durch löschen von notes vor kopieren --- SL/IS.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SL/IS.pm b/SL/IS.pm index 5b02041ba..e32827f44 100644 --- a/SL/IS.pm +++ b/SL/IS.pm @@ -604,8 +604,8 @@ sub customer_details { $ref->{cp_gender} = $contact->cp_gender; } } - # remove id and taxincluded before copy back - delete @$ref{qw(id taxincluded)}; + # remove id,notes (double of customernotes) and taxincluded before copy back + delete @$ref{qw(id taxincluded notes)}; @wanted_vars = grep({ $_ } @wanted_vars); if (scalar(@wanted_vars) > 0) { -- 2.20.1