an ASP.NET Open Source CMS & eCommerce platform
Search:
Last Post 5/18/2010 8:24:26 AM By lukezy. 3 replies.
5/17/2010 11:06:18 AM
bansal_db
Posts: 181
Joined: 4/13/2009
add new order status
Hey Luke,
 
I need to add a new order status to the list...
 
For orders that are on back order....how would i do that?
 
Thanks
 
-D
5/17/2010 3:19:23 PM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: add new order status
You can add one to DSC_Order_Status_lkp. Make sure OrderStatusId is greater than 100.
DotShoppingCart Staff
5/18/2010 6:23:12 AM
bansal_db
Posts: 181
Joined: 4/13/2009
Re: add new order status
i did this
 
insert into DSC_Order_Status_lkp values ('200','Back Order')
 
status is still not showing up in options
5/18/2010 8:24:26 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
Re: add new order status
In web\Admin\Order\Controls\OrderStatusEdit.ascx.cs change the method fvwOrderStatus_DataBound to include the custom order status you added above.
DotShoppingCart Staff