svn commit: r426287 - /incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl

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

svn commit: r426287 - /incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl

jacopoc
Author: jacopoc
Date: Thu Jul 27 15:28:32 2006
New Revision: 426287

URL: http://svn.apache.org/viewvc?rev=426287&view=rev
Log:
Fixed wrong unit price shown in purchase order entry.

Modified:
    incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl

Modified: incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl
URL: http://svn.apache.org/viewvc/incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl?rev=426287&r1=426286&r2=426287&view=diff
==============================================================================
--- incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl (original)
+++ incubator/ofbiz/trunk/applications/order/webapp/ordermgr/entry/cart/showcartitems.ftl Thu Jul 27 15:28:32 2006
@@ -234,7 +234,7 @@
                 <#if cartLine.getIsPromo() || (shoppingCart.getOrderType() == "SALES_ORDER" && !security.hasEntityPermission("ORDERMGR", "_SALES_PRICEMOD", session))>
                   <@ofbizCurrency amount=cartLine.getDisplayPrice() isoCode=currencyUomId/>
                 <#else>
-                  <input size="6" class="inputBox" type="text" name="price_${cartLineIndex}" value="${cartLine.getDisplayPrice()?string("##0.00")}"/>
+                  <input size="6" class="inputBox" type="text" name="price_${cartLineIndex}" value="${cartLine.getBasePrice()}"/>
                 </#if>
               </div>
             </td>