Rev 5720 | Rev 7314 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
/**
* User: Daschmi (daschmi@daschmi.de)
* Date: 07.08.2016
* Time: 10:52
*/
?>
<?php echo wpsg_drawForm_AdminboxStart(__('Versand- und Zahlungsart', 'wpsg')); ?>
<?php echo wpsg_drawForm_TextStart(); ?>
<?php echo wpsg_hspc($this->view['oOrder']->getShippingLabel()); ?>
<?php $shippingCost = $this->view['oOrder']->getShippingAmount($this->getBackendTaxview()); ?>
<?php if ($shippingCost > 0) { ?>
(<?php echo wpsg_ff($shippingCost, $this->get_option('wpsg_currency')); ?>)
<?php } ?>
<?php echo wpsg_drawForm_TextEnd(__('Versandart', 'wpsg')); ?>
<?php echo wpsg_drawForm_TextStart(); ?>
<?php echo wpsg_hspc($this->view['oOrder']->getPaymentLabel()); ?>
<?php $paymentCost = $this->view['oOrder']->getPaymentAmount($this->getBackendTaxview()); ?>
<?php if ($paymentCost > 0) { ?>
(<?php echo wpsg_ff($paymentCost, $this->get_option('wpsg_currency')); ?>)
<?php } ?>
<?php echo wpsg_drawForm_TextEnd(__('Zahlungsart', 'wpsg')); ?>
<?php $this->callMods('order_view_afterpayment', array(&$this->view['data']['id'])); ?>
<?php echo wpsg_drawForm_AdminboxEnd(); ?>