Subversion Repositories wpShopGermany4

Rev

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

Rev Author Line No. Line
5720 daniel 1
<?php
2
 
3
    /**
4
     * User: Daschmi (daschmi@daschmi.de)
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
 
31
    <?php /* Retourenlabel DHL */ ?>
32
    <?php echo wpsg_drawForm_TextStart();?>
33
		<a href="https://amsel.dpwn.net/abholportal/gw/lp/portal/[portalname]/customer/RpOrder.action?onInit=
34
		   &delivery=RetourenLager01&SHIPMENT_REFERENCE=<?php echo $this->view['data']['onr']; ?>
35
		   &ADDR_SEND_STREET_ADD=<?php echo $this->view['data']['onr']; ?>
36
		   &ADDR_SEND_FIRST_NAME=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceFirstname())); ?>
37
		   &ADDR_SEND_LAST_NAME=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceName())); ?>
38
		   &ADDR_SEND_NAME_ADD=<?php echo rawurlencode(utf8_decode($company)); ?>
39
		   &ADDR_SEND_EMAIL=<?php echo $this->view['data']['email']; ?>
40
		   &ADDR_SEND_STREET=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceStreet())); ?>
41
		   &ADDR_SEND_ZIP=<?php echo $this->view['oOrder']->getInvoiceZip(); ?>
42
		   &ADDR_SEND_CITY=<?php echo rawurlencode(utf8_decode($this->view['oOrder']->getInvoiceCity())); ?>
43
		   " target="_blank"><?php echo __('Retourenlabel anfordern', 'wpsg'); ?></a>
44
 
45
    <?php echo wpsg_drawForm_TextEnd(__('Retourenlabel', 'wpsg')); ?>
5720 daniel 46
 
47
<?php echo wpsg_drawForm_AdminboxEnd(); ?>