</html> entfernen
[kivitendo-erp.git] / templates / webpages / oe / check_for_direct_delivery.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 <body>
4
5  <div class="listtop" width="100%">[% 'Carry over shipping address' | $T8 %]</div>
6
7  <p>[% 'You have entered or selected the following shipping address for this customer:' | $T8 %]</p>
8
9  <p>
10   <table>
11    <tr>
12     <th align="right" valign="top">[% 'Name' | $T8 %]:</th>
13     <td valign="top">[% HTML.escape(CFDD_shiptoname) %]</td>
14    </tr>
15
16    <tr>
17     <th align="right" valign="top">[% 'Department' | $T8 %]:</th>
18     <td valign="top">[% HTML.escape(CFDD_shiptodepartment_1) %]</td>
19    </tr>
20
21    <tr>
22     <th align="right" valign="top">&nbsp;</th>
23     <td valign="top">[% HTML.escape(CFDD_shiptodepartment_2) %]</td>
24    </tr>
25
26    <tr>
27     <th align="right" valign="top">[% 'Street' | $T8 %]:</th>
28     <td valign="top">[% HTML.escape(CFDD_shiptostreet) %]</td>
29    </tr>
30
31    <tr>
32     <th align="right" valign="top">[% 'Zipcode' | $T8 %]:</th>
33     <td valign="top">[% HTML.escape(CFDD_shiptozipcode) %]</td>
34    </tr>
35
36    <tr>
37     <th align="right" valign="top">[% 'City' | $T8 %]:</th>
38     <td valign="top">[% HTML.escape(CFDD_shiptocity) %]</td>
39    </tr>
40
41    <tr>
42     <th align="right" valign="top">[% 'Country' | $T8 %]:</th>
43     <td valign="top">[% HTML.escape(CFDD_shiptocountry) %]</td>
44    </tr>
45
46    <tr>
47     <th align="right" valign="top">[% 'Contact' | $T8 %]:</th>
48     <td valign="top">[% HTML.escape(CFDD_shiptocontact) %]</td>
49    </tr>
50
51    <tr>
52     <th align="right" valign="top">[% 'Phone' | $T8 %]:</th>
53     <td valign="top">[% HTML.escape(CFDD_shiptophone) %]</td>
54    </tr>
55
56    <tr>
57     <th align="right" valign="top">[% 'Fax' | $T8 %]:</th>
58     <td valign="top">[% HTML.escape(CFDD_shiptofax) %]</td>
59    </tr>
60
61    <tr>
62     <th align="right" valign="top">[% 'E-mail' | $T8 %]:</th>
63     <td valign="top">[% HTML.escape(CFDD_shiptoemail) %]</td>
64    </tr>
65   </table>
66  </p>
67
68   [% 'Do you want to carry this shipping address over to the new purchase order so that the vendor can deliver the goods directly to your customer?' | $T8 %]
69  </p>
70
71  <form method="post" action="oe.pl">
72
73   <p>
74    <input type="submit" name="action" value="[% 'Yes' | $T8 %]">&nbsp;
75    <input type="submit" name="action" value="[% 'No' | $T8 %]">
76   </p>
77
78   <input type="hidden" name="yes_nextsub" value="check_for_direct_delivery_yes">
79   <input type="hidden" name="no_nextsub" value="check_for_direct_delivery_no">
80
81   [%- FOREACH row = VARIABLES %]
82   <input type="hidden" name="[% HTML.escape(row.key) %]" value="[% HTML.escape(row.value) %]">
83   [%- END %]
84
85  </form>
86
87 </body>