You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ofbiz.apache.org by jl...@apache.org on 2008/01/16 14:36:57 UTC

svn commit: r612450 - /ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl

Author: jleroux
Date: Wed Jan 16 05:36:56 2008
New Revision: 612450

URL: http://svn.apache.org/viewvc?rev=612450&view=rev
Log:
This was worse than I thought : restored entire previous line (see rev. 611802)

Modified:
    ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl

Modified: ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl?rev=612450&r1=612449&r2=612450&view=diff
==============================================================================
--- ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl (original)
+++ ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl Wed Jan 16 05:36:56 2008
@@ -276,7 +276,7 @@
                       </#list>
                       </b>
                       </div>
-                      <div class="tabletext">${uiLabelMap.OrderUpdateEmailAddress} <a href="${customerDetailLink?if_exists}${shoppingCart.getPartyId()}" target="partymgr" class="buttontext">${uiLabelMap.PartyProfile}</a>.</div>
+                      <div class="tabletext">${uiLabelMap.OrderUpdateEmailAddress} <a href="<@o...@ofbizUrl>" class="buttontext">${uiLabelMap.PartyProfile}</a>.</div>
                       <br/>
                       <div class="tabletext">${uiLabelMap.OrderCommaSeperatedEmailAddresses}:</div>
                       <input type="text" class="inputBox" size="30" name="order_additional_emails" value="${shoppingCart.getOrderAdditionalEmails()?if_exists}"/>



Re: svn commit: r612450 -/ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl

Posted by Jacques Le Roux <ja...@les7arts.com>.
Bilgin,

Yes I understood, but had no time to test it more. If you test it and it works (it should from your previous tests I suppose) I 
think it's good for now

Thanks

Jacques

From: "Bilgin Ibryam" <bi...@iguanait.com>
> Jacques,
>
> I suppose that you saw the bug in ecommece application I did not realized that checkoutoptions.ftl is used also in ecommerce 
> screens.
> I wanted to fix the broken link in order manager quick checkout screen.
>
> Something like this should fix the bug in both screens(it is ugly but works)
>
> Index: applications/order/webapp/ordermgr/entry/checkoutoptions.ftl
> ===================================================================
> --- applications/order/webapp/ordermgr/entry/checkoutoptions.ftl (revision 612454)
> +++ applications/order/webapp/ordermgr/entry/checkoutoptions.ftl (working copy)
> @@ -276,7 +276,8 @@
>                       </#list>
>                       </b>
>                       </div>
> -                      <div class="tabletext">${uiLabelMap.OrderUpdateEmailAddress} <a 
> href="<@o...@ofbizUrl>" class="buttontext">${uiLabelMap.PartyProfile}</a>.</div>
> +                      <div class="tabletext">${uiLabelMap.OrderUpdateEmailAddress} <a href="<#if 
> customerDetailLink?exists>${customerDetailLink}${shoppingCart.getPartyId()}" target="partymgr"
> +                        <#e...@ofbizUrl>"</#if> 
> class="buttontext">${uiLabelMap.PartyProfile}</a>.</div>
>                       <br/>
>                       <div class="tabletext">${uiLabelMap.OrderCommaSeperatedEmailAddresses}:</div>
>                       <input type="text" class="inputBox" size="30" name="order_additional_emails" 
> value="${shoppingCart.getOrderAdditionalEmails()?if_exists}"/>
>
> What do you think?
> Bilgin
>
> 


Re: svn commit: r612450 - /ofbiz/trunk/applications/order/webapp/ordermgr/entry/checkoutoptions.ftl

Posted by Bilgin Ibryam <bi...@iguanait.com>.
Jacques,

I suppose that you saw the bug in ecommece application I did not realized that checkoutoptions.ftl is used also in ecommerce screens.
I wanted to fix the broken link in order manager quick checkout screen.

Something like this should fix the bug in both screens(it is ugly but works)

Index: applications/order/webapp/ordermgr/entry/checkoutoptions.ftl
===================================================================
--- applications/order/webapp/ordermgr/entry/checkoutoptions.ftl	(revision 612454)
+++ applications/order/webapp/ordermgr/entry/checkoutoptions.ftl	(working copy)
@@ -276,7 +276,8 @@
                       </#list>
                       </b>
                       </div>
-                      <div class="tabletext">${uiLabelMap.OrderUpdateEmailAddress} <a href="<@o...@ofbizUrl>" class="buttontext">${uiLabelMap.PartyProfile}</a>.</div>
+                      <div class="tabletext">${uiLabelMap.OrderUpdateEmailAddress} <a href="<#if customerDetailLink?exists>${customerDetailLink}${shoppingCart.getPartyId()}" target="partymgr"
+                        <#e...@ofbizUrl>"</#if> class="buttontext">${uiLabelMap.PartyProfile}</a>.</div>
                       <br/>
                       <div class="tabletext">${uiLabelMap.OrderCommaSeperatedEmailAddresses}:</div>
                       <input type="text" class="inputBox" size="30" name="order_additional_emails" value="${shoppingCart.getOrderAdditionalEmails()?if_exists}"/>

What do you think?
Bilgin