My client sells party supplies and there are sevral products that have a "count" field.
For example a bag of candles has a quantity or "count" of 10 in each bag.
Is there a field that can be used or renamed for this without programming?
My client sells party supplies and there are sevral products that have a "count" field.
For example a bag of candles has a quantity or "count" of 10 in each bag.
Is there a field that can be used or renamed for this without programming?
do you only sell bags? what are you trying to track inventory of (bags or candles)? thx.
AspDotNetStorefront
Shopping Cart
We sell the bags but we need to be able to display how many items are in the bags. So we will have a display something like:
sku: 54321
part #: 12345
count: 25
price: $3.50
I am looking for a field to use for "count"
If you're using ML8012 where you have the stock control and you also have the source code, you will need to simply modify the AppLogic.GetInventoryTable method and simply add the highlighted part:
if (ShowActualValues)
{
tmpS.Append(messageInStockOnProductPage);
tmpS.Append(":" + iVal.ToString());
}
else
{
tmpS.Append(messageInStockOnProductPage);
tmpS.Append(":" + iVal.ToString());
and that's it...![]()