Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Mark product out of stock on Order Confirmation E-mail


robyoung

Recommended Posts

Posted

Hi

 

Is there a current fix or can someone advise how I can add the "Mark product out of stock" comments onto the order confirmation?

 

I would like the e-mail to say:

 

1 x Product Not in Stock Ordered = ?14.99 PRE-ORDER

1 x Product In Stock Ordered = ?14.99

 

Any suggestions?

Posted
Hi

 

Is there a current fix or can someone advise how I can add the "Mark product out of stock" comments onto the order confirmation?

 

I would like the e-mail to say:

 

1 x Product Not in Stock Ordered = ?14.99 PRE-ORDER

1 x Product In Stock Ordered = ?14.99

 

Any suggestions?

checkout_process.php

 

in line you get the current stock 148

$stock_values['products_quantity']

 

I guess that is where you have a 0 for your preorder items

 

you can wrap a conditional statement for that on your products display in line 219

	$products_ordered .= $order->products[$i]['qty'] . ' x ' . $order->products[$i]['name'] . ' (' . $order->products[$i]['model'] . ') = ' . $currencies->display_price($order->products[$i]['final_price'], $order->products[$i]['tax'], $order->products[$i]['qty']) . $products_ordered_attributes . "\n";

 

separate this into several parts (cust before and after you want to add text) and wrap those parts in the check if the stock is 0

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Posted

Rob, the method I described will exactly change that: the email

 

I id not give you ready made code, you need to write it yourself

:-)

Monika

 

addicted to writing code ... can't get enough of databases either, LOL!

 

my toolbox: Textpad - Compare and Merge - phpMyAdmin - WS_FTP - Photoshop - How to search the forum

 

Interactive Media Award July 2007 ~ category E-Commerce

my advice on the forum is for free, PMs where you send me work are considered consultation which I charge for ...

Archived

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

×
×
  • Create New...