解析Bug #226
Fedex tracking function doesn't work in OTS
Description
Task Details
- The difference tracking(such as 770066207282) time between OTS and Fedex Website (https://www.fedex.com/fedextrack/?trknbr=770066207282&trkqual=2459852000~770066207282~FX)
Fedex API 支持 :apacwebservices@fedex.com
Fedex 客服 :fdxhelpdesk@fedex.com
- Claim from Andy
- Report and Solution
Others
Related issues
Updated by Xihua Fan about 3 years ago
- Related to 解析Bug #181: DHL tracking function doesn't work in OTS added
Updated by Zhongbao Ye about 3 years ago
- Status changed from 进行中 to 已关闭
- % Done changed from 0 to 100
Solution:
Because getMonth in js returns an integer value from 0 to 11, you need to add one month to the display of the month.
Note: A forced refresh of the page is required. Ctrl + F5
order/ui/desktop/js/order.js
old: return{ymd:a.getFullYear()+"/"+a.getMonth()+"/"+a.getDate()
new: return{ymd:a.getFullYear()+"/"+(a.getMonth()+1)+"/"+a.getDate()