Subversion Repositories wpShopGermany4

Rev

Rev 7483 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php

        /**
         * Template für die Ausgabe des Gutscheinproduktmoduls innerhalb der Bestellverwaltung 
         */

?>

<?php if (wpsg_isSizedArray($this->view['wpsg_mod_voucherproduct']['data'])) { ?>
<div class="wpsg_mod_voucherproduct_list">
        <?php foreach ($this->view['wpsg_mod_voucherproduct']['data'] as $d) { ?>
        <div class="wpsg_mod_voucherproduct_code">
                <a href="<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Voucher&amp;wpsg_search=<?php echo $d['code']; ?>"><?php echo wpsg_hspc($d['code']); ?></a>
                <?php if ($this->callMod('wpsg_mod_voucherproduct', 'hasFile', array($this->view['wpsg_mod_voucherproduct']['order_id'], $d['id']))) { ?>
                &nbsp;/&nbsp;<a target="_blank" href="<?php echo $this->callMod('wpsg_mod_voucherproduct', 'getBackendDownloadURL', array($this->view['wpsg_mod_voucherproduct']['order_id'], $d['id'])); ?>">
                        <?php echo __('Download', 'wpsg'); ?>
                </a>
                <?php } ?>      
                <?php if ($d['calc_typ'] == 'w') { ?>
                &nbsp;(<?php echo wpsg_ff($d['value'], $this->get_option('wpsg_currency'))?>)
                <?php } else if ($d['calc_typ'] == 'p') { ?>
                &nbsp;(<?php echo wpsg_ff($d['value'], '%')?>)
                <?php } ?>              
        </div>
        <div class="wpsg_mod_voucherproduct_status"><?php echo wpsg_hspc($d['status']); ?></div>
        <div class="wpsg_clear"></div>
        <?php } ?>      
</div>
<br />
<input onclick="return wpsg_mod_voucher_send();" type="button" class="wpsg_button" value="<?php echo __('Gutscheine versenden', 'wpsg'); ?>" />
<?php } else { ?>
<p><?php echo __('Noch keine Gutscheine für diese Bestellung generiert.', 'wpsg'); ?></p>
<?php if ($this->callMod('wpsg_mod_voucherproduct', 'hasVocherProducts', array($this->view['wpsg_mod_voucherproduct']['order_id']))) { ?>
<p class="wpsg_hinweis"><?php echo __('Gutscheine aus Gutscheinprodukten werden beim Wechsel auf "Zahlung aktzeptiert" generiert.', 'wpsg'); ?>
<?php } ?>
<br /><br />
<?php } ?>
<?php /*<input onclick="return wpsg_mod_voucher_greate();" type="button" class="wpsg_button"  value="<?php echo __('Neuen Gutschein generieren', 'wpsg'); ?>" />*/ ?>
<div class="wpsg_clear"></div>