Merge branch 'b-3.6.1' of ../kivitendo-erp_20220811
[kivitendo-erp.git] / templates / webpages / oe / check_for_direct_delivery.html
1 [%- USE T8 %]
2 [%- USE HTML %]
3 <h1>[% 'Carry over shipping address' | $T8 %]</h1>
4
5  <p>[% 'You have entered or selected the following shipping address for this customer:' | $T8 %]</p>
6
7  <p>
8   <table>
9    <tr>
10     <th align="right" valign="top">[% 'Name' | $T8 %]:</th>
11     <td valign="top">[% HTML.escape(CFDD_shiptoname) %]</td>
12    </tr>
13
14    <tr>
15     <th align="right" valign="top">[% 'Department' | $T8 %]:</th>
16     <td valign="top">[% HTML.escape(CFDD_shiptodepartment_1) %]</td>
17    </tr>
18
19    <tr>
20     <th align="right" valign="top">&nbsp;</th>
21     <td valign="top">[% HTML.escape(CFDD_shiptodepartment_2) %]</td>
22    </tr>
23
24    <tr>
25     <th align="right" valign="top">[% 'Street' | $T8 %]:</th>
26     <td valign="top">[% HTML.escape(CFDD_shiptostreet) %]</td>
27    </tr>
28
29    <tr>
30     <th align="right" valign="top">[% 'Zipcode' | $T8 %]:</th>
31     <td valign="top">[% HTML.escape(CFDD_shiptozipcode) %]</td>
32    </tr>
33
34    <tr>
35     <th align="right" valign="top">[% 'City' | $T8 %]:</th>
36     <td valign="top">[% HTML.escape(CFDD_shiptocity) %]</td>
37    </tr>
38
39    <tr>
40     <th align="right" valign="top">[% 'Country' | $T8 %]:</th>
41     <td valign="top">[% HTML.escape(CFDD_shiptocountry) %]</td>
42    </tr>
43
44    <tr>
45     <th align="right" valign="top">[% 'GLN' | $T8 %]:</th>
46     <td valign="top">[% HTML.escape(CFDD_shiptogln) %]</td>
47    </tr>
48
49    <tr>
50     <th align="right" valign="top">[% 'Contact' | $T8 %]:</th>
51     <td valign="top">[% HTML.escape(CFDD_shiptocontact) %]</td>
52    </tr>
53
54    <tr>
55     <th align="right" valign="top">[% 'Phone' | $T8 %]:</th>
56     <td valign="top">[% HTML.escape(CFDD_shiptophone) %]</td>
57    </tr>
58
59    <tr>
60     <th align="right" valign="top">[% 'Fax' | $T8 %]:</th>
61     <td valign="top">[% HTML.escape(CFDD_shiptofax) %]</td>
62    </tr>
63
64    <tr>
65     <th align="right" valign="top">[% 'E-mail' | $T8 %]:</th>
66     <td valign="top">[% HTML.escape(CFDD_shiptoemail) %]</td>
67    </tr>
68
69 [% FOREACH var = cvars %]
70    <tr valign="top">
71     <th align="right" nowrap>[% HTML.escape(var.config.description) %]</th>
72     <td>[% HTML.escape(var.value_as_text) %]</td>
73    </tr>
74 [% END %]
75   </table>
76  </p>
77
78   [% '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 %]
79  </p>
80
81  <form method="post" action="oe.pl">
82
83   <p>
84    <input type="submit" name="action" value="[% 'Yes' | $T8 %]">&nbsp;
85    <input type="submit" name="action" value="[% 'No' | $T8 %]">
86   </p>
87
88   <input type="hidden" name="yes_nextsub" value="check_for_direct_delivery_yes">
89   <input type="hidden" name="no_nextsub" value="check_for_direct_delivery_no">
90
91   [%- FOREACH row = VARIABLES %]
92   <input type="hidden" name="[% HTML.escape(row.key) %]" value="[% HTML.escape(row.value) %]">
93   [%- END %]
94
95  </form>
96