You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Despite the product type properties appearing to be sorted correctly in their edit view, the sort is not correct when viewing them in the drilldown category view, nor when editing a product that may have this feature including.
Software Versions
DNN: 09.01.01
Hotcakes: 03.02.01
To Reproduce
Steps to reproduce the behavior:
Clean install
Add sample products
Create a multiple choice product type property that contains a list of values (e.g., the past 10 years in yyyy format)
Save the product type property into a product type and apply it to a product.
View the product in the store and it will likely look correct.
Add new product type property and even sort it in the same view.
Expected behavior
The product type properties appear in the product edit and category viewer drill down views in the saved sort order.
Actual behavior
The product type properties are only in the correct sort order when viewing them on their own edit view.
Screenshots
The text was updated successfully, but these errors were encountered:
Example queries to find and potentially update the sort manually until this is resolved.
In DNN:
SELECT*FROM {databaseOwner}[{objectQualifier}hcc_ProductProperty] ORDER BY [PropertyName];
SELECT*FROM {databaseOwner}[{objectQualifier}hcc_ProductPropertyChoice] WHERE [PropertyId] = ;
In SSMS:
SELECT*FROM [dbo].[hcc_ProductProperty] ORDER BY [PropertyName];
SELECT*FROM [dbo].[hcc_ProductPropertyChoice] WHERE [PropertyId] = ;
WillStrohl
added a commit
to WillStrohl/hotcakes-commerce-core
that referenced
this issue
May 17, 2020
Describe the bug
Despite the product type properties appearing to be sorted correctly in their edit view, the sort is not correct when viewing them in the drilldown category view, nor when editing a product that may have this feature including.
Software Versions
To Reproduce
Steps to reproduce the behavior:
Expected behavior
The product type properties appear in the product edit and category viewer drill down views in the saved sort order.
Actual behavior
The product type properties are only in the correct sort order when viewing them on their own edit view.
Screenshots
The text was updated successfully, but these errors were encountered: