Projekt

Allgemein

Profil

« Zurück | Weiter » 

Revision 724e6329

Von Hans P. Schlaepfer vor mehr als 3 Jahren hinzugefügt

  • ID 724e6329410c49ce27e211aa31240ca6ac3bcffb
  • Vorgänger 3349703b
  • Nachfolger e7f6589a

Neues Design 2019 Standard-Code templates/webpages/oe/

Unterschiede anzeigen:

templates/webpages/oe/check_for_direct_delivery.html
1
<h1>[% 'Carry over shipping address' | $T8 %]</h1>
2

  
3
 <p>[% 'You have entered or selected the following shipping address for this customer:' | $T8 %]</p>
4

  
5
 <p>
6
  <table>
7
   <tr>
8
    <th align="right" valign="top">[% 'Name' | $T8 %]:</th>
9
    <td valign="top">[% HTML.escape(CFDD_shiptoname) %]</td>
10
   </tr>
11

  
12
   <tr>
13
    <th align="right" valign="top">[% 'Department' | $T8 %]:</th>
14
    <td valign="top">[% HTML.escape(CFDD_shiptodepartment_1) %]</td>
15
   </tr>
16

  
17
   <tr>
18
    <th align="right" valign="top">&nbsp;</th>
19
    <td valign="top">[% HTML.escape(CFDD_shiptodepartment_2) %]</td>
20
   </tr>
21

  
22
   <tr>
23
    <th align="right" valign="top">[% 'Street' | $T8 %]:</th>
24
    <td valign="top">[% HTML.escape(CFDD_shiptostreet) %]</td>
25
   </tr>
26

  
27
   <tr>
28
    <th align="right" valign="top">[% 'Zipcode' | $T8 %]:</th>
29
    <td valign="top">[% HTML.escape(CFDD_shiptozipcode) %]</td>
30
   </tr>
31

  
32
   <tr>
33
    <th align="right" valign="top">[% 'City' | $T8 %]:</th>
34
    <td valign="top">[% HTML.escape(CFDD_shiptocity) %]</td>
35
   </tr>
36

  
37
   <tr>
38
    <th align="right" valign="top">[% 'Country' | $T8 %]:</th>
39
    <td valign="top">[% HTML.escape(CFDD_shiptocountry) %]</td>
40
   </tr>
41

  
42
   <tr>
43
    <th align="right" valign="top">[% 'GLN' | $T8 %]:</th>
44
    <td valign="top">[% HTML.escape(CFDD_shiptogln) %]</td>
45
   </tr>
46

  
47
   <tr>
48
    <th align="right" valign="top">[% 'Contact' | $T8 %]:</th>
49
    <td valign="top">[% HTML.escape(CFDD_shiptocontact) %]</td>
50
   </tr>
51 1
[% USE T8 %]
52 2
[% USE HTML %]
53 3

  
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 %]
4
<h1>[% 'Carry over shipping address' | $T8 %]</h1>
5
<p>[% 'You have entered or selected the following shipping address for this customer:' | $T8 %]</p>
6

  
7
 
8
<table class="tbl-horizontal">
9
  <tbody>
10
    <tr>
11
      <th>[% 'Name' | $T8 %]:</th>
12
      <td>[% HTML.escape(CFDD_shiptoname) %]</td>
13
    </tr>
14
    <tr>
15
      <th>[% 'Department' | $T8 %]:</th>
16
      <td>[% HTML.escape(CFDD_shiptodepartment_1) %]</td>
17
    </tr>
18
    <tr>
19
      <th>&nbsp;</th>
20
      <td>[% HTML.escape(CFDD_shiptodepartment_2) %]</td>
21
    </tr>
22
    <tr>
23
      <th>[% 'Street' | $T8 %]:</th>
24
      <td>[% HTML.escape(CFDD_shiptostreet) %]</td>
25
    </tr>
26
    <tr>
27
      <th>[% 'Zipcode' | $T8 %]:</th>
28
      <td>[% HTML.escape(CFDD_shiptozipcode) %]</td>
29
    </tr>
30
    <tr>
31
      <th>[% 'City' | $T8 %]:</th>
32
      <td>[% HTML.escape(CFDD_shiptocity) %]</td>
33
    </tr>
34
    <tr>
35
      <th>[% 'Country' | $T8 %]:</th>
36
      <td>[% HTML.escape(CFDD_shiptocountry) %]</td>
37
    </tr>
38
    <tr>
39
      <th>[% 'GLN' | $T8 %]:</th>
40
      <td>[% HTML.escape(CFDD_shiptogln) %]</td>
41
    </tr>
42
    <tr>
43
      <th>[% 'Contact' | $T8 %]:</th>
44
      <td>[% HTML.escape(CFDD_shiptocontact) %]</td>
45
    </tr>
46
    <tr>
47
      <th>[% 'Phone' | $T8 %]:</th>
48
      <td>[% HTML.escape(CFDD_shiptophone) %]</td>
49
    </tr>
50
    <tr>
51
      <th>[% 'Fax' | $T8 %]:</th>
52
      <td>[% HTML.escape(CFDD_shiptofax) %]</td>
53
    </tr>
54
    <tr>
55
      <th>[% 'E-mail' | $T8 %]:</th>
56
      <td>[% HTML.escape(CFDD_shiptoemail) %]</td>
57
    </tr>
58
    [% FOREACH var = cvars %] 
59
      <tr>
60
        <th>[% HTML.escape(var.config.description) %]</th>
61
        <td>[% HTML.escape(var.value_as_text) %]</td>
62
      </tr>
63
    [% END %] 
64
  </tbody>
65
</table>
66

  
67

  
68
<p>[% '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 %]</p>
69

  
70
<form method="post" action="oe.pl">
71

  
72
<p>
73
  <input type="submit" name="action" value="[% 'Yes' | $T8 %]">&nbsp;
74
  <input type="submit" name="action" value="[% 'No' | $T8 %]">
75
</p>
76

  
77
<input type="hidden" name="yes_nextsub" value="check_for_direct_delivery_yes">
78
<input type="hidden" name="no_nextsub" value="check_for_direct_delivery_no">
79

  
80
[% FOREACH row = VARIABLES %]
92 81
  <input type="hidden" name="[% HTML.escape(row.key) %]" value="[% HTML.escape(row.value) %]">
93
  [%- END %]
82
[% END %]
94 83

  
95
 </form>
84
</form>
96 85

  

Auch abrufbar als: Unified diff