Important Notice from AspDotNetStorefront
It is with dismay that we report that we have been forced, through the action of hackers, to shut off write-access to this forum. We are keen to leave the wealth of material available to you for research. We have opened a new forum from which our community of users can seek help, support and advice from us and from each other. To post a new question to our community, please visit: http://forums.vortx.com
Results 1 to 4 of 4

Thread: Suggestion Please

  1. #1
    dfree99 is offline Member
    Join Date
    Nov 2007
    Posts
    48

    Default Suggestion Please

    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?

  2. #2
    Rob is offline Senior Member
    Join Date
    Aug 2004
    Posts
    3,037

    Default

    do you only sell bags? what are you trying to track inventory of (bags or candles)? thx.
    AspDotNetStorefront
    Shopping Cart

  3. #3
    dfree99 is offline Member
    Join Date
    Nov 2007
    Posts
    48

    Default

    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"

  4. #4
    Jao is offline Senior Member
    Join Date
    Oct 2008
    Posts
    1,132

    Default

    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...