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

Thread: price and delivery condition problem

  1. #1
    Univest is offline Member
    Join Date
    Feb 2010
    Posts
    30

    Default price and delivery condition problem

    Im trying to show free shipping or standard shipping depending on the price level of the product as below.
    when a product have only price and no sale price this works fine but once
    you enter a sale price for the product, the code reads the condition for price too and then for example if the sale price is 40usd and the price is over 75 as below then freeshipping is shown instead of standard shipping since price is over 75 usd.

    I cant figure out how to combine "and" or "or " conditions to make this work.
    help would be appriciated.
    thx




    <xsl:choose>
    <xsl:when test='format-number((Price * 1.175),"#.00") > 75'>
    <div class="productfreedelivery"> free delivery </div>
    </xsl:when>

    <xsl:when test='format-number((SalePrice * 1.175),"#.00") > 75'>
    <div class="productfreedelivery"> Free delivery </div>
    </xsl:when>

    </xsl:choose>

  2. #2
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    You need to change the greater than sign to html code
    HTML Code:
    &gt ;
    I have to put spaces or else it will turn into the greater than sign.

    so your code should be...
    C#/VB.NET Code:
    <xsl:choose>
    <
    xsl:when test='format-number((Price * 1.175),"#.00") &gt ; 75'>
    <
    div class="productfreedelivery"free delivery </div>
    </
    xsl:when>

    <
    xsl:when test='format-number((SalePrice * 1.175),"#.00") &gt ; 75'>
    <
    div class="productfreedelivery"Free delivery </div>
    </
    xsl:when>

    </
    xsl:choose
    Just be sure to join the &gt ; together!
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  3. #3
    Univest is offline Member
    Join Date
    Feb 2010
    Posts
    30

    Default

    Thx For your reply but

    The code works fine its just that there is a condition conflict when there is a
    sale price also available.

    I want to combine the code together so that only one condition reads at a time.

    for example:

    if price = 75 or greater then free delivery

    or

    if saleprice=75 or greater then free delivery

    but


    if price greater than 75 and saleprice less than 75 then standard delivery.



    thank you

  4. #4
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    Ah well that is easy then just re-use the code from the google base feed!

    C#/VB.NET Code:

    <xsl:choose
    <
    xsl:when test="number(SalePrice)=0"

    <
    xsl:choose
    <
    xsl:when test='format-number((Price * 1.175),"#.00") &gt; 74.99'
    <
    div class="productfreedelivery"free delivery </div
    </
    xsl:when>
    <
    xsl:otherwise
    IT IS NORMAL PRICE BUT NOT FREE SHIPPING
    </xsl:otherwise
    </
    xsl:choose

    </
    xsl:when
    <
    xsl:otherwise

    <
    xsl:choose
    <
    xsl:when test='format-number((SalePrice * 1.175),"#.00") &gt; 74.99'
    <
    div class="productfreedelivery"free delivery </div
    </
    xsl:when>
    <
    xsl:otherwise
    IT IS SALE PRICE BUT NOT FREE SHIPPING
    </xsl:otherwise
    </
    xsl:choose

    </
    xsl:otherwise
    </
    xsl:choose
    I highly suggest changing the parts in capitals
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  5. #5
    Univest is offline Member
    Join Date
    Feb 2010
    Posts
    30

    Default

    thanks for the reply

    I added the code but it seems that it doesnt like to work.
    any ideas why?

    thank you




    Error in XmlPackage(.Load), Package=[product.simpleproduct.xml.config], Msg=[Exception=The 'xsl:choose' start tag on line 474 does not match the end tag of 'div'. Line 573, position 39.<br/>]

  6. #6
    DotNetDevelopments is offline Senior Member
    Join Date
    Jul 2008
    Location
    Harlow / Essex / UK
    Posts
    619

    Default

    Hmm I can't see anything wrong with my code at a glance. Make sure you have closed all div tags in your code. Check Line 573 and see what is going on.
    =====
    Version (Code/DB): AspDotNetStorefront MSx 9.1.0.1/9.1.0.0
    Execution Mode: 64 Bit
    Dot Net Developments - E-commerce By Experience

  7. #7
    Univest is offline Member
    Join Date
    Feb 2010
    Posts
    30

    Thumbs up

    Thank you so much for your help works like a glove, very nice thx

    had a extra extra <xsl:choose> <stupid>

    Thx mate your awsome