logo
Welcome to our new AbleCommerce forums. As a guest, you may view the information here. To post to this forum, you must have a registered account with us, either as a new user evaluating AbleCommerce or an existing user of the application. For all questions related to the older version of Gold and earlier, please go to AbleCommerce Gold forum. Please use your AbleCommerce username and password to Login. New Registrations are disabled.

Notification

Icon
Error

Options
Go to last post Go to first unread
rlopez397954  
#1 Posted : Friday, July 30, 2021 5:00:58 PM(UTC)
rlopez397954

Rank: Advanced Member

Groups: Authorized User, Registered, Developers
Joined: 11/30/2018(UTC)
Posts: 81

Thanks: 8 times
Was thanked: 1 time(s) in 1 post(s)
Working on a Dev Migration from Gold12R2 to AC9.0.4

I have come across two issues.

1. When changing currency, the new currency does not pass to the product level. It appears to populate only the top level products in the category. However, it does pass through to the products in the basket and so forth.

Issue

2.Under the orders menu. If the order is in Processing mode the font (Order is being processed) bleeds off of the button. It's to long. In Gold you used (Order Processing)

I crossed checked another production 9.0.4 site that was not migrated and there is no status called (Order is being processed)

Any feedback would be great.

Ricky

Wanna join the discussion?! Login to your AbleCommerce Forums forum account. New Registrations are disabled.

shaharyar  
#2 Posted : Monday, August 2, 2021 5:44:14 AM(UTC)
shaharyar

Rank: Advanced Member

Groups: Admin, Developers, Registered, HelpDesk, Authorized User
Joined: 10/5/2018(UTC)
Posts: 703

Thanks: 5 times
Was thanked: 113 time(s) in 112 post(s)
Issue#1:

Can you elaborate on the issue by sharing screenshots? What I am assuming that you are referring to the category pages but it is not clear.

Issue#2:

This could be because of the upgraded data from Gold. If you can confirm this a share a screenshot, then I would be able to help.
Thanks
rlopez397954  
#3 Posted : Monday, August 2, 2021 10:58:52 AM(UTC)
rlopez397954

Rank: Advanced Member

Groups: Authorized User, Registered, Developers
Joined: 11/30/2018(UTC)
Posts: 81

Thanks: 8 times
Was thanked: 1 time(s) in 1 post(s)
Here are a couple of screen shots for your reference:



Issue#1: CategoryLevel.jpg (125kb) downloaded 4 time(s). ProductLevel.jpg (95kb) downloaded 4 time(s).





Issue#2: AdminOrders.jpg (78kb) downloaded 2 time(s).


Hopefully this helps.
shaharyar  
#4 Posted : Monday, August 2, 2021 11:45:59 AM(UTC)
shaharyar

Rank: Advanced Member

Groups: Admin, Developers, Registered, HelpDesk, Authorized User
Joined: 10/5/2018(UTC)
Posts: 703

Thanks: 5 times
Was thanked: 113 time(s) in 112 post(s)
Thanks for sharing the screenshots.

Issue#1: I am able to reproduce the issue. I am registering it as a bug. Thanks for pointing this out.

Issue#2: The styles are messed up because of the lengthy name. This can be edited from Admin - Configure - Store - Order Statuses
thanks 1 user thanked shaharyar for this useful post.
rlopez397954 on 8/2/2021(UTC)
rlopez397954  
#5 Posted : Monday, August 2, 2021 12:29:02 PM(UTC)
rlopez397954

Rank: Advanced Member

Groups: Authorized User, Registered, Developers
Joined: 11/30/2018(UTC)
Posts: 81

Thanks: 8 times
Was thanked: 1 time(s) in 1 post(s)
Thank you for your help.
shaharyar  
#6 Posted : Tuesday, August 3, 2021 11:22:18 AM(UTC)
shaharyar

Rank: Advanced Member

Groups: Admin, Developers, Registered, HelpDesk, Authorized User
Joined: 10/5/2018(UTC)
Posts: 703

Thanks: 5 times
Was thanked: 113 time(s) in 112 post(s)
To fix ISSUE # 1:

1- Open file \Website\Views\Product\_ProductPrice.cshtml
2- Search for
Code:
<span class="baseprice">@Model.UserCurrencySymbol</span><span class="baseprice">@Model.PriceValue</span> <span>@Model.Unit</span>

3- Replace with
Code:
<span class="baseprice">@Model.PriceValue</span> <span>@Model.Unit</span>

4- Open file \Website\Controllers\ProductController.cs
5- Search for
Code:
priceValue = priceWithVAT.ToString("F2");

6- Replace with
Code:
priceValue = string.Format(parameters.PriceFormat, priceWithVAT.LSCurrencyFormat("ulc"));
rlopez397954  
#7 Posted : Tuesday, August 3, 2021 5:49:43 PM(UTC)
rlopez397954

Rank: Advanced Member

Groups: Authorized User, Registered, Developers
Joined: 11/30/2018(UTC)
Posts: 81

Thanks: 8 times
Was thanked: 1 time(s) in 1 post(s)
Thank you for the quick patch!
Users browsing this topic
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.