Subversion Repositories wpShopGermany4

Rev

Rev 7486 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<?php
        
        /**
         * User: Daschmi (daschmi@daschmi.de)
         * Date: 05.10.2018
         * Time: 08:24
         */
        
        namespace wpsg;
        
        /** @var wpsg_calculation $oCalculation */
        $oCalculation = $this->view['oCalculation'];
         
        if ($this->getBackendTaxView() === WPSG_NETTO) $strBN = 'NETTO';
        else $strBN = 'BRUTTO';
        
        $arCalculation = $oCalculation->getCalculationArray();
        
        $strVal = ((isset($arCalculation['voucher'][0]['set']))?$arCalculation['voucher'][0]['set']:0); 
        
        if (strpos($strVal, '%') !== false) $strVal = wpsg_ff(wpsg_tf($strVal), '%');
        else $strVal = wpsg_ff(wpsg_tf($strVal), $this->get_option('wpsg_currency'));
        
?>

<form id="wpsg_be_voucher_form">
        
        <div class="autocomplete_wrap">
                <?php echo wpsg_drawForm_Input('be_voucher_search', __('Gutscheinsuche', 'wpsg'), ''); ?>
        </div>
        
        <br />
                                
        <?php echo wpsg_drawForm_Input('be_voucher_code', __('Code (Optional)', 'wpsg'), @$arCalculation['voucher'][0]['code']); ?>
        <?php echo wpsg_drawForm_Input('be_voucher_id', __('Guschein ID (Optional)', 'wpsg'), @$arCalculation['voucher'][0]['id']); ?>
        <?php echo wpsg_drawForm_Input('be_voucher_amount', wpsg_translate(__('Gutscheinwert in #1# (#2#) oder % ', 'wpsg'), $this->get_option('wpsg_currency'), $strBN), $strVal); ?>
                
</form>

<script>

        jQuery('#wpsg_be_voucher_form').on('submit', function() { return false; } );
        jQuery('#be_voucher_search').focus();
        
        jQuery(document).ready(function() {

                jQuery('#be_voucher_search').autocomplete( {
                        source: '<?php echo WPSG_URL_WP; ?>wp-admin/admin.php?page=wpsg-Order&action=view&subaction=editVoucher&do=search&noheader=1&edit_id=<?php echo $_REQUEST['edit_id']; ?>',
                        minLength: 2,
                        appendTo: ".autocomplete_wrap",
                        select: function(event, ui) {

                                jQuery('#be_voucher_code').val(ui.item.code);
                                jQuery('#be_voucher_id').val(ui.item.id);                               
                                jQuery('#be_voucher_amount').val(ui.item.gs_value);
                                
                                jQuery('#be_voucher_search').val('');
                                
                                return false;

                        }
                } );
                
        } );

</script>