Subversion Repositories wpShopGermany4

Rev

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