nopmstr2014 wrote:Thanks for you reply
Would you able to provide default ConditionProperty for these ConditionType
Default
Manufacturer
Category
Product
Customer
We are trying to push text into ribbon table using stored procedures
Thanks
Manufacturer:
public enum ManufacturerConditionProperty
{
Default = 0,
Name = 1
}
Category:
public enum CategoryConditionProperty
{
Default = 0,
Name = 1
}
Product:
public enum ProductConditionProperty
{
Default = 0,
Category = 1,
Manufacturer = 2,
ProductAgeHours = 3,
DiscountAmmount = 4,
DiscountPercentage = 5,
PriceDifferenceAmmount = 6,
PriceDifferencePercentage = 7,
MinPrice = 8,
Quantity = 9,
PreOrder = 10,
FreeShipping = 11,
HasSpecialPrice = 12
}
Customer:
public enum CustomerConditionProperty
{
Default = 0,
UserName = 1,
Email = 2,
IsLoggedIn = 3,
IsInRole = 4,
IsNotInRole = 5
}
I would suggest you to insert 1 test ribbon with a condition to see what are the necessary table records that needs to be inserted .
Hope this helps!