Tschaenssen Posted May 4, 2015 Report Share Posted May 4, 2015 Hallo zusammen, ich suche nach einer Möglichkeit den tatsächlichen Lagerbestand eines Artikels in der Bestellbestätigungs Email abzufragen und auszugeben. Hat das jemand evtl schonmal umgesetzt? Vielen Dank und freundliche Grüße Link to comment Share on other sites More sharing options...
oldbear Posted May 4, 2015 Report Share Posted May 4, 2015 am einfachsten mit inline-PHP im foreach über die Positionen: {assign var=products_id value=$order_values.products_id} {php} global $db; $products_id = $this->get_template_vars('products_id'); $rs = $db->Execute("SELECT products_quantity FROM ".TABLE_PRODUCTS." WHERE products_id = '".$products_id."'"); $stock = $rs->fields['products_quantity']; $this->assign('stock',$stock); {/php} danach steht {$stock} als tatsächlicher Lagerbestand zur Verfügung Grüsse Link to comment Share on other sites More sharing options...
df:bug Posted May 6, 2015 Report Share Posted May 6, 2015 Noch einfacher mit diesem Plugin. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.