From feca11616339ae4d643c4c1c25bd11d90cd2398e Mon Sep 17 00:00:00 2001 From: Administrator Date: Thu, 18 Dec 2025 16:45:49 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20Excel=E5=AF=BC=E5=87=BA"=E8=AF=A6?= =?UTF-8?q?=E7=BB=86=E5=9C=B0=E5=9D=80"=E6=94=B9=E4=B8=BA"=E6=94=B6?= =?UTF-8?q?=E8=B4=A7=E5=9C=B0=E5=9D=80"=EF=BC=8C=E6=98=BE=E7=A4=BA?= =?UTF-8?q?=E5=AE=8C=E6=95=B4=E6=8B=BC=E6=8E=A5=E5=9C=B0=E5=9D=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- PackagingMallShipper/Services/ExcelService.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/PackagingMallShipper/Services/ExcelService.cs b/PackagingMallShipper/Services/ExcelService.cs index 6b97c96..1879c2e 100644 --- a/PackagingMallShipper/Services/ExcelService.cs +++ b/PackagingMallShipper/Services/ExcelService.cs @@ -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;