This commit is contained in:
苏尹岚
2021-04-13 11:35:16 +08:00
parent 9f98a6bda0
commit 8f75cbe3e6

View File

@@ -218,8 +218,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 orderID + utils.Int64ToStr(time.Now().Unix())
return orderID // 当前用长度就能区分先不加上vendorID
// return orderID + utils.Int64ToStr(time.Now().Unix())
}
func GetUniversalOrderIDFromWaybill(bill *model.Waybill) string {