HomeHome Product Discus... Product Discus...Enhancement Req...Enhancement Req...Extended price on Checkout page?Extended price on Checkout page?
Previous
 
Next
New Post
6/12/2010 6:59 PM
 

Is there any way we could get the extended price to appear on the checkout page? Right now it shows the product name, the unit cost, the quantity, and a delete button. It'd be nice to have one more column showing the extended cost, unit cost * quantity, so the customer can see the math all the way through to the total listed at the bottom.


Ken Robbins http://macoundesign.com
 
New Post
6/13/2010 4:51 PM
 

I will add your request to the dev list and move the thread to the feature enhancement request section. Thanks for submitting the new feature!


At your service,
Dave Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/3/2010 6:58 AM
 

Bump. I'll second this motion.

 
New Post
12/7/2010 1:12 PM
 

For v3.94 in file ~\DesktopModules\Smith.QuickOrderEntry\QuickOrderEntry.ascx

1) Backup the original file.

2) Add this (about line 95)





<asp:TemplateField HeaderText="Extended" ItemStyle-CssClass="GridCellsRight">
<ItemTemplate>
<asp:label ID="lblExtension" runat="server" Text='<%# String.Format("{0:C2}",(decimal)Eval("Quantity") * (decimal)Eval("UnitCost")) %>' />
</ItemTemplate>
</asp:TemplateField>


3) And this (about line 26)

.GridCellsRight
{
padding-right:10px;
padding-left:10px;
padding-top:5px;
padding-bottom:5px;
font-family:Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
color:#000000;
text-align:right;
}

 
New Post
12/9/2010 1:05 PM
 

In the Quick Order Entry Module we have added new settings titled "Show Extended Price" and "Show Total" when checked display a line total for each row in the grid and and grand total in the footer as you posted in your thread. It will be released in cart v3.96 this friday. Thanks for contributing your solution back!

-Scott


Scott Kelly
Project Manager
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
Previous
 
Next
HomeHome Product Discus... Product Discus...Enhancement Req...Enhancement Req...Extended price on Checkout page?Extended price on Checkout page?