Subversion Repositories wpShopGermany4

Rev

Rev 3679 | Rev 3695 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
3648 daniel 1
<?php if ($this->hasMod('wpsg_mod_shippingadress') && $this->callMod('wpsg_mod_shippingadress', 'check_different_shippingadress', array('k_id' => $this->view['basket']['checkout']['k_id'], 'o_id' => $this->view['o_id']))) { ?>
2
<h2><?php echo __('Rechnungsadresse:', 'wpsg'); ?></h2>
3
 
4
<table class="contenttable">
5
	<tr>
3681 daniel 6
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Firma', 'wpsg'); ?>:</td>
7
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['firma']); ?></td>
3648 daniel 8
	</tr>
9
	<tr>
3681 daniel 10
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Name', 'wpsg'); ?>:</td>
11
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['vname'].' '.$this->view['basket']['checkout']['name']); ?></td>
3648 daniel 12
	</tr>
13
	<tr>
3681 daniel 14
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Straße', 'wpsg'); ?>:</td>
15
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['strasse']); ?></td>
3648 daniel 16
	</tr>
17
	<tr>
3681 daniel 18
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Land', 'wpsg'); ?>:</td>
19
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['land']['name']); ?></td>
3648 daniel 20
	</tr>
21
	<?php if (trim($this->view['basket']['checkout']['ustidnr']) != "") { ?>
22
	<tr>
3681 daniel 23
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('USt.IdNr.', 'wpsg'); ?>:</td>
24
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['ustidnr']); ?></td>
3648 daniel 25
	</tr>
26
	<?php } ?>
27
	<tr>
3681 daniel 28
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Ort', 'wpsg'); ?>:</td>
29
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['plz'].' '.$this->view['basket']['checkout']['ort']); ?></td>
3648 daniel 30
	</tr>
31
	<tr>
3681 daniel 32
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Telefon', 'wpsg'); ?>:</td>
33
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['tel']); ?></td>
3648 daniel 34
	</tr>
35
	<tr>
3681 daniel 36
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Fax', 'wpsg'); ?>:</td>
37
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['fax']); ?></td>
3648 daniel 38
	</tr>
39
	<tr>
3681 daniel 40
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('E-Mail Adresse', 'wpsg'); ?>:</td>
41
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><a href="mailto:<?php echo wpsg_hspc($this->view['basket']['checkout']['email']); ?>"><?php echo wpsg_hspc($this->view['basket']['checkout']['email']); ?></a></td>
3648 daniel 42
	</tr>
43
</table>
44
 
45
<h2><?php echo __('Lieferadresse'); ?>:</h2>
46
 
47
<table class="contenttable">
48
	<tr>
3681 daniel 49
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Firma', 'wpsg'); ?>:</td>
50
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['shipping_firma']); ?></td>
3648 daniel 51
	</tr>
52
	<tr>
3681 daniel 53
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Name', 'wpsg'); ?>:</td>
54
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['shipping_vname'].' '.$this->view['basket']['checkout']['shipping_name']); ?></td>
3648 daniel 55
	</tr>
56
	<tr>
3681 daniel 57
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Straße', 'wpsg'); ?>:</td>
58
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['shipping_strasse']); ?></td>
3648 daniel 59
	</tr>
60
	<tr>
3681 daniel 61
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Ort', 'wpsg'); ?>:</td>
62
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['shipping_plz'].' '.$this->view['basket']['checkout']['shipping_ort']); ?></td>
3648 daniel 63
	</tr>
64
	<tr>
3681 daniel 65
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Land', 'wpsg'); ?>:</td>
66
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['shipping_land']['name']); ?></td>
3648 daniel 67
	</tr>
68
</table>
69
<?php } else { ?>
70
 
71
<h2><?php echo __('Rechnungs- /Lieferadresse', 'wpsg'); ?>:</h2>
72
 
73
<table class="contenttable">
74
	<tr>
3681 daniel 75
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Firma', 'wpsg'); ?></td>
76
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['firma']); ?></td>
3648 daniel 77
	</tr>
78
	<tr>
3681 daniel 79
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Name', 'wpsg'); ?>:</td>
80
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['vname'].' '.$this->view['basket']['checkout']['name']); ?></td>
3648 daniel 81
	</tr>
82
	<tr>
3681 daniel 83
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Straße', 'wpsg'); ?>:</td>
84
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['strasse']); ?></td>
3648 daniel 85
	</tr>
86
	<?php if (trim($this->view['basket']['checkout']['ustidnr']) != "") { ?>
87
	<tr>
3681 daniel 88
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('USt.IdNr.', 'wpsg'); ?>:</td>
89
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['ustidnr']); ?></td>
3648 daniel 90
	</tr>
91
	<?php } ?>
92
	<tr>
3681 daniel 93
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Ort', 'wpsg'); ?>:</td>
94
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['plz'].' '.$this->view['basket']['checkout']['ort']); ?></td>
3648 daniel 95
	</tr>
96
	<tr>
3681 daniel 97
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Land', 'wpsg'); ?>:</td>
98
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['land']['name']); ?></td>
3648 daniel 99
	</tr>
100
	<tr>
3681 daniel 101
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Telefon', 'wpsg'); ?>:</td>
102
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['tel']); ?></td>
3648 daniel 103
	</tr>
104
	<tr>
3681 daniel 105
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Fax', 'wpsg'); ?>:</td>
106
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_hspc($this->view['basket']['checkout']['fax']); ?></td>
3648 daniel 107
	</tr>
108
	<tr>
3681 daniel 109
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('E-Mail Adresse', 'wpsg'); ?>:</td>
110
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><a href="mailto:<?php echo wpsg_hspc($this->view['basket']['checkout']['email']); ?>"><?php echo wpsg_hspc($this->view['basket']['checkout']['email']); ?></a></td>
3648 daniel 111
	</tr>
112
</table>
113
 
114
<?php } ?>
115
 
3679 daniel 116
<h2><?php echo __('Bestelldaten', 'wpsg'); ?>:</h2>
117
 
3648 daniel 118
<table class="contenttable">
119
	<tr>
3681 daniel 120
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Kundennummer', 'wpsg'); ?>:</td>
121
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo $this->view['basket']['checkout']['knr']; ?></td>
3648 daniel 122
	</tr>
123
	<tr>
3681 daniel 124
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Bestellnummer', 'wpsg'); ?>:</td>
125
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo $this->view['basket']['checkout']['onr']; ?></td>
3648 daniel 126
	</tr>
127
	<tr>
3681 daniel 128
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Bestelldatum', 'wpsg'); ?>:</td>
129
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo date("d.m.Y H:i:s", $this->view['basket']['checkout']['datum']); ?></td>
3648 daniel 130
	</tr>
131
	<tr>
3681 daniel 132
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Rechnungsbetrag'); ?>:</td>
133
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><strong><?php echo wpsg_ff($this->view['basket']['sum']['preis_gesamt_brutto'], $this->get_option('wpsg_currency')); ?></strong></td>
3648 daniel 134
	</tr>
135
	<?php if ($this->get_option('wpsg_kleinunternehmer') != '1') { ?>
136
	<tr>
3681 daniel 137
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col0"><?php echo __('Steueranteil'); ?>:</td>
138
		<td style="padding:2px; line-height:100%; vertical-align:middle;" class="col1"><?php echo wpsg_ff($this->view['basket']['sum']['mwst'], $this->get_option('wpsg_currency')); ?></td>
3648 daniel 139
	</tr>
140
	<?php } ?>
141
</table>
142
 
143
<?php if ($this->get_option('wpsg_kleinunternehmer') == '1') { ?>
3681 daniel 144
<table class="contenttable">
145
	<tr>
146
		<td style="padding:8px 2px 8px 2px; line-height:100%; vertical-align:middle;">
147
			<?php echo $this->get_option('wpsg_kleinunternehmer_text'); ?>
148
		</td>
149
	</tr>
150
</table>
3648 daniel 151
<?php } ?>
152
 
3679 daniel 153
<h2><?php echo __('Versand- und Lieferart', 'wpsg'); ?>:</h2>
154
 
3648 daniel 155
<table class="contenttable">
156
	<tr>
3681 daniel 157
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col0"><?php echo __('Versandart', 'wpsg'); ?>:</td>
158
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col1">
3648 daniel 159
			<?php echo $this->arShipping[$this->view['basket']['checkout']['shipping']]['name']; ?>
160
			<?php $this->callMods('mail_shipping'); ?>
161
		</td>
162
	</tr>
163
	<tr>
3681 daniel 164
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col0"><?php echo __('Zahlungsart', 'wpsg'); ?>:</td>
165
		<td style="padding:2px; line-height:100%; vertical-align:top;" class="col1">
3648 daniel 166
			<?php echo $this->arPayment[$this->view['basket']['checkout']['payment']]['name']; ?><br />
167
			<?php $this->callMods('mail_payment'); ?>
168
		</td>
169
	</tr>
170
</table>