mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:03:27 +08:00
【优化】调整运费计算逻辑为异步处理。
This commit is contained in:
@@ -583,7 +583,7 @@ namespace CoreCms.Net.Services
|
||||
order.shipName = userShipInfo.name;
|
||||
order.shipMobile = userShipInfo.mobile;
|
||||
|
||||
var ship = _shipServices.GetShip(userShipInfo.areaId);
|
||||
var ship = await _shipServices.GetShip(userShipInfo.areaId);
|
||||
if (ship != null)
|
||||
{
|
||||
order.logisticsId = ship.id;
|
||||
|
||||
Reference in New Issue
Block a user