_rspErr(2, 'Order does not exist'); return; } if ($orderDb['status'] == 1){ myself()->_rspErr(1, 'Order shipped'); return; } BcOrder::update($orderDb['order_id'], array( 'status' => 1 )); if ($orderDb['order_type'] == BcOrder::SPEC_ORDER_TYPE) { } /* // 小胡 回调的处理 if ($this->_isVirtualItem($orderDb['item_id'])){ $passCbService = new BuyPassCbService(); $passCbService->process($orderDb); } else { // 老宋 处理... $shopGoodsCbService = new BuyShopGoodsCbService(); $shopGoodsCbService->process($orderDb); } */ myself()->_rspOk(); } }