Jump to content
xt:Commerce Community Forum

Nich vorrätig in Bestellmail


Recommended Posts

hi,

ganz so einfach ist es nicht;

in den Order-Dateien ist $products_quantity die Bestellmenge, Du könntest aber per php im E-Mail-Template den IST-Bestand aus der xt_products heranziehen und mit ausgeben,

etwa so:

{assign var=products_id value=$order_values.products_id}

{php}

--> holen der products_quantity aus der xt_products

$this->assign('products_quantity',$products_quantity);

{/php}

{if $products_quantity < 1}{txt key=TEXT_HAMWER_GRAD_NET}{/if}

{php)

Grüsse

Link to comment
Share on other sites

sollte dann so gehen:

{assign var=products_id value=$order_values.products_id}

{php}

global $db;

// Holen Template-Variable

$products_id = $this->get_template_vars('products_id');

// Datenbank-Abfrage

$rs = $db->Execute("SELECT products_quantity FROM ".TABLE_XT_PRODUCTS." WHERE products_id = '".$products_id."'");

$products_quantity = $rs->fields['products_quantity'];

// Ausgabe

$this->assign('products_quantity',$products_quantity);

{/php}

{if $products_quantity < 1}{txt key=TEXT_HAMWER_GRAD_NET}{/if}

Grüsse

Link to comment
Share on other sites

  • 4 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
  • Create New...