Index: /changelog
===================================================================
--- /changelog	(revision 5541)
+++ /changelog	(revision 5543)
@@ -808,6 +808,8 @@
  - Feature - UnvollstÃ€ndige Bestellungen lassen sich optional im Backend anzeigen
  - Feature - Einzelne Posten werden gerundet aufsummiert
+ - Feature - EAN und GTIN optional hinterlegbar im Produktartikel
  - Feature - Varianten mti Lagerbestand=0 kÃ¶nnen optional angezeigt werden
  - Feature - PostID wird beim wechsel der Variante mit ÃŒbergeben
+ - Feature - Lieferzeit 0 Tag(e) wird als sofort lieferbar im Produkt angezeigt
  - Feature - Alle Mails aus dem Shop senden den Return-Path (From) mit
  - Feature - MÃ¶glichkeit um die PHP Einstellung "auto_detect_line_ending" zu setzen (FÃŒr Importe auf einem MAC)
Index: /views/produkttemplates/standard.phtml
===================================================================
--- /views/produkttemplates/standard.phtml	(revision 5541)
+++ /views/produkttemplates/standard.phtml	(revision 5543)
@@ -55,6 +55,11 @@
 			<?php if ($this->get_option('wpsg_showArticelnumber') == '1') { ?>
 			<div class="wpsg_artikelnummer"> 
-				<?php echo __('Artikelnummer', 'wpsg'); ?>: <span class="wpsg_anr"><?php echo wpsg_hspc($this->view['data']['anr']); ?></span>
-			</div>
+				<?php echo __('Artikelnummer', 'wpsg'); ?>: <span class="wpsg_anr"><?php echo wpsg_hspc($this->view['data']['anr']); ?></span><br />
+				<?php if (wpsg_isSizedInt($this->get_option('wpsg_mod_produktartikel_ean'))) {?>
+					<?php echo __('EAN','wpsg');?>:<span class="wpsg_ean"><?php echo wpsg_hspc($this->view['data']['ean']); ?></span><br />
+				<?php } ?>
+				<?php if (wpsg_isSizedInt($this->get_option('wpsg_mod_produktartikel_gtin'))) {?>
+					<?php echo __('GTIN','wpsg');?>:<span class="wpsg_gtin"><?php echo wpsg_hspc($this->view['data']['gtin']); ?></span><br />
+				<?php }?></div>
 			<?php } ?>
 		
@@ -117,11 +122,14 @@
 				
 				<div class="wpsg_mod_deliverytime">
-					<?php echo wpsg_translate(__('Lieferzeit: #1#', 'wpsg'), $this->callMod('wpsg_mod_deliverytime', 'getProductDeliveryTime', array($this->view['data']['id']))); ?>					
+					<?php if (($this->view['data']['wpsg_mod_deliverytime_deliverytime']) > '1') { /* Lieferzeit > 0 */ ?>
+						<?php echo wpsg_translate(__('Lieferzeit: #1#', 'wpsg'), $this->callMod('wpsg_mod_deliverytime', 'getProductDeliveryTime', array($this->view['data']['id']))); ?>
+					<?php } else { /* Lieferzeit = 0 */ ?>
+						<?php echo wpsg_translate(__('Lieferzeit: sofort lieferbar', 'wpsg')); ?>
+					<?php } ?>
 				</div>
 				
 			<?php } ?>
 			<?php /* Lieferzeit Anzeige ENDE */ ?>
-			
-			
+						
 			<?php /* Gewichtsanzeige START */ ?>
 			<?php if ($this->hasMod('wpsg_mod_weight') && $this->get_option('wpsg_mod_weight_showProduct') === '1') { ?>
