mirror of
http://git.coreshop.cn/jianweie/coreshoppro.git
synced 2025-12-06 18:43:26 +08:00
【修复】修复订单导出excel,未显示省市县,只显示详细地址的问题。
This commit is contained in:
@@ -939,7 +939,7 @@ namespace CoreCms.Net.Web.Admin.Controllers
|
||||
|
||||
items.Add(new CellValueItem() { name = "收货人姓名", width = 12 });
|
||||
items.Add(new CellValueItem() { name = "收货电话", width = 12 });
|
||||
items.Add(new CellValueItem() { name = "收货详细地址", width = 40 });
|
||||
items.Add(new CellValueItem() { name = "收货详细地址", width = 80 });
|
||||
|
||||
|
||||
items.Add(new CellValueItem() { name = "配送方式名称", width = 20 });
|
||||
@@ -1030,7 +1030,7 @@ namespace CoreCms.Net.Web.Admin.Controllers
|
||||
|
||||
rowTemp.CreateCell(16).SetCellValue(order.shipName);
|
||||
rowTemp.CreateCell(17).SetCellValue(order.shipMobile);
|
||||
rowTemp.CreateCell(18).SetCellValue(order.shipAddress);
|
||||
rowTemp.CreateCell(18).SetCellValue(order.shipAreaName);
|
||||
|
||||
rowTemp.CreateCell(19).SetCellValue(!string.IsNullOrEmpty(order.logisticsName) ? order.logisticsName : "自提配送");
|
||||
rowTemp.CreateCell(20).SetCellValue(order.costFreight.ToString());
|
||||
@@ -1344,7 +1344,7 @@ namespace CoreCms.Net.Web.Admin.Controllers
|
||||
|
||||
items.Add(new CellValueItem() { name = "收货人姓名", width = 12 });
|
||||
items.Add(new CellValueItem() { name = "收货电话", width = 12 });
|
||||
items.Add(new CellValueItem() { name = "收货详细地址", width = 40 });
|
||||
items.Add(new CellValueItem() { name = "收货详细地址", width = 80 });
|
||||
|
||||
|
||||
items.Add(new CellValueItem() { name = "配送方式名称", width = 20 });
|
||||
@@ -1435,7 +1435,7 @@ namespace CoreCms.Net.Web.Admin.Controllers
|
||||
|
||||
rowTemp.CreateCell(16).SetCellValue(order.shipName);
|
||||
rowTemp.CreateCell(17).SetCellValue(order.shipMobile);
|
||||
rowTemp.CreateCell(18).SetCellValue(order.shipAddress);
|
||||
rowTemp.CreateCell(18).SetCellValue(order.shipAreaName);
|
||||
|
||||
rowTemp.CreateCell(19).SetCellValue(!string.IsNullOrEmpty(order.logisticsName) ? order.logisticsName : "自提配送");
|
||||
rowTemp.CreateCell(20).SetCellValue(order.costFreight.ToString());
|
||||
|
||||
Reference in New Issue
Block a user