Commit 629d3322 authored by liudong1993's avatar liudong1993

订单详情 + 自提

parent 84f2e737
...@@ -6709,9 +6709,16 @@ namespace Mall.Module.Product ...@@ -6709,9 +6709,16 @@ namespace Mall.Module.Product
{ {
oeList = goods_OrderExpressRepository.GetList(new RB_Goods_OrderExpress_Extend() { TenantId = tenantId, MallBaseId = mallBaseId, OrderExpressIds = string.Join(",", erlist.Select(x => x.OrderExpressId)) }); oeList = goods_OrderExpressRepository.GetList(new RB_Goods_OrderExpress_Extend() { TenantId = tenantId, MallBaseId = mallBaseId, OrderExpressIds = string.Join(",", erlist.Select(x => x.OrderExpressId)) });
foreach (var item in oeList) foreach (var item in oeList)
{
if (item.Type == 1)
{ {
item.ExpressName = logistics_ExpressRepository.GetEntity(item.ExpressId)?.Name ?? ""; item.ExpressName = logistics_ExpressRepository.GetEntity(item.ExpressId)?.Name ?? "";
} }
else
{
item.ExpressName = item.Remark;
}
}
} }
//获取返佣列表 //获取返佣列表
......
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