10f0ce2cc4edb9fe4c94a95faf9a5588e635ec46
[kivitendo-erp.git] / templates / webpages / io / ship_to.html
1 [% USE HTML %][% USE L %][% USE LxERP %]
2
3  <form method="post" action="[% HTML.escape(script) %]">
4
5   <table>
6    <tr class="listheading">
7     <th colspan="2" width="50%">[% LxERP.t8('Billing Address') %]</th>
8     <th width="50%">[% LxERP.t8('Shipping Address') %]</th>
9    </tr>
10    <tr height="5"></tr>
11    <tr>
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>
14    </tr>
15    <tr>
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>
19    </tr>
20    <tr>
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>
24    </tr>
25    <tr>
26     <th align="right" nowrap>&nbsp;</th>
27     <td>[% HTML.escape(department_2) %]</td>
28     <td>[% L.input_tag("shiptodepartment_2", shiptodepartment_2, "size", "35") %]</td>
29    </tr>
30    <tr>
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>
34    </tr>
35    <tr>
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>
39    </tr>
40    <tr>
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>
44    </tr>
45    <tr>
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>
49    </tr>
50    <tr>
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>
54    </tr>
55    <tr>
56     <th align="right" nowrap>[% LxERP.t8('Gender') %]</th>
57     <td></td>
58     <td>
59      [% L.select_tag('shiptocp_gender', [ [ 'm', LxERP.t8('male') ], [ 'f', LxERP.t8('female') ] ], 'default' = shiptocp_gender) %]
60     </td>
61    </tr>
62    <tr>
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>
66    </tr>
67    <tr>
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>
71    </tr>
72    <tr>
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>
76    </tr>
77   </table>
78
79   <hr size="3" noshade>
80
81   [% L.hidden_tag("action", "ship_to_entered") %]
82   [% L.hidden_tag("nextsub", nextsub) %]
83   [% L.hidden_tag("previousform", previousform) %]
84
85   [% L.submit_tag("__dummy", LxERP.t8("Continue")) %]
86  </form>