I get an error as soon as I upgraded to the new version.
The call is ambiguous between the following methods or properties: 'CommerceBuilder.Products.ProductCalculator.LoadForProduct(int, short, string, System.Collections.Generic.List<int>)' and 'CommerceBuilder.Products.ProductCalculator.LoadForProduct(int, short, string, string)'
not sure what the problem is
error after upgrading to 7.03 from 7.02
- jmestep
- AbleCommerce Angel
- Posts: 8164
- Joined: Sun Feb 29, 2004 8:04 pm
- Location: Dayton, OH
- Contact:
Re: error after upgrading to 7.03 from 7.02
You have some custom code that needs to be upgraded. For example, one place would be in the ConLib/Utility/ProductPrice.ascx.cs
ProductCalculator pcalc = ProductCalculator.LoadForProduct(_Product.ProductId, 1, _OptionList, AlwaysConvert.ToList(",", _SelectedKitProducts), Token.Instance.UserId, true);
ProductCalculator pcalc = ProductCalculator.LoadForProduct(_Product.ProductId, 1, _OptionList, AlwaysConvert.ToList(",", _SelectedKitProducts), Token.Instance.UserId, true);
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx
Re: error after upgrading to 7.03 from 7.02
It worked. thanks jmestep