Bei Kundendetails auch Standardpreisgruppen anzeigen
authorG. Richardson <information@kivitendo-premium.de>
Tue, 26 Feb 2013 14:56:58 +0000 (15:56 +0100)
committerG. Richardson <information@kivitendo-premium.de>
Tue, 26 Feb 2013 14:57:28 +0000 (15:57 +0100)
SL/Common.pm
templates/webpages/common/show_vc_details.html

index 726c4c8..159609d 100644 (file)
@@ -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();
index be6406b..e0555d3 100644 (file)
    <td>[% HTML.escape(discount) %]%</td>
   </tr>
 
+  [% IF is_customer %]
+  <tr>
+   <td align="right">[% 'Pricegroup' | $T8 %]</td>
+   <td>[% HTML.escape(pricegroup) %]</td>
+  </tr>
+  [% END %]
+
   <tr>
    <td align="right">[% 'Payment Terms' | $T8 %]</td>
    <td>[% HTML.escape(payment_terms) %]</td>