Subversion Repositories wpShopGermany4

Rev

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

<?php 

        /**
         * Templatedatei für die Einstellungen des Vorkasse Moduls
         */

?>

<div class="wpsg_form_field">
        <div class="wpsg_form_left">
                <?php echo __("Bezeichnung", "wpsg"); ?>:
        </div>
        <div class="wpsg_form_right">
                <input type="text" name="wpsg_mod_prepayment_bezeichnung" value="<?php echo $this->get_option('wpsg_mod_prepayment_bezeichnung'); ?>" />        
        </div>
        <div class="wpsg_clear"></div>
</div>
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_prepayment_aktiv', __('Aktiv', 'wpsg'), $this->get_option('wpsg_mod_prepayment_aktiv')); ?>
<?php echo wpsg_drawForm_Textarea('wpsg_mod_prepayment_hint', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_prepayment_hint')); ?>
<?php echo wpsg_drawForm_Input('wpsg_mod_prepayment_subject', __('Betreff für Überweisungen', 'wpsg'), $this->get_option('wpsg_mod_prepayment_subject'), array('help' => 'mod_prepayment_subject')); ?>

<br />
<?php echo wpsg_drawForm_Input('wpsg_mod_prepayment_gebuehr', __('Gebühr/Rabatt', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_prepayment_gebuehr'), true), array('unit' => $this->get_option('wpsg_currency').' / %')); ?>
<div class="wpsg_form_field">
        <div class="wpsg_form_left">
                <label for="wpsg_mod_prepayment_mwst"><?php echo __('Steuersatz', 'wpsg'); ?>:</label>
        </div>
        <div class="wpsg_form_right">
                <select id="wpsg_mod_prepayment_mwst" name="wpsg_mod_prepayment_mwst">
                        <option value="0"><?php echo __('anteilig', 'wpsg'); ?></option>
                        <?php foreach ((array)$this->view['mwst'] as $mwst) { ?>
                        <option value="<?php echo $mwst['id']; ?>" <?php echo (($mwst['id'] == $this->get_option('wpsg_mod_prepayment_mwst'))?'selected="selected"':''); ?>><?php echo wpsg_ff($mwst['value']).'%'; ?></option>
                        <?php } ?>
                </select>
        </div>
        <div class="wpsg_clear"></div>
</div>
<?php echo wpsg_drawForm_Checkbox('wpsg_mod_prepayment_mwstland', __('Keine MwSt. wenn Land steuerfrei', 'wpsg'), $this->get_option('wpsg_mod_prepayment_mwstland')); ?>

<br />
<?php echo wpsg_drawForm_Input('wpsg_mod_prepayment_kinhaber', __('Kontoinhaber', 'wpsg'), $this->get_option('wpsg_mod_prepayment_kinhaber')); ?>
<?php echo wpsg_drawForm_Input('wpsg_mod_prepayment_bank', __('Bank', 'wpsg'), $this->get_option('wpsg_mod_prepayment_bank')); ?>
<?php echo wpsg_drawForm_Input('wpsg_mod_prepayment_iban', __('IBAN', 'wpsg'), $this->get_option('wpsg_mod_prepayment_iban')); ?>
<?php echo wpsg_drawForm_Input('wpsg_mod_prepayment_swift', __('BIC-/SWIFT Code', 'wpsg'), $this->get_option('wpsg_mod_prepayment_swift')); ?>

<script type="text/javascript">

        jQuery(document).ready(function() {
                
                jQuery('.wpsg_form_help').tipTip();
                
        } );

</script>