Commit 5a066757 authored by 黄奎's avatar 黄奎

订单详情页面修改

parent a4bb8dc6
......@@ -12495,7 +12495,7 @@ namespace Mall.Module.Product
}
model.DetailList = dlist;
//地址
model.DistrictAddress = (destinationRepository.GetEntity(model.Province)?.Name ?? "") + " " + (destinationRepository.GetEntity(model.City)?.Name ?? "") + " " + (destinationRepository.GetEntity(model.District)?.Name ?? "");
model.DistrictAddress = (destinationRepository.GetEntity((model?.Province??0))?.Name ?? "") + " " + (destinationRepository.GetEntity((model?.City??0))?.Name ?? "") + " " + (destinationRepository.GetEntity((model?.District??0))?.Name ?? "");
//物流
var erlist = goods_ExpressRelevanceRepository.GetList(new RB_Goods_ExpressRelevance_Extend() { TenantId = tenantId, MallBaseId = mallBaseId, OrderId = orderId });
List<RB_Goods_OrderExpress_Extend> oeList = new List<RB_Goods_OrderExpress_Extend>();
......@@ -12734,7 +12734,7 @@ namespace Mall.Module.Product
x.GoodsName,
x.CoverImage,
x.CoverImagePath,
SpecificationList = JsonConvert.DeserializeObject<List<string>>(x.Specification),
SpecificationList = JsonConvert.DeserializeObject<List<string>>((x?.Specification??"")),
x.Unit_Price,
x.Number,
x.Original_Price,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment