Search found 19 matches

by Diavan
Sat Apr 17, 2010 12:51 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin -> Browse Catalog -> Choose Operation -> Error
Replies: 1
Views: 1873

Admin -> Browse Catalog -> Choose Operation -> Error

Under "Admin -> Browse Catalog" (Browse.aspx) if any Category contains products count more than GridView PageSize (default=40) than the paging links will show up on top and bottom for that category. If you navigate to any page above Page '1' - then select any number of products using the checkboxes ...
by Diavan
Wed Apr 14, 2010 8:07 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Item Custom Field NOT getting saved
Replies: 2
Views: 2322

Re: Order Item Custom Field NOT getting saved

A guess would be to save unnecessary trips to the database if nothing has been changed. The OrderItem.Save() checks for isDirty(something has changed) and if so, then saves or updates. Able is pretty cool because you don't have to worry about whether you are updating an existing item or saving a ne...
by Diavan
Tue Apr 13, 2010 6:24 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Item Custom Field NOT getting saved
Replies: 2
Views: 2322

Order Item Custom Field NOT getting saved

I've been trying to save & update a few values in the Order Item Custom field. NOT WORKING Order order = OrderDataSource.Load(50); OrderItem orderItem = order.Items[0]; orderItem.CustomFields.Add("Test", "345"); orderItem.Save(); // tried item save order.Save(); // tried order save WORKING Order ord...
by Diavan
Tue Apr 13, 2010 6:15 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Failed AVS Check(112) with PayFlow Pro Test Mode
Replies: 2
Views: 2528

Re: Failed AVS Check(112) with PayFlow Pro Test Mode

Thanks Judy. For now I just created a dummy gateway for testing the successful -or- failed transactions.
by Diavan
Tue Apr 13, 2010 11:11 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Failed AVS Check(112) with PayFlow Pro Test Mode
Replies: 2
Views: 2528

Failed AVS Check(112) with PayFlow Pro Test Mode

The problem is not related to AbleCommerce - perhaps can get a solution from experienced users here! I'm trying to use my client's Merchant login info with the PayFlow Pro Test mode. I've tried many card types with different test card numbers provided by the PayFlow pro API but always getting Failed...
by Diavan
Sat Apr 10, 2010 12:26 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Coupon Showing up Inconsistently
Replies: 13
Views: 8556

Re: Order Coupon Showing up Inconsistently

Hope to see a patch soon then.
Its not a show stopper - just a little confusing for the users.
Thanks Judy.
by Diavan
Fri Apr 09, 2010 7:40 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Coupon Showing up Inconsistently
Replies: 13
Views: 8556

Re: Order Coupon Showing up Inconsistently

BTW how many warehouses are there and how many products in basket have different warehouses. System creates different shipments for different warehouses. I just removed any item that is shipped from a separate warehouse. The basket only contains items shipped from one location now. Maybe it happens...
by Diavan
Thu Apr 08, 2010 6:06 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Coupon Showing up Inconsistently
Replies: 13
Views: 8556

Re: Order Coupon Showing up Inconsistently

I have it selected as "Valid for any Product" as shown in the first snapshot.
by Diavan
Thu Apr 08, 2010 8:43 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Coupon Showing up Inconsistently
Replies: 13
Views: 8556

Re: Order Coupon Showing up Inconsistently

I understand that the coupons are connected to shipments which is what we needed - so for three shipments the order coupons should show up as many times. But that's not the case here. My concern was that why: - Coupon shows up 2 times for first shipment (12 items) - Coupon shows up 2 times for 2nd s...
by Diavan
Wed Apr 07, 2010 4:41 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Order Coupon Showing up Inconsistently
Replies: 13
Views: 8556

Order Coupon Showing up Inconsistently

I'm trying to add a very simple 10% coupon (type Order) to the orders. When applied to a cart the Coupon with fewer items it might show up as one line item (which is rare). However as the basket items increase gradually the number of coupon line items increase randomly. The Coupon total comes up cor...
by Diavan
Thu Apr 01, 2010 7:56 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Loosing Payment Account Data With A Custom Gateway
Replies: 6
Views: 4457

Re: Loosing Payment Account Data With A Custom Gateway

Aah - That did it. I changed the number of days from default 0 and it saved the Account Data successfully. Just wondering why the Account Data was getting saved with other built-in Gateways with number of days '0'. Is this account data going to be deleted after the number of days I just specified no...
by Diavan
Thu Apr 01, 2010 3:24 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Inventory Backorder Notification Customization
Replies: 8
Views: 8792

Re: Inventory Backorder Notification Customization

One thing I noticed that if a line message is added to the Basket Item when Add to Cart button is clicked from anywhere in the site "multiple" times - it would create separate basket Items, even though the product being added is the same. Instead of adding this Info to the line message on the Add To...
by Diavan
Wed Mar 31, 2010 3:29 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Loosing Payment Account Data With A Custom Gateway
Replies: 6
Views: 4457

Re: Loosing Payment Account Data With A Custom Gateway

The DoAuthorize is called when the Checkout method is called on the Basket object. CheckoutResponse checkoutResponse = Token.Instance.User.Basket.Checkout(checkoutRequest); The Payment object is already saved in to the Database by the time DoAuthorize is called. The AccountData has some values. exec...
by Diavan
Wed Mar 31, 2010 3:07 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Loosing Payment Account Data With A Custom Gateway
Replies: 6
Views: 4457

Re: Loosing Payment Account Data With A Custom Gateway

Mazhar, The Payment object within the AuthorizeTransactionRequest object is used in the gateway to read the values from. The Payment object is not saved to DB in the Gateway. Correct?? I have rechecked the Gateway code many times and this Payment object is never modified in the method DoAuthorize. T...
by Diavan
Tue Mar 30, 2010 11:13 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: CheckoutResponse.Success 'True' even with failed Transaction
Replies: 6
Views: 4575

Re: CheckoutResponse.Success 'True' even with failed Transaction

The suggested flag "HandleFailedPayments" will work for our needs.
I would, however, request this to be optional in the future releases, if possible.
by Diavan
Tue Mar 30, 2010 10:45 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: CheckoutResponse.Success 'True' even with failed Transaction
Replies: 6
Views: 4575

Re: CheckoutResponse.Success 'True' even with failed Transaction

Thanks for the reply Mazhar. I am just wondering about why this behavior is implemented by default. I am not sure if I have see any online shopping site which would have this sort of functionality, especially on Credit Card Authorization failure. I would rather show the generated Transaction Error m...
by Diavan
Mon Mar 29, 2010 4:05 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: CheckoutResponse.Success 'True' even with failed Transaction
Replies: 6
Views: 4575

CheckoutResponse.Success 'True' even with failed Transaction

I've been getting the CheckoutResponse object Success flag 'true' even if the Gateway Transaction status is '0' (TransactionStatus.Failed). I has been happening with both PayFlowPro and Custom Gateway. I found an older post on the AC forum ( http://forums.ablecommerce.com/viewtopic.php?f=42&t=8767&s...
by Diavan
Mon Mar 29, 2010 3:49 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Loosing Payment Account Data With A Custom Gateway
Replies: 6
Views: 4457

Loosing Payment Account Data With A Custom Gateway

I have a Custom Gateway that is built following the template provided on the AbleCommerce wiki http://wiki.ablecommerce.com/index.php/Integrating_A_Payment_Gateway . Its only implementing Authorize & Capture for now and is working as expected. However whenever this gateway is triggered on checkout f...
by Diavan
Wed Feb 10, 2010 5:18 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: ToolTipLabel EnableViewState Issue ...
Replies: 0
Views: 1899

ToolTipLabel EnableViewState Issue ...

I'm using ToolTipLabel controls in a repeater with EnableViewState="true" option on the ToolTipLabel and the Repeater. For some reason the ToolTipLabels disappear on partial post-backs. However If I replace the ToolTipLabel with asp.Net Label control with exact same attributes there is no problem. I...