Subversion Repositories wpShopGermany4

Rev

Rev 7314 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5720 daniel 1
<?php
2
 
3
    /**
7787 daniel 4
     * User: Daschmi (https://daschmi.de)
5720 daniel 5
     * Date: 07.08.2016
6
     * Time: 10:52
7
     */
8
 
9
?>
10
 
11
<?php echo wpsg_drawForm_AdminboxStart(__('Versand- und Zahlungsart', 'wpsg')); ?>
12
 
13
    <?php echo wpsg_drawForm_TextStart(); ?>
14
        <?php echo wpsg_hspc($this->view['oOrder']->getShippingLabel()); ?>
15
        <?php $shippingCost = $this->view['oOrder']->getShippingAmount($this->getBackendTaxview()); ?>
16
        <?php if ($shippingCost > 0) { ?>
17
        (<?php echo wpsg_ff($shippingCost, $this->get_option('wpsg_currency')); ?>)
18
        <?php } ?>
6081 hartmut 19
    <?php echo wpsg_drawForm_TextEnd(__('Versandart', 'wpsg')); ?>
5720 daniel 20
 
21
    <?php echo wpsg_drawForm_TextStart(); ?>
22
        <?php echo wpsg_hspc($this->view['oOrder']->getPaymentLabel()); ?>
23
        <?php $paymentCost = $this->view['oOrder']->getPaymentAmount($this->getBackendTaxview()); ?>
24
        <?php if ($paymentCost > 0) { ?>
25
        (<?php echo wpsg_ff($paymentCost, $this->get_option('wpsg_currency')); ?>)
26
        <?php } ?>
6081 hartmut 27
    <?php echo wpsg_drawForm_TextEnd(__('Zahlungsart', 'wpsg')); ?>
5720 daniel 28
 
29
    <?php $this->callMods('order_view_afterpayment', array(&$this->view['data']['id'])); ?>
7184 thomas 30
 
7314 thomas 31
    <?php /* Retourenlabel DHL  ?>
7184 thomas 32
    <?php echo wpsg_drawForm_TextStart();?>
7314 thomas 33
		<a href="https://amsel.dpwn.net/abholportal/gw/lp/portal/[portalname]/customer/RpOrder.action?onInit=&delivery=RetourenLager01&SHIPMENT_REFERENCE=<?php echo $this->view['data']['onr']; ?>
7184 thomas 34
		   &ADDR_SEND_STREET_ADD=<?php echo $this->view['data']['onr']; ?>
35
		   &ADDR_SEND_FIRST_NAME=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceFirstname())); ?>
36
		   &ADDR_SEND_LAST_NAME=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceName())); ?>
37
		   &ADDR_SEND_NAME_ADD=<?php echo rawurlencode(utf8_decode($company)); ?>
38
		   &ADDR_SEND_EMAIL=<?php echo $this->view['data']['email']; ?>
39
		   &ADDR_SEND_STREET=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceStreet())); ?>
40
		   &ADDR_SEND_ZIP=<?php echo $this->view['oOrder']->getInvoiceZip(); ?>
41
		   &ADDR_SEND_CITY=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceCity())); ?>
42
		   " target="_blank"><?php echo __('Retourenlabel anfordern', 'wpsg'); ?></a>
43
 
7314 thomas 44
    <?php echo wpsg_drawForm_TextEnd(__('Retourenlabel', 'wpsg')); ?> */?>
5720 daniel 45
 
46
<?php echo wpsg_drawForm_AdminboxEnd(); ?>