X-Git-Url: http://wagnertech.de/git?a=blobdiff_plain;f=SL%2FCommon.pm;h=159609d30960382fc505aa0c9402dbe1ea5026ac;hb=6bb3a6152b33e37736b3e5ed855a830182ae0193;hp=371bb8a7dea1bc5d92ca7e4a2e3a777a56a4f712;hpb=45970e731c7e0c8a3d469a1c344af20c18987c20;p=kivitendo-erp.git diff --git a/SL/Common.pm b/SL/Common.pm index 371bb8a7d..159609d30 100644 --- a/SL/Common.pm +++ b/SL/Common.pm @@ -43,7 +43,7 @@ sub unique_id { } sub tmpname { - return "/tmp/lx-office-tmp-" . unique_id(); + return "/tmp/kivitendo-tmp-" . unique_id(); } sub retrieve_parts { @@ -441,6 +441,9 @@ sub get_vc_details { $query = qq|SELECT * FROM contacts WHERE (cp_cv_id = ?)|; $form->{CONTACTS} = selectall_hashref_query($form, $dbh, $query, $vc_id); + # Only show default pricegroup for customer, not vendor, which is why this is outside the main query + ($form->{pricegroup}) = selectrow_query($form, $dbh, qq|SELECT pricegroup FROM pricegroup WHERE id = ?|, $form->{klass}); + $dbh->disconnect(); $main::lxdebug->leave_sub();