Author: sichen
Date: Wed Jan 24 10:57:26 2007
New Revision: 499533
URL: http://svn.apache.org/viewvc?view=rev&rev=499533
Log:
Fix bug where if customer requests return, we can't receive it because the
return form doesn't fill in the productId. This is a stopgap measure, an ideal
solution would be to lookup the required information for returns in the service.
Modified:
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/requestreturn.ftl
Modified:
ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/requestreturn.ftl
URL:
http://svn.apache.org/viewvc/ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/requestreturn.ftl?view=diff&rev=499533&r1=499532&r2=499533
==============================================================================
--- ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/requestreturn.ftl
(original)
+++ ofbiz/trunk/applications/ecommerce/webapp/ecommerce/order/requestreturn.ftl
Wed Jan 24 10:57:26 2007
@@ -75,6 +75,7 @@
<div class="tabletext">
<#if orderItem.productId?exists>
<a
href="<@ofbizUrl>product?product_id=${orderItem.productId}</@ofbizUrl>"
class="buttontext">${orderItem.productId}</a>
+ <input type="hidden" name="productId_o_${rowCount}"
value="${orderItem.productId}"/>
</#if>
${orderItem.itemDescription}
</div>