4372 |
daniel |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Integration in html/order.phtml (Kundenmail, Adminmail, Auftragsbestätigung ...)
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
<tr class="productrow productrow2 <?php echo ((($this->view['i'] % 2) == 0)?'productrow_odd':'productrow_even'); ?>">
|
|
|
9 |
<td style="padding:4px; line-height:100%; vertical-align:middle;" class="col_pos"> </td>
|
4442 |
daniel |
10 |
<td style="padding:4px; line-height:100%; vertical-align:middle;" class="col_name">
|
|
|
11 |
<?php echo __('Lieferzeit', 'wpsg'); ?>:
|
4372 |
daniel |
12 |
</td>
|
4442 |
daniel |
13 |
<td style="padding:4px; line-height:100%; vertical-align:middle;" class="col_name" colspan="<?php echo ((sizeof($this->view['basket']['mwst']) > 1 || $this->get_option('wpsg_showMwstAlways') == '1')?'4':'3'); ?>">
|
|
|
14 |
<?php echo $this->view['wpsg_mod_deliverytime']['deliverytime']; ?>
|
6727 |
hartmut |
15 |
<?php
|
|
|
16 |
if ($this->view['wpsg_mod_deliverytime']['delaytime'] != '') {
|
|
|
17 |
echo __('<br />', 'wpsg');
|
|
|
18 |
echo __($this->view['wpsg_mod_deliverytime']['delaytime'], 'wpsg');
|
|
|
19 |
}
|
|
|
20 |
?>
|
4442 |
daniel |
21 |
</td>
|
4372 |
daniel |
22 |
</tr>
|