Search found 7 matches

by anglicool
Thu Aug 27, 2009 10:11 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: AccountDataDictionary
Replies: 6
Views: 4054

Re: AccountDataDictionary

Getting an error:

GetAccountData(string)' has some invalid arguments
by anglicool
Tue Aug 25, 2009 9:06 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: AccountDataDictionary
Replies: 6
Views: 4054

Re: AccountDataDictionary

what am I missing? I know I am still very new to C# and ASP.NET protected PaymentCollection payInfo(int orderId) { Order order = OrderDataSource.Load(orderId); PaymentCollection payments = order.Payments; foreach (Payment payment in payments) { AccountDataDictionary accDict = new AccountDataDictiona...
by anglicool
Mon Aug 24, 2009 5:35 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: AccountDataDictionary
Replies: 6
Views: 4054

AccountDataDictionary

so i have: protected PaymentCollection getPaymentInfo(int orderId) { Order order = OrderDataSource.Load(orderId); return order.Payments; } which shows me the credit card holders info for each order. I need it to go one more step, how do I apply AccountDataDictionry to the above code?
by anglicool
Fri Aug 07, 2009 2:54 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Print Credit Card Number with Invoice
Replies: 4
Views: 3877

Re: Print Credit Card Number with Invoice

When you're working with multiple departments that have been doing things a certain way for ages it is infinitely easier to change the ecommerce solution than it is to change the system. I believe Yahoo Merchant solution is PCI Compliant and they offer this feature in their printed invoices. It is t...
by anglicool
Thu Aug 06, 2009 8:49 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: processing credit cards offline
Replies: 9
Views: 6756

Re: processing credit cards offline

On a trial account, I have noticed the exact same issue as the original poster. I have found AC is very weak when it comes to default printed invoices. 1) It doesn't show the email address, phone numbers, customer comments, etc. on either bill to or to ship to. 2) Our accounting department runs a se...
by anglicool
Thu Aug 06, 2009 3:57 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Invoice
Replies: 0
Views: 2036

Invoice

I'm currently running the demo, does the full version invoice print the customers email address and phone number? *** Edited *** Resolved, I was too hasty in posting this question. <asp:Label ID="BillToEmail" runat="server" Text='<%#Eval("BillToEmail") %>'></asp:Label><br /> <asp:Label ID="BillToPho...
by anglicool
Thu Aug 06, 2009 3:31 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Print Credit Card Number with Invoice
Replies: 4
Views: 3877

Print Credit Card Number with Invoice

I need to print credit card information in the printed invoice, what's the best way?