Subversion-Projekte lars-tiefland.shop_ns

Revision

Blame | Letzte Änderung | Log anzeigen | RSS feed

<script>
    function toggle(id) {
         
        if(document.getElementById('v_'+id).style.display == 'block') {
            document.getElementById('td1_'+id).style.borderBottom = '1px dotted #F3D4B1';
            document.getElementById('td2_'+id).style.borderBottom = '1px dotted #F3D4B1';
            document.getElementById('td3_'+id).style.borderBottom = '1px dotted #F3D4B1';
            document.getElementById('td4_'+id).style.borderBottom = '1px dotted #F3D4B1';
            document.getElementById('td5_'+id).style.borderBottom = '1px dotted #F3D4B1';
            document.getElementById('v_'+id).style.display = 'none';
            
        }else{
            document.getElementById('td1_'+id).style.borderBottom = 'none';
            document.getElementById('td2_'+id).style.borderBottom = 'none';
            document.getElementById('td3_'+id).style.borderBottom = 'none';
            document.getElementById('td4_'+id).style.borderBottom = 'none';
            document.getElementById('td5_'+id).style.borderBottom = 'none';
            document.getElementById('v_'+id).style.display = 'block';
        }
                
    }
    
</script>
<div class="box_2">
    <div class="box_top">
        <h1>Versand- und Zahlarten</h1>
    </div>
    <div class="box_middle">
            <table width cellpadding="0" cellspacing="0" class="versanduebersicht" border="0">
                <tr>
                    <td class="" colspan="5">
                        <form class="basket_form" action="{if $ini.ssl_buy==1}https://{$smarty.server.SERVER_NAME}{/if}/index.php?mode=versand_uebersicht" method="get" name="uebersicht" id="uebersicht">
                            <input type="hidden" name="mode" value="versand_uebersicht">
                            
                            <div>
                            <label for="Land" style="float:left;width:210px;display:inline;">Bitte w&auml;hlen Sie Ihr Land aus:</label>
                            {html_options style="width:140px;" options=$Laender id="Land" name="vLand" selected=$smarty.get.vLand onchange="document.forms.uebersicht.submit();"}</div>
                            
                            <div>
                            <label for="rufname" style="margin-top:10px;float:left;width:210px;display:inline;">Zahlungsart einschr&auml;nken:</label>
                            {html_options style="width:140px;text-transform:capitalize;margin-top:10px;" options=$rufnamen id="rufname" name="vRufname" selected=$smarty.get.vRufname onchange="document.forms.uebersicht.submit();"}
                            </div>
                            
                            
                            
                        </form>   
                        <br><br>                 
                    </td>
                </tr>
                <tr>
                    <td style="background-color:#F3D4B1;"><b>Versandart und Zahlungsart</b></td>
                    <td style="background-color:#F3D4B1;text-align:right;" align="right"><b>Gewichtsbereich</b></td>
                    <td style="background-color:#F3D4B1;text-align:center;"><b>Sperrgut*</b></td>
                    <td style="background-color:#F3D4B1;text-align:center;"><b>Versand kostenlos*</b></td>
                    <td style="background-color:#F3D4B1;text-align:right;"><b>Preis</b></td>
                </tr>
                {section loop=$versand_uebersicht.basketVersand name=b_ind}
                
                {assign var=old_rufname value=$versand_uebersicht.basketVersand[b_ind].rufname}
                {if $old_rufname != $new_rufname} 
                    <tr><td colspan="5" style="border-bottom:1px dotted #666;background-color:#F3D4B1;font-weight:bold;text-transform:capitalize;">{$old_rufname}</td></tr>
                {/if}
                {if $versand_uebersicht.basketVersand[b_ind].kurz!="Neue Versandoption"}
                <tr style="cursor:pointer;" onclick="toggle('{$versand_uebersicht.basketVersand[b_ind].ID}');" onmouseover="this.style.backgroundColor='#F3D4B1';" onmouseout="this.style.backgroundColor='#fff';">
                    <td id="td1_{$versand_uebersicht.basketVersand[b_ind].ID}" valign="top" style="width:220px;border-bottom:1px dotted #666;">
                        <div style="cursor:pointer;" >{$versand_uebersicht.basketVersand[b_ind].kurz}</div>
                         
                    </td>
                    <td id="td2_{$versand_uebersicht.basketVersand[b_ind].ID}" valign="top" align="right" class="" style="width:100px;border-bottom:1px dotted #666;">
                        {$versand_uebersicht.basketVersand[b_ind].preis_neu1|replace:'.00':''|replace:'99999':'&infin;'}&nbsp;kg-{$versand_uebersicht.basketVersand[b_ind].preis_neu2|replace:'.00':''|replace:'99999':'&infin;'}&nbsp;kg
                    </td>
                    <td id="td3_{$versand_uebersicht.basketVersand[b_ind].ID}" class="" valign="top" style="width:80px;text-align:center;border-bottom:1px dotted #666;">
                        {if $versand_uebersicht.basketVersand[b_ind].Eigenschaft_1==1}
                        ja
                        {else}
                        nein
                        {/if}
                    </td>
                    <td id="td4_{$versand_uebersicht.basketVersand[b_ind].ID}" class="" valign="top" style="width:80px;text-align:center;border-bottom:1px dotted #666;">
                        {if $versand_uebersicht.basketVersand[b_ind].Eigenschaft_2==1}
                        ja
                        {else}
                        nein
                        {/if}
                    </td>
                    <td id="td5_{$versand_uebersicht.basketVersand[b_ind].ID}" class="" valign="top" style="width:70px;text-align:right;border-bottom:1px dotted #666;">{$versand_uebersicht.basketVersand[b_ind].preis}&nbsp;&euro;</td>
                    
                </tr>
                <tr style="display:none;" id="v_{$versand_uebersicht.basketVersand[b_ind].ID}">
                    <td style="width:630px;border-bottom:1px dotted #666;color:#666;" colspan="5">
                        {$versand_uebersicht.basketVersand[b_ind].beschr}
                    </td>
                </tr>
                {/if}
                {assign var=new_rufname value=$old_rufname}
                {sectionelse}
                <tr>
                    <td colspan="5">
                        <p>Keine Zahlungsarten gefunden. &Auml;ndern Sie bitte die Suchkriterien.</p>
                    </td>
                </tr>
                {/section}
                <tr>
                    <td colspan="5">
                        <p style="font-size:0.8em;">*gilt nur f&uuml;r Artikel, die entsprechend gekennzeichnet sind.</p>
                        
                    </td>
                </tr>
                
                <tr>
                    <td colspan="5">
<p>
<b>Zahlung per Nachnahme</b> <br>
Bitte denken Sie daran, dass die DHL ein Einzugsentgeld von 2,00 Euro verlangt, welches vom Empf&auml;nger gezahlt werden muss und separat zum Rechnungsbetrag f&auml;llig wird.
</p>
<!--
<p>
<b>Zahlung per PayPal</b> <br>
W&auml;hrend des Bestellvorgangs k&ouml;nnen Sie die Bezahlung mit PayPal vornehmen. Dabei stehen Ihnen bei PayPal &Uuml;berweisung, Lastschrift, giropay oder die Zahlung mit Kreditkarte zur Verf&uuml;gung. Bei Zahlung per PayPal werden Zusatzkosten von 1,90% erhoben.
</p>

<p>
<b>Zahlung mit Kreditkarte</b><br> 
Sie k&ouml;nnen bei uns mit Visa, Eurocard-Mastercard bezahlen. Bei Zahlung per Kreditkarte werden Zusatzkosten von 2,60% erhoben. <br>
&quot;Verified by Visa sch&uuml;tzt Ihre Visa Karte ( Eurocard-Mastercard ) mit einem pers&ouml;nlichen Kennwort und stellt damit sicher, dass nur Sie mit Ihrer Karte im Internet zahlen k&ouml;nnen.&quot; 
</p>

<p>
<b>Versand in Nicht-EU L&auml;nder</b><br> 
Bei Lieferungen in das Nicht-EU Ausland fallen zus&auml;tzliche Z&ouml;lle, Steuern und Geb&uuml;hren an. Weitere Informationen zu Z&ouml;llen finden Sie beispielsweise unter<br>
<a href="http://ec.europa.eu/taxation_customs/dds/cgi-bin/tarchap?Lang=DE" target="_blank">http://ec.europa.eu/taxation_customs/dds/cgi-bin/tarchap?Lang=DE</a><br>
und zur Einfuhrumsatzsteuer unter <br>
<a href="http://auskunft.ezt-online.de/ezto/Welcome.do" target="_blank">http://auskunft.ezt-online.de/ezto/Welcome.do</a><br>
sowie speziell f&uuml;r die Schweiz unter:<br>
<a href="http://xtares.admin.ch/tares/login/loginFormFiller.do" target="_blank">http://xtares.admin.ch/tares/login/loginFormFiller.do</a>
</p>
-->                
                    </td>
                </tr>
            </table>
            
    </div>
</div>
<div class="break"></div>