5873 |
hartmut |
1 |
<?php
|
|
|
2 |
|
|
|
3 |
/**
|
|
|
4 |
* Template für die Integration der PayPal Zahlungsart in die Bestellverwaltung
|
|
|
5 |
*/
|
|
|
6 |
|
|
|
7 |
?>
|
|
|
8 |
|
|
|
9 |
<?php if (wpsg_isSizedString($this->view['oOrder']->getMeta('wpsg_mod_paypal_paymentid'))) { ?>
|
|
|
10 |
|
|
|
11 |
<div class="wpsg_form_field ">
|
|
|
12 |
<div class="wpsg_form_left">
|
|
|
13 |
<label for=""><?php echo __('PaymentID', 'wpsg'); ?>: [<a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=ajax&noheader=1&mod=wpsg_mod_paypal&do=refresh&edit_id=<?php echo $this->view['oOrder']->id; ?>"><?php echo __('Status Aktualisieren', 'wpsg'); ?></a>]</label>
|
|
|
14 |
</div>
|
|
|
15 |
<div class="wpsg_form_right">
|
|
|
16 |
<p class="" id=""><?php echo wpsg_translate(__('#1# (#2#)', 'wpsg'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_paymentid'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_paymentstate')); ?></p>
|
|
|
17 |
</div>
|
|
|
18 |
<div class="wpsg_clear"></div>
|
|
|
19 |
</div>
|
|
|
20 |
|
|
|
21 |
<?php } ?>
|
|
|
22 |
|
|
|
23 |
<?php if (wpsg_isSizedString($this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid'))) { ?>
|
|
|
24 |
|
|
|
25 |
<?php echo wpsg_drawForm_Input('', __('SaleID', 'wpsg'), $this->view['oOrder']->getMeta('wpsg_mod_paypal_saleid'), array('text' => true)); ?>
|
|
|
26 |
|
|
|
27 |
<?php } ?>
|