Index: /mods/wpsg_mod_gutschein.class.php
===================================================================
--- /mods/wpsg_mod_gutschein.class.php	(revision 7460)
+++ /mods/wpsg_mod_gutschein.class.php	(revision 7461)
@@ -1267,7 +1267,21 @@
 		    $this->shop->update_option('wpsg_mod_gutschein_size', $_REQUEST['wpsg_mod_gutschein_size'], false, false, WPSG_SANITIZE_TEXTFIELD);
 		    $this->shop->update_option('wpsg_mod_gutschein_perPage', $_REQUEST['wpsg_mod_gutschein_perPage'], false, false, WPSG_SANITIZE_TEXTFIELD);
+		    
+		    $this->shop->update_option('wpsg_mod_gutschein_wert', $_REQUEST['wpsg_mod_gutschein_wert'], false, false, WPSG_SANITIZE_CHECKBOX); 
+		    $this->shop->update_option('wpsg_mod_gutschein_wert_bezeichnung', $_REQUEST['wpsg_mod_gutschein_wert_bezeichnung'], false, false, WPSG_SANITIZE_TEXTFIELD); 
+		    $this->shop->update_option('wpsg_mod_gutschein_wert_hint', $_REQUEST['wpsg_mod_gutschein_wert_hint'], false, false, WPSG_SANITIZE_TEXTAREA);
+		    $this->shop->update_option('wpsg_mod_gutschein_wert_gebuehr', $_REQUEST['wpsg_mod_gutschein_wert_gebuehr'], false, false, WPSG_SANITIZE_TEXTFIELD);
+		    $this->shop->update_option('wpsg_mod_gutschein_wert_mwst', $_REQUEST['wpsg_mod_gutschein_wert_mwst'], false, false, WPSG_SANITIZE_TEXTFIELD);
+		    $this->shop->update_option('wpsg_mod_gutschein_wert_mwstland', $_REQUEST['wpsg_mod_gutschein_wert_mwstland'], false, false, WPSG_SANITIZE_CHECKBOX); 
 			
 		} // public function settings_save()
 
+		public function product_bottom(&$product_id, $template_index)
+		{
+		   		  		    
+		    $this->shop->render(WPSG_PATH_VIEW.'/mods/mod_gutschein/product_bottom.phtml');
+		    
+		} // public function product_bottom(&$produkt_id, $template_index)
+		
 		public function admin_presentation()
 		{
Index: /views/mods/mod_gutschein/product_bottom.phtml
===================================================================
--- /views/mods/mod_gutschein/product_bottom.phtml	(revision 7461)
+++ /views/mods/mod_gutschein/product_bottom.phtml	(revision 7461)
@@ -0,0 +1,16 @@
+<?php
+
+	/**
+	 * Template um den Wertgutschein im unteren Bereich des Produkttemplates zu integrieren
+	 */
+
+?>
+<?php if ($this->hasMod('wpsg_mod_gutschein') && ($this->get_option('wpsg_mod_gutschein_wert') == 1)) { ?>
+
+	<div class="wpsg_checkoutblock" id="wpsg_vorname">
+		<label style="float:left" for="vname" class="wpsg_checkout"><?php echo __("Wertgutschein:", "wpsg"); ?></label>
+		<input style="width:50%; float:left; margin:0 20px; height:20px; " class="product_voucher" type="text" id="vname" value="" /><span style="float:left;"><?php echo $this->get_option('wpsg_currency'); ?></span>		
+	</div>
+	
+	<div class="wpsg_clear"></div>	<br />
+<?php } ?>
Index: /views/mods/mod_gutschein/settings_edit.phtml
===================================================================
--- /views/mods/mod_gutschein/settings_edit.phtml	(revision 7460)
+++ /views/mods/mod_gutschein/settings_edit.phtml	(revision 7461)
@@ -8,2 +8,32 @@
 <?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_size', __('LÃ€nge der Gutscheincodes', 'wpsg'), $this->get_option('wpsg_mod_gutschein_size'), array ('help' => 'wpsg_mod_gutschein_size')); ?>
 <?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_perPage', __('Gutscheine pro Seite (Backend)', 'wpsg'), $this->get_option('wpsg_mod_gutschein_perPage'), array ('help' => 'wpsg_mod_gutschein_perPage')); ?>
+
+<br />
+
+<?php echo wpsg_drawForm_Checkbox('wpsg_mod_gutschein_wert', __('Wertgutschein als Zahlungsart aktiv', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert'), array ('help' => 'wpsg_mod_gutschein_wert')); ?>
+<div class="wpsg_mod_gutschein_wert_activ" style="display:none;">
+    
+    <?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_wert_bezeichnung', __('Bezeichnung', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert_bezeichnung'), array('help' => 'wpsg_mod_gutschein_wert_bezeichnung')); ?>
+    <?php echo wpsg_drawForm_Textarea('wpsg_mod_gutschein_wert_hint', __('Hinweistext', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert_hint'), array('help' => 'wpsg_mod_gutschein_wert_hint')); ?>
+    
+    <br />
+    <?php echo wpsg_drawForm_Input('wpsg_mod_gutschein_wert_gebuehr', __('GebÃŒhr/Rabatt', 'wpsg'), wpsg_ff($this->get_option('wpsg_mod_gutschein_wert_gebuehr'), true), array('help' => 'wpsg_mod_gutschein_wert_gebuehr','unit' => $this->get_option('wpsg_currency').' / %')); ?>
+    <?php echo wpsg_drawForm_Select('wpsg_mod_gutschein_wert_mwst', __('Mehrwertsteuersatz', 'wpsg'), wpsg_tax_groups(), $this->get_option('wpsg_mod_gutschein_wert_mwst'), array('help' => 'wpsg_mod_gutschein_wert_mwst')); ?>
+    <?php echo wpsg_drawForm_Checkbox('wpsg_mod_gutschein_wert_mwstland', __('Keine MwSt. wenn Land steuerfrei', 'wpsg'), $this->get_option('wpsg_mod_gutschein_wert_mwstland'), array('help' => 'wpsg_mod_gutschein_wert_mwstland')); ?>
+
+</div>
+
+<script type="text/javascript">/* <![CDATA[ */
+
+	jQuery(document).ready(function() {
+
+		jQuery('#wpsg_mod_gutschein_wert').bind('change', function() {
+
+			if (jQuery(this).is(':checked')) jQuery('.wpsg_mod_gutschein_wert_activ').show();
+			else jQuery('.wpsg_mod_gutschein_wert_activ').hide();
+			
+		} ).change();
+		
+	} );
+
+/* ]]> */</script>
