[jira] Created: (OFBIZ-1799) code displays "NOTE: This is a DEMO store-front. Orders placed here will NOT be billed, and will NOT be fulfilled" even if ProductStore.isDemoStore returns "N"

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

[jira] Created: (OFBIZ-1799) code displays "NOTE: This is a DEMO store-front. Orders placed here will NOT be billed, and will NOT be fulfilled" even if ProductStore.isDemoStore returns "N"

Nicolas Malin (Jira)
code displays "NOTE: This is a DEMO store-front.  Orders placed here will NOT be billed, and will NOT be fulfilled" even if ProductStore.isDemoStore returns "N"
----------------------------------------------------------------------------------------------------------------------------------------------------------------

                 Key: OFBIZ-1799
                 URL: https://issues.apache.org/jira/browse/OFBIZ-1799
             Project: OFBiz
          Issue Type: Bug
          Components: ecommerce
    Affects Versions: Release Branch 4.0
         Environment: all environments as this is coding bug
            Reporter: chris


See checkoutreview.ftl and ordercomplete.ftl and quickAnonCheckoutReview.ftl.
Line reads :
<#if !isDemoStore?exists || isDemoStore><p>${uiLabelMap.OrderDemoFrontNote}.</p>
Should read
<#if !isDemoStore?exists && isDemoStore><p>${uiLabelMap.OrderDemoFrontNote}.</p>


--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.

Reply | Threaded
Open this post in threaded view
|

[jira] Closed: (OFBIZ-1799) code displays "NOTE: This is a DEMO store-front. Orders placed here will NOT be billed, and will NOT be fulfilled" even if ProductStore.isDemoStore returns "N"

Nicolas Malin (Jira)

     [ https://issues.apache.org/jira/browse/OFBIZ-1799?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jacques Le Roux closed OFBIZ-1799.
----------------------------------

       Resolution: Invalid
    Fix Version/s: Release Branch 4.0
         Assignee: Jacques Le Roux

Just tested, sorry this is not true. It works well OOTB, please test on http://docs.ofbiz.org/display/OFBIZ/Alternative+Demo+Servers#AlternativeDemoServers-Release4.0

> code displays "NOTE: This is a DEMO store-front.  Orders placed here will NOT be billed, and will NOT be fulfilled" even if ProductStore.isDemoStore returns "N"
> ----------------------------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: OFBIZ-1799
>                 URL: https://issues.apache.org/jira/browse/OFBIZ-1799
>             Project: OFBiz
>          Issue Type: Bug
>          Components: ecommerce
>    Affects Versions: Release Branch 4.0
>         Environment: all environments as this is coding bug
>            Reporter: chris
>            Assignee: Jacques Le Roux
>             Fix For: Release Branch 4.0
>
>
> See checkoutreview.ftl and ordercomplete.ftl and quickAnonCheckoutReview.ftl.
> Line reads :
> <#if !isDemoStore?exists || isDemoStore><p>${uiLabelMap.OrderDemoFrontNote}.</p>
> Should read
> <#if !isDemoStore?exists && isDemoStore><p>${uiLabelMap.OrderDemoFrontNote}.</p>

--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.