Lieferantenstammdaten: Tab »Abweichende Rechnungsadressen« nicht anzeigen
authorMoritz Bunkus <m.bunkus@linet.de>
Mon, 10 Jan 2022 16:00:19 +0000 (17:00 +0100)
committerMoritz Bunkus <m.bunkus@linet.de>
Mon, 10 Jan 2022 16:00:19 +0000 (17:00 +0100)
templates/webpages/customer_vendor/form.html

index b726c1b..2fce8d6 100644 (file)
@@ -20,7 +20,9 @@
   <div class="tabwidget" id="customer_vendor_tabs">
     <ul>
       <li><a href="#billing">[% 'Billing Address' | $T8 %]</a></li>
-      <li><a href="#additional_billing_addresses">[% 'Additional Billing Addresses' | $T8 %]</a></li>
+      [% IF SELF.is_customer %]
+        <li><a href="#additional_billing_addresses">[% 'Additional Billing Addresses' | $T8 %]</a></li>
+      [% END %]
       <li><a href="#bank">[% 'Bank account' | $T8 %]</a></li>
       <li><a href="#shipto">[% 'Shipping Address' | $T8 %]</a></li>
       <li><a href="#contacts">[% 'Contacts' | $T8 %]</a></li>
@@ -62,7 +64,9 @@
     </ul>
 
     [% PROCESS "customer_vendor/tabs/billing.html" %]
-    [% PROCESS "customer_vendor/tabs/additional_billing_addresses.html" %]
+    [% IF SELF.is_customer %]
+      [% PROCESS "customer_vendor/tabs/additional_billing_addresses.html" %]
+    [% END %]
     [% PROCESS "customer_vendor/tabs/bank.html" %]
     [% PROCESS "customer_vendor/tabs/shipto.html" %]
     [% PROCESS "customer_vendor/tabs/contacts.html" %]