| [% 'Customer' | $T8 %] | 
          
           [% P.customer_vendor.picker("customer_id", customer_id, type="customer", style="width: 250px", class="initial_focus", onchange="\$('#update_button').click()") %]
           [% L.button_tag("show_vc_details('customer')", LxERP.t8('Details (one letter abbreviation)')) %]
           [% L.hidden_tag("previous_customer_id", customer_id) %]
           [% L.hidden_tag("customer_pricegroup_id", customer_pricegroup_id) %]
           | 
         
[%- IF ALL_CONTACTS.size %]
        
          | [% 'Contact Person' | $T8 %] | 
          
            [% L.select_tag('cp_id', ALL_CONTACTS, default = cp_id, value_key = 'cp_id', title_key = 'full_name_dep', with_empty = 1, style = 'width: 250px') %]
           | 
         
[%- END %]
        
          | [% 'Shipping Address' | $T8 %] | 
          
           [%- IF ALL_SHIPTO.size %]
            [% shiptos = [ [ "", LxERP.t8("No/individual shipping address") ] ] ;
               L.select_tag('shipto_id', shiptos.import(ALL_SHIPTO), default=shipto_id, value_key='shipto_id', title_key='displayable_id', style='width: 250px') %]
           [%- END %]
           [% L.button_tag("kivi.SalesPurchase.edit_custom_shipto()", LxERP.t8("Custom shipto")) %]
           | 
         
        
          | [% 'Credit Limit' | $T8 %] | 
          
            [% LxERP.format_amount(creditlimit, 0, '0') %]; [% 'Remaining' | $T8 %]
            [% LxERP.format_amount(creditremaining,0 ,'0') %]
           | 
         
[%- IF max_dunning_level || dunning_description  %]
        
          | [% LxERP.t8("Dunning status") %] | 
          
           [% IF dunning_description %]
            [% LxERP.t8("This invoice's dunning level: #1", dunning_description) %]
            [% IF max_dunning_level %] [% END %]
           [% END %]
           [% IF max_dunning_level %]
            
             [% LxERP.t8("Customer's current maximum dunning level: #1", max_dunning_level) %]
              
             [% LxERP.t8("Dunned open amount: #1", LxERP.format_amount(dunning_amount, 2)) %]
            
           [% END %]
           | 
         
[%- END %]
[%- IF invoice_obj.sepa_exports.as_list.size %]
        
          | [% LxERP.t8("SEPA exports") %] | 
          
           [% FOREACH export = invoice_obj.sepa_exports.as_list %]
            [% HTML.escape(export.id) %]
            [% UNLESS loop.last %], [% END %]
           [% END %]
           | 
         
[%- END %]
[%- IF business %]
        
          | [% 'Customer type' | $T8 %] | 
          [% business %]; [% 'Trade Discount' | $T8 %] [% LxERP.format_amount(tradediscount * 100) %] % | 
         
[%- END %]
        
          | [% 'Record in' | $T8 %] | 
          
            
            
           | 
         
        
          | [% 'Steuersatz' | $T8 %] | 
          
            [% L.select_tag('taxzone_id', ( id ? ALL_TAXZONES : ALL_ACTIVE_TAXZONES) , default = taxzone_id, title_key = 'description', disabled = (id ? 1 : 0), style='width: 250px', onchange = "document.getElementById('update_button').click();") %]
  [%- IF id %]
          
  [%- END %]
           | 
         
[%- IF ALL_DEPARTMENTS %]
        
          | [% 'Department' | $T8 %] | 
          
            [% L.select_tag('department_id', ALL_DEPARTMENTS, default = department_id, title_key = 'description', with_empty = 1, style = 'width:250px') %]
           | 
         
[%- END %]
[%- IF currencies %]
        
          | [% 'Currency' | $T8 %] | 
          [% currencies %] | 
         
[%- END %]
        
          | 
            
            
            
            
           | 
         
[%- IF show_exchangerate %]
        
          | [% 'Exchangerate' | $T8 %] | 
          
           [%- IF forex %]
            [% LxERP.format_amount(exchangerate, 2) %]
           [%- ELSE %]
            
           [%- END %]
           | 
         
[%- END %]
        
          | [% 'Shipping Point' | $T8 %] | 
           | 
         
        
          | [% 'Ship via' | $T8 %] | 
           | 
         
        
          | [% 'Transaction description' | $T8 %] | 
          [% L.input_tag("transaction_description", transaction_description, size=35, "data-validate"=INSTANCE_CONF.get_require_transaction_description_ps ? 'required' : '') %] | 
         
       
     | 
    
      
        
          | [% 'Employee' | $T8 %] | 
          
            [% L.select_tag('employee_id', ALL_EMPLOYEES, default = employee_id, title_key = 'safe_name') %]
           | 
         
[%- IF ALL_SALESMEN.size %]
        
          | [% 'Salesman' | $T8 %] | 
          
            [% L.select_tag('salesman_id', ALL_SALESMEN, default = (salesman_id ? salesman_id : employee_id), title_key = 'safe_name') %]
           | 
         
[%- END %]
[%- IF is_type_credit_note %]
        
          | [% 'Credit Note Number' | $T8 %] | 
           | 
         
        
          | [% 'Invoice Number' | $T8 %] | 
           | 
         
        
          | [% 'Credit Note Date' | $T8 %] | 
          [% L.date_tag('invdate', invdate, onchange='kivi.SalesPurchase.set_duedate_on_reference_date_change("invdate")') %] | 
         
[%- ELSE %]
        
          | [% 'Invoice Number' | $T8 %] | 
           | 
         
        
          | [% 'Invoice Date' | $T8 %] | 
          [% L.date_tag('invdate', invdate, onchange='kivi.SalesPurchase.set_duedate_on_reference_date_change("invdate")') %] | 
         
        
          | [% 'Due Date' | $T8 %] | 
          
           [% L.date_tag('duedate', duedate) %]
           [% HTML.escape(duedate) %]
           | 
         
        
        | [% 'Delivery Order Number' | $T8 %] | 
           | 
         
[%- END %]
        
          | [% 'Delivery Date' | $T8 %] | 
          [% L.date_tag('deliverydate', deliverydate) %] | 
         
        
          | [% 'Order Number' | $T8 %] | 
           | 
         
        
          | [% 'Order Date' | $T8 %] | 
          [% L.date_tag('orddate', orddate) %] | 
         
        
          | [% 'Quotation Number' | $T8 %] | 
           | 
         
        
          | [% 'Quotation Date' | $T8 %] | 
          [% L.date_tag('quodate', quodate) %] | 
         
        
          | [% 'Customer Order Number' | $T8 %] | 
           | 
         
        
          | [% 'Project Number' | $T8 %] | 
          
            [%- L.select_tag('globalproject_id', ALL_PROJECTS, title_key = 'projectnumber', default = globalproject_id, with_empty = '1', onChange = "document.getElementById('update_button').click();") %]
           | 
         
       
     |