svn commit: r523174 - /ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/FinAccountDetail.ftl

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

svn commit: r523174 - /ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/FinAccountDetail.ftl

jonesde
Author: jonesde
Date: Tue Mar 27 21:49:50 2007
New Revision: 523174

URL: http://svn.apache.org/viewvc?view=rev&rev=523174
Log:
Added columns for payment and order info on FinAccountTrans

Modified:
    ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/FinAccountDetail.ftl

Modified: ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/FinAccountDetail.ftl
URL: http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/FinAccountDetail.ftl?view=diff&rev=523174&r1=523173&r2=523174
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/FinAccountDetail.ftl (original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/customer/FinAccountDetail.ftl Tue Mar 27 21:49:50 2007
@@ -46,6 +46,8 @@
   <tr>
     <th>Transaction ${uiLabelMap.CommonDate}</th>
     <th>ID</th>
+    <th>Order Item</th>
+    <th>Payment</th>
     <th>Type</th>
     <th>Amount</th>
   </tr>
@@ -58,6 +60,8 @@
   <tr>
     <td>${ownedFinAccountTrans.transactionDate?if_exists}</td>
     <td>${ownedFinAccountTrans.finAccountTransId}</td>
+    <td><#if ownedFinAccountTrans.orderId?has_content>${ownedFinAccountTrans.orderId?if_exists}:${ownedFinAccountTrans.orderItemSeqId?if_exists}<#else>&nbsp;</#if></td>
+    <td><#if ownedFinAccountTrans.paymentId?has_content>${ownedFinAccountTrans.paymentId?if_exists}<#else>&nbsp;</#if></td>
     <td>${finAccountTransType.description?default(ownedFinAccountTrans.finAccountTransTypeId)?if_exists}</td>
     <td><@ofbizCurrency amount=displayAmount isoCode=ownedFinAccount.currencyUomId/></td>
   </tr>