4 <h1>[% FORM.title %]</h1>
 
   6 [% L.hidden_tag('_cti_enabled', !!LXCONFIG.cti.dial_command) %]
 
   8 [% cv_cvars = SELF.cv.cvars_by_config %]
 
  10 <form method="post" action="controller.pl">
 
  12   [% L.hidden_tag('db', FORM.db) %]
 
  13   [% L.hidden_tag('callback', FORM.callback) %]
 
  14   [% L.hidden_tag('cv.id', SELF.cv.id) %]
 
  16   [%- INCLUDE 'common/flash.html' %]
 
  18   <div class="tabwidget" id="customer_vendor_tabs">
 
  20       <li><a href="#billing">[% 'Billing Address' | $T8 %]</a></li>
 
  21       <li><a href="#bank">[% 'Bank account' | $T8 %]</a></li>
 
  22       <li><a href="#shipto">[% 'Shipping Address' | $T8 %]</a></li>
 
  23       <li><a href="#contacts">[% 'Contacts' | $T8 %]</a></li>
 
  24       [% IF ( SELF.cv.id && AUTH.assert('sales_all_edit', 1) ) %]
 
  25         <li><a href="#deliveries">[% 'Supplies' | $T8 %]</a></li>
 
  27       <li><a href="#vcnotes">[% 'Notes' | $T8 %]</a></li>
 
  29       [% IF ( cv_cvars.size ) %]
 
  30         <li><a href="#custom_variables">[% 'Custom Variables' | $T8 %]</a></li>
 
  33         <li><a href="#price_rules">[% 'Price Rules' | $T8 %]</a></li>
 
  37     [% PROCESS "customer_vendor/tabs/billing.html" %]
 
  38     [% PROCESS "customer_vendor/tabs/bank.html" %]
 
  39     [% PROCESS "customer_vendor/tabs/shipto.html" %]
 
  40     [% PROCESS "customer_vendor/tabs/contacts.html" %]
 
  41     [% IF ( SELF.cv.id && AUTH.assert('sales_all_edit', 1) ) %]
 
  42       [% PROCESS "customer_vendor/tabs/deliveries.html" %]
 
  44     [% PROCESS "customer_vendor/tabs/vcnotes.html" %]
 
  45     [% IF ( cv_cvars.size ) %]
 
  46       [% PROCESS "customer_vendor/tabs/custom_variables.html" %]
 
  49       [% PROCESS "customer_vendor/tabs/price_rules.html" %]
 
  55   [% L.hidden_tag('action', 'CustomerVendor/dispatch') %]
 
  57   [% L.submit_tag('action_save', LxERP.t8('Save'), onclick = "return check_taxzone_and_ustid()", accesskey = "s") %]
 
  58   [% L.submit_tag('action_save_and_close', LxERP.t8('Save and Close'), onclick = "return check_taxzone_and_ustid()") %]
 
  60   [%- IF ( SELF.is_vendor ) %]
 
  61     [% L.submit_tag('action_save_and_ap_transaction', LxERP.t8('Save and AP Transaction'), onclick = "return check_taxzone_and_ustid()") %]
 
  63     [% L.submit_tag('action_save_and_ar_transaction', LxERP.t8('Save and AR Transaction'), onclick = "return check_taxzone_and_ustid()") %]
 
  66   [% L.submit_tag('action_save_and_invoice', LxERP.t8('Save and Invoice'), onclick = "return check_taxzone_and_ustid()") %]
 
  67   [% L.submit_tag('action_save_and_order', LxERP.t8('Save and Order'), onclick = "return check_taxzone_and_ustid()") %]
 
  69   [%- IF ( SELF.is_vendor ) %]
 
  70     [% L.submit_tag('action_save_and_rfq', LxERP.t8('Save and RFQ'), onclick = "return check_taxzone_and_ustid()") %]
 
  72     [% L.submit_tag('action_save_and_quotation', LxERP.t8('Save and Quotation'), onclick = "return check_taxzone_and_ustid()") %]
 
  75   [%- IF ( SELF.cv.id && SELF.is_orphaned ) %]
 
  76     [% L.submit_tag('action_delete', LxERP.t8('Delete'), confirm => LxERP.t8('Do you really want to delete this object?')) %]
 
  79   [%- IF ( SELF.cv.id ) %]
 
  80     <input type="button" class="submit" onclick="kivi.CustomerVendor.showHistoryWindow([% SELF.cv.id %]);" name="history" id="history" value="[% 'history' | $T8 %]">
 
  85 <script type="text/javascript">
 
  87   function submitInputButton(button)
 
  89     var hidden = document.createElement("input");
 
  90     hidden.setAttribute("type", "hidden");
 
  92     if ( button.hasAttribute("name") )
 
  93       hidden.setAttribute("name", button.getAttribute("name"));
 
  95     if ( button.hasAttribute("value") )
 
  96       hidden.setAttribute("value", button.getAttribute("value"));
 
  99     button.form.appendChild(hidden);
 
 101     button.disabled = true;
 
 103     button.form.submit();
 
 106   function check_taxzone_and_ustid() {
 
 107     if ( ($('#cv_taxzone_id').val() == '1') && ($('#cv_ustid').val() == '') ) {
 
 108       alert('[% LxERP.t8('Please enter the sales tax identification number.') %]');