From 46b20853ef3a472db82bdc89776094857f40eb8c Mon Sep 17 00:00:00 2001 From: suyl <770236076@qq.com> Date: Tue, 11 May 2021 17:15:42 +0800 Subject: [PATCH] aa --- business/jxutils/jxutils.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/business/jxutils/jxutils.go b/business/jxutils/jxutils.go index 08e70c55b..d1c4a8586 100644 --- a/business/jxutils/jxutils.go +++ b/business/jxutils/jxutils.go @@ -137,6 +137,7 @@ func GetPossibleVendorIDFromVendorOrderID(vendorOrderID string) (vendorID int) { vendorID = model.VendorIDUnknown if vendorOrderIDInt64 := utils.Str2Int64WithDefault(vendorOrderID, 0); vendorOrderIDInt64 > 0 { orderIDLen := len(vendorOrderID) + globals.SugarLogger.Debugf("GetPossibleVendorIDFromVendorOrderID, orderIDLen: %v", orderIDLen) // 5287873015048 13 wsc // 15380342248732 14 old ebai order // 800402581000221 15,16 jd order @@ -167,6 +168,8 @@ func GetPossibleVendorIDFromVendorOrderID(vendorOrderID string) (vendorID int) { } else if orderIDLen == len("18100216009800000001") { vendorID = model.VendorIDJDShop } + } else { + globals.SugarLogger.Debugf("GetPossibleVendorIDFromVendorOrderID, 2: %v", vendorOrderID) } return vendorID }