I am trying to setup CS-Cart and ShipRush for FedEx with custom statuses. Here is what I did following the instructions...
I add the following to ShippingZCscart.php...
I then modified the following ShippingZSettings.php....PHP Code:if(CSCART_RETRIEVE_ORDER_STATUS_4_FULFILL_EB==1)
{
if($order_status_filter=="")
{
$order_status_filter.=" ?:orders.status='G' ";
}
else
{
$order_status_filter.=" OR ?:orders.status='G' ";
}
}
My new status is not showing up. Any clue on what I did wrong?PHP Code:############################################### Only for Cscart with commerce Users ############################################
#
# To retrieve statuses in addition to those here, see the section below "Adding New Order Statuses"
#
define("CSCART_RETRIEVE_ORDER_STATUS_1_OPEN",1);
define("CSCART_RETRIEVE_ORDER_STATUS_2_PROCESSED",1);
define("CSCART_RETRIEVE_ORDER_STATUS_3_COMPLETE",1);
define("CSCART_RETRIEVE_ORDER_STATUS_4_FULFILL_EB",1);
# Short Explanation:
# If this is set to 1, then, when shipped, orders of
# STATUS 1 (Open), STATUS 2 (Processed) will be
# set to and STATUS 3 (Complete)
define("CSCART_SHIPPED_STATUS_SET_TO_STATUS_4_COMPLETE",1);//Dafaults 1
#Set following parameter to 1 for cscart professional version
define("CSCART_PROFESSIONAL",0);//Dafaults 0
Thanks for any help!
Chris Edwards





Bookmarks