Select the search type
 
  • Site
  • Web
Search

DotNetNuke Knowledge Base

DotNetNuke Ecommerce FAQ

License Key Request

DNN Module Downloads

Smith Cart change log

Dotnetnuke Store Roadmap

DNN Support

 
Community Forum
Free Community Support

Please note - this is a Community Forum and is intended mainly as a community resource rather than an official method of contacting support but responses will be given whenever possible. For Urgent Support, refer to our Priority Support Page.

HomeHome Product Genera... Product Genera...Enhancement Req...Enhancement Req...Extended price on Checkout page?Extended price on Checkout page?
Previous
 
Next
New Post
6/12/2010 7: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 5: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!


David H. Smith
DotNetNuke Consulting, DotNetNuke Store and DNN Ecommerce
 
New Post
9/3/2010 7: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 Genera... Product Genera...Enhancement Req...Enhancement Req...Extended price on Checkout page?Extended price on Checkout page?