1 [% USE HTML %][% USE L %][% USE LxERP %]
 
   3  <form method="post" action="[% HTML.escape(script) %]">
 
   6    <tr class="listheading">
 
   7     <th colspan="2" width="50%">[% LxERP.t8('Billing Address') %]</th>
 
   8     <th width="50%">[% LxERP.t8('Shipping Address') %]</th>
 
  12     <th align="right" nowrap>[%- IF vc == "customer" %][%- LxERP.t8('Customer Number') %][%- ELSE %][%- LxERP.t8('Vendor Number') %][%- END %]</th>
 
  13     <td>[%- IF vc == "customer" %][%- HTML.escape(customernumber) %][%- ELSE %][%- HTML.escape(vendornumber) %][%- END %]</td>
 
  16     <th align="right" nowrap>[% LxERP.t8('Company Name') %]</th>
 
  17     <td>[% HTML.escape(name) %]</td>
 
  18     <td>[% L.input_tag("shiptoname", shiptoname, "size", "35") %]</td>
 
  21     <th align="right" nowrap>[% LxERP.t8('Department') %]</th>
 
  22     <td>[% HTML.escape(department_1) %]</td>
 
  23     <td>[% L.input_tag("shiptodepartment_1", shiptodepartment_1, "size", "35") %]</td>
 
  26     <th align="right" nowrap> </th>
 
  27     <td>[% HTML.escape(department_2) %]</td>
 
  28     <td>[% L.input_tag("shiptodepartment_2", shiptodepartment_2, "size", "35") %]</td>
 
  31     <th align="right" nowrap>[% LxERP.t8('Street') %]</th>
 
  32     <td>[% HTML.escape(street) %]</td>
 
  33     <td>[% L.input_tag("shiptostreet", shiptostreet, "size", "35") %]</td>
 
  36     <th align="right" nowrap>[% LxERP.t8('Zipcode') %]</th>
 
  37     <td>[% HTML.escape(zipcode) %]</td>
 
  38     <td>[% L.input_tag("shiptozipcode", shiptozipcode, "size", "35") %]</td>
 
  41     <th align="right" nowrap>[% LxERP.t8('City') %]</th>
 
  42     <td>[% HTML.escape(city) %]</td>
 
  43     <td>[% L.input_tag("shiptocity", shiptocity, "size", "35") %]</td>
 
  46     <th align="right" nowrap>[% LxERP.t8('Country') %]</th>
 
  47     <td>[% HTML.escape(country) %]</td>
 
  48     <td>[% L.input_tag("shiptocountry", shiptocountry, "size", "35") %]</td>
 
  51     <th align="right" nowrap>[% LxERP.t8('Contact') %]</th>
 
  52     <td>[% HTML.escape(contact) %]</td>
 
  53     <td>[% L.input_tag("shiptocontact", shiptocontact, "size", "35") %]</td>
 
  56     <th align="right" nowrap>[% LxERP.t8('Gender') %]</th>
 
  59      [% L.select_tag('shiptocp_gender', [ [ 'm', LxERP.t8('male') ], [ 'f', LxERP.t8('female') ] ], 'default' = shiptocp_gender) %]
 
  63     <th align="right" nowrap>[% LxERP.t8('Phone') %]</th>
 
  64     <td>[% HTML.escape(phone) %]</td>
 
  65     <td>[% L.input_tag("shiptophone", shiptophone, "size", "35") %]</td>
 
  68     <th align="right" nowrap>[% LxERP.t8('Fax') %]</th>
 
  69     <td>[% HTML.escape(fax) %]</td>
 
  70     <td>[% L.input_tag("shiptofax", shiptofax, "size", "35") %]</td>
 
  73     <th align="right" nowrap>[% LxERP.t8('E-mail') %]</th>
 
  74     <td>[% HTML.escape(email) %]</td>
 
  75     <td>[% L.input_tag("shiptoemail", shiptoemail, "size", "35") %]</td>
 
  81   [% L.hidden_tag("action", "ship_to_entered") %]
 
  82   [% L.hidden_tag("nextsub", nextsub) %]
 
  83   [% L.hidden_tag("previousform", previousform) %]
 
  85   [% L.submit_tag("__dummy", LxERP.t8("Continue")) %]