From 23f3fc03732e10367b0246502c76da0c2254a312 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=8B=8F=E5=B0=B9=E5=B2=9A?= <770236076@qq.com> Date: Mon, 12 Apr 2021 14:55:48 +0800 Subject: [PATCH] aa --- business/jxutils/jxutils.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/business/jxutils/jxutils.go b/business/jxutils/jxutils.go index 63d0dcbd9..febc01951 100644 --- a/business/jxutils/jxutils.go +++ b/business/jxutils/jxutils.go @@ -217,8 +217,8 @@ func GetPossibleVendorIDFromAfsOrderID(afsOrderID string) (vendorID int) { } func ComposeUniversalOrderID(orderID string, vendorID int) string { - // return fmt.Sprintf("%s|%d", orderID, vendorID) - return orderID // 当前用长度就能区分,先不加上vendorID + return fmt.Sprintf("%s|%d", orderID, vendorID) + // return orderID // 当前用长度就能区分,先不加上vendorID } func GetUniversalOrderIDFromWaybill(bill *model.Waybill) string {