我是interspire購物車的首選。我需要做的是在訂單發貨後將追蹤號碼保存在系統中。 這裏是我的代碼如何更新interspire購物車中的追蹤號碼
$orderID = (int)$_GET['order'];
$status = (int)$_GET['code'];
$command = (string) $_GET['command'];
$comments =(string) $_GET['comments'];
$tracking =(string) $_GET['tracking'];
$carrierData =(string) $_GET['carrier'];
$update = array(
'ordstatus' => $status,
'command'=>$command,
'comments'=>$comments,
'tracking'=>$tracking,
'carrierData'=>$carrierData
);
if (!$GLOBALS['ISC_CLASS_DB']->UpdateQuery('orders', $update, 'orderid = ' . $orderID)) {
$this->outputError(70, "Order $orderID no longer exists.");
}
因此,它更新訂單狀態,但我需要更新從THRID第三方軟件shipworks返回的查詢號碼。
任何幫助將大大appricated。
首先接受您以前的問題的答案請。沒有人會幫助你,如果你不獎勵那些經歷過幫助你的麻煩的人。 – 2012-04-13 08:38:30