svn commit: r439116 - /incubator/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderheader.ftl

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

svn commit: r439116 - /incubator/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderheader.ftl

sichen
Author: sichen
Date: Thu Aug 31 17:27:00 2006
New Revision: 439116

URL: http://svn.apache.org/viewvc?rev=439116&view=rev
Log:
Add external login key for Authorize and Capture buttons for credit cards and made them buttontext

Modified:
    incubator/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderheader.ftl

Modified: incubator/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderheader.ftl
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderheader.ftl?rev=439116&r1=439115&r2=439116&view=diff
==============================================================================
--- incubator/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderheader.ftl (original)
+++ incubator/ofbiz/trunk/applications/order/webapp/ordermgr/order/orderheader.ftl Thu Aug 31 17:27:00 2006
@@ -343,10 +343,10 @@
                               <#-- Authorize and Capture transactions -->
                           <div class="tabletext">
                                 <#if orderPaymentPreference.statusId != "PAYMENT_SETTLED">
-                                  [<a href="/accounting/control/AuthorizeTransaction?orderId=${orderId?if_exists}&orderPaymentPreferenceId=${orderPaymentPreference.orderPaymentPreferenceId}">${uiLabelMap.AccountingAuthorize}</a>]
+                                  <a href="/accounting/control/AuthorizeTransaction?orderId=${orderId?if_exists}&orderPaymentPreferenceId=${orderPaymentPreference.orderPaymentPreferenceId}&externalLoginKey=${externalLoginKey}" class="buttontext">${uiLabelMap.AccountingAuthorize}</a>
                                 </#if>
                                 <#if orderPaymentPreference.statusId == "PAYMENT_AUTHORIZED">
-                                  [<a href="/accounting/control/CaptureTransaction?orderId=${orderId?if_exists}&orderPaymentPreferenceId=${orderPaymentPreference.orderPaymentPreferenceId}">${uiLabelMap.AccountingCapture}</a>]
+                                  <a href="/accounting/control/CaptureTransaction?orderId=${orderId?if_exists}&orderPaymentPreferenceId=${orderPaymentPreference.orderPaymentPreferenceId}&externalLoginKey=${externalLoginKey}" class="buttontext">${uiLabelMap.AccountingCapture}</a>
                                 </#if>
                               </div>