我想将Fedex与用Python编写的Odoo(以前称为OpenERP)集成。以下是跟踪货件集成的代码。
def config_fedex(self, cr, uid, ids=False, context=None):
self_brw = self.browse(cr, uid, ids[0])
CONFIG_OBJ = FedexConfig(
key=self_brw.key,
password=self_brw.password,
account_number=self_brw.account_number,
meter_number=self_brw.meter_number,
use_test_server=self_brw.use_test_server
)
return CONFIG_OBJ
import os
import sys
from openerp.osv import fields, osv
sys.path.insert(0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))
import logging
from fedex.config import FedexConfig
from fedex.services.track_service import FedexTrackRequest
logging.basicConfig(level=logging.INFO)
def track_shipment(self, cr, uid, ids=False, context=None):
CONFIG_OBJ = self.config_fedex(cr, uid, ids)
track = FedexTrackRequest(CONFIG_OBJ)
track.TrackPackageIdentifier.Type = 'TRACKING_NUMBER_OR_DOORTAG'
track.TrackPackageIdentifier.Value = '798114182456'
track.send_request()
print track.response
print "== Results =="
for match in track.response.TrackDetails:
print "Tracking #:", match.TrackingNumber
print "Status:", match.StatusDescription
return True
但每次出现以下错误时都会使用此代码:
'FedexFailure:抱歉,我们无法处理您的跟踪 请求。请稍后重试,或联系客户服务部 1.800.Go.FedEx(R) 800.463.3339。 (错误代码:9075)'
我已直接在Fedex网站上查看了'798114182456',它显示了我目前的状态。
我做错了什么?还有其他方法吗?
答案 0 :(得分:1)
This可能有所帮助。您需要获得生产密钥并测试真实的跟踪号码。我今天通过电话与FedEx网络服务进行了交谈,他们给了我唯一的测试跟踪号码123456789012。在我的应用程序中,我每次都在使用它。如果我使用真实的跟踪号码与开发人员测试密钥,它可能有1%的时间。希望这会有所帮助。
另外请确保在获得生产密钥时,如果您以这种方式使用,则在配置中将use_test_server更改为True。否则您将收到验证错误。