Search found 175 matches

by niall08
Mon Jun 28, 2010 6:13 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Payment Method - Credit Notes
Replies: 1
Views: 1781

Payment Method - Credit Notes

I have AC 7.0.1 and was wondering how I could implement a Credit Note payment for customers in credit on the system.

Any ideas??
by niall08
Fri Oct 30, 2009 12:33 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Server Disk Failure
Replies: 3
Views: 2395

Re: Server Disk Failure

Ah - security > database..
by niall08
Fri Oct 30, 2009 12:28 pm
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Server Disk Failure
Replies: 3
Views: 2395

Re: Server Disk Failure

OK - sorted it out - I replaced the contents of database.config with a plain-text connection string, and replaced the contents of encryption.config with <encryption />

Everything is back to normal - except that the database.config file isn't encrypted any more..

Any ideas??
by niall08
Fri Oct 30, 2009 9:31 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Server Disk Failure
Replies: 3
Views: 2395

Server Disk Failure

Help!

The server disk has become corrupted, and swapping in a new disk has produced an error with encryption.config

What do I need to do?

Where can I get unencrypted versions of database.config and encryption.config (if they are needed)

On 7.0.1 here - the IP and domain name haven't changed
by niall08
Tue Aug 04, 2009 6:36 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Print Invoice - tax on coupons etc
Replies: 4
Views: 2655

Re: Print Invoice - tax on coupons etc

None of the dev team have any idea on this one?
by niall08
Mon Aug 03, 2009 8:37 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Print Invoice - tax on coupons etc
Replies: 4
Views: 2655

Re: Print Invoice - tax on coupons etc

Anyone have any ideas??
by niall08
Mon Aug 03, 2009 4:05 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Print Invoice - tax on coupons etc
Replies: 4
Views: 2655

Print Invoice - tax on coupons etc

Is there any way of hiding the tax field in the printed invoice when the item is a coupon??

v.7.0.1
by niall08
Thu Jul 30, 2009 8:15 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: PlaceOrder2.aspx - set default country in dropdownlist
Replies: 6
Views: 5908

Re: PlaceOrder2.aspx - set default country in dropdownlist

Thanks Mazhar - I'd seen a reference to "DefaultWarehouse" as a means of setting the default CountryCode somewhere in the code, but I couldn't remember where.
by niall08
Thu Jul 30, 2009 7:35 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

I won't labour the point as it's working now, which is a big relief, but it wasn't updating the Basket object from the code that was unchanged from the out-of-the-box version. There's something deeper here as the code worked for every other instance, but failed to update the basket object only when ...
by niall08
Thu Jul 30, 2009 7:32 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: PlaceOrder2.aspx - set default country in dropdownlist
Replies: 6
Views: 5908

Re: PlaceOrder2.aspx - set default country in dropdownlist

Any suggestions about how to do it in 7.0.1? e.g. in the Page_Load if (!Page.IsPostBack) { // INITIALIZE THE BILLING ADDRESS if (_Basket.User != null && !_Basket.User.IsAnonymous) { BindBillingAddress(); BindShippingAddress(); } else { CustomerLookupButton.Visible = true; BillToCountryCode.SelectedV...
by niall08
Thu Jul 30, 2009 7:16 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Sorry Sohaib - I missed that before.

That has it working - explicitly assigning the user.Basket to the _Basket object - very straightforward, but I wouldn't have thought of it.

Thanks!!

So.. was it a bug?
by niall08
Thu Jul 30, 2009 6:54 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Hi Sohaib

The problem isn't in the "else" clause - the problem is triggered by the call to recalculate the basket after it's been transferred
by niall08
Thu Jul 30, 2009 6:16 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: PlaceOrder2.aspx - set default country in dropdownlist
Replies: 6
Views: 5908

Re: PlaceOrder2.aspx - set default country in dropdownlist

Any ideas?

Can/should it be set to the default warehouse location?
by niall08
Thu Jul 30, 2009 6:14 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Sohaib.. In an effort to try and isolate the problem, I used your code for the Transfer method and created my own class, calling my own Transfer method rather than the one packaged in your Basket class - the same behaviour occurred. So the basket is transferred at this point in your code. Commenting...
by niall08
Thu Jul 30, 2009 1:19 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Thanks Sohaib. That's the code from the "Transfer" method that takes three parameters - is there another method with two parameters that has different functionality (i.e. no "transferEmptyBasket" boolean parameter)? Using the code that you provided, I've been able to output: sourceID, basketID, sour...
by niall08
Wed Jul 29, 2009 9:04 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: PlaceOrder2.aspx - set default country in dropdownlist
Replies: 6
Views: 5908

PlaceOrder2.aspx - set default country in dropdownlist

How do you set the default country in the dropdown list when placing an order in the admin interface, PlaceOrder2.aspx
by niall08
Wed Jul 29, 2009 8:51 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Maybe someone on the Dev team can tell me what happens during the basket transfer?

I need help here
by niall08
Wed Jul 29, 2009 8:04 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Does anyone have any ideas?

I'm at a complete loss here.. The fact that the problem occurs with the basket transfer means theres not much I can do about the problem..

Dev team?
by niall08
Wed Jul 29, 2009 7:40 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Hi Judy,
Thanks for your interest in this.

I had my hopes raised and dashed there..

I've added a maximum figure and tested the functionality, and the same happened. I also changed from percentage to fixed amount, and no dice.
by niall08
Wed Jul 29, 2009 1:12 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Mazhar - I've substituted my customised PlaceOrder2.aspx file (and code-behind) with the ones that you supplied - and the bug still occurs. The problem occurs at the basket.transfer stage - nothing is being created against the "found" user - which is outside any customisation that I had done. This i...
by niall08
Tue Jul 28, 2009 7:59 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

At the least could you send me the original, out-of-the-box codebehind for PlaceOrder2.aspx so I can test the functionality with my 7.0.1 setup?

It would allow me the rule out any customisation..
by niall08
Tue Jul 28, 2009 7:12 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

I can't see any customisation that could have caused the problem Mazhar - for line 501: Basket.Transfer(_Basket.UserId, user.UserId); Both the current basketId and the retrieved UserId are being passed correctly - but no basket is being assigned to that user in the database - so when we redirect to ...
by niall08
Tue Jul 28, 2009 5:28 am
Forum: AbleCommerce 7.0 Asp.Net Shopping Cart
Topic: Admin placing an order - error with Volume Discounts
Replies: 24
Views: 23014

Re: Admin placing an order - error with Volume Discounts

Hi Mazhar - thanks for looking at this.. The only customisation around the button click that I have is: protected void CustomerLookupButton_Click(object sender, EventArgs e) { int userId = UserDataSource.GetUserIdByEmail(CustomerEmail.Text); if (userId > 0) { //_Basket.UserId = userId; User user = U...