This commit is contained in:
richboo111
2023-09-08 18:17:13 +08:00
parent 0f812893b5
commit a8cd156a33

View File

@@ -546,10 +546,10 @@ func GetWaybillByStatus(urlIndex string, msg interface{}) *model.Waybill {
case sfps2.UrlIndexOrderComplete:
retVal := msg.(sfps2.OrderComplete)
waybill = &model.Waybill{
VendorWaybillID: retVal.OrderID,
VendorWaybillID: retVal.SfOrderID,
WaybillVendorID: model.VendorIDSFPS,
VendorOrderID: retVal.OutOrderID,
CourierName: retVal.RiderName,
VendorOrderID: retVal.ShopOrderID,
CourierName: retVal.OperatorName,
VendorStatus: utils.Float64ToStr(retVal.OrderStatus),
StatusTime: utils.Timestamp2Time(int64(retVal.PushTime)),
Remark: retVal.StatusDesc,