fix: Excel导出"详细地址"改为"收货地址",显示完整拼接地址

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
Administrator
2025-12-18 16:45:49 +08:00
parent 84b8eae2d9
commit feca116163

View File

@@ -30,7 +30,7 @@ namespace PackagingMallShipper.Services
var headers = new[]
{
"订单号", "下单时间", "收件人", "联系电话",
"省份", "城市", "区县", "详细地址",
"省份", "城市", "区县", "收货地址",
"商品信息", "数量", "快递公司", "快递单号"
};
@@ -55,7 +55,7 @@ namespace PackagingMallShipper.Services
worksheet.Cell(row, 5).Value = order.LogisticsProvince;
worksheet.Cell(row, 6).Value = order.LogisticsCity;
worksheet.Cell(row, 7).Value = order.LogisticsDistrict;
worksheet.Cell(row, 8).Value = order.LogisticsAddress;
worksheet.Cell(row, 8).Value = order.FullAddress;
worksheet.Cell(row, 9).Value = order.GoodsInfo;
worksheet.Cell(row, 10).Value = order.TotalQuantity;
worksheet.Cell(row, 11).Value = "";
@@ -65,7 +65,7 @@ namespace PackagingMallShipper.Services
worksheet.Column(1).Width = 20;
worksheet.Column(2).Width = 18;
worksheet.Column(4).Width = 15;
worksheet.Column(8).Width = 40;
worksheet.Column(8).Width = 50;
worksheet.Column(9).Width = 30;
worksheet.Column(12).Width = 20;