From 6edece8faa2b1b57882e1e6bd853d97d85d7717e Mon Sep 17 00:00:00 2001 From: ljw Date: Sat, 30 Nov 2024 10:15:00 +0800 Subject: [PATCH] =?UTF-8?q?fix:=201.=E5=87=BA=E5=8F=A3=E5=8F=91=E7=A5=A8?= =?UTF-8?q?=E4=BF=9D=E5=AD=98=E7=94=9F=E6=88=90=E5=A4=87=E6=B3=A8=E8=B0=83?= =?UTF-8?q?=E6=95=B4=E4=B8=80=E4=B8=8B=E6=A0=BC=E5=BC=8F=EF=BC=8C=E6=8C=89?= =?UTF-8?q?=E7=85=A7=E8=A6=81=E6=B1=82=E6=8D=A2=E8=A1=8C=EF=BC=8C=E9=87=91?= =?UTF-8?q?=E9=A2=9D=E4=B8=8D=E8=A6=81=E6=98=BE=E7=A4=BA=E5=B0=BE=E9=9B=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/yem/wm/es/exportinvoice/op/ExportInvoiceSaveOP.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/yem/wm/es/exportinvoice/op/ExportInvoiceSaveOP.java b/src/main/java/com/yem/wm/es/exportinvoice/op/ExportInvoiceSaveOP.java index 5427ec04..02defc28 100644 --- a/src/main/java/com/yem/wm/es/exportinvoice/op/ExportInvoiceSaveOP.java +++ b/src/main/java/com/yem/wm/es/exportinvoice/op/ExportInvoiceSaveOP.java @@ -94,9 +94,9 @@ public class ExportInvoiceSaveOP extends AbstractOperationServicePlugIn { yemDestports.append(string);//目的港 } } - dataEntitie.set("yem_remark", yemTradeway + " 成交总额:" + yemSettlement + totalAmount + " 汇率:" + yemExrate + " 海运费:" - + yemseatransfeecurr + yemSeatransfee + " 保险费:" + yeminsurefeecurr + yemInsurefee + " 提单号:" + yemLadbillnum + " 合同号:" - + queryString + " 起运港:" + yemShipports + " 目的港:" + yemDestports); + dataEntitie.set("yem_remark", yemTradeway + " 成交总额:" + yemSettlement + totalAmount.stripTrailingZeros() + " 汇率:" + yemExrate.stripTrailingZeros() + + "\r\n 海运费:"+ yemseatransfeecurr + yemSeatransfee.stripTrailingZeros() + " 保险费:" + yeminsurefeecurr + yemInsurefee.stripTrailingZeros() + + "\r\n 提单号:"+ yemLadbillnum + "\r\n 合同号:"+ queryString + "\r\n 起运港:" + yemShipports + "\r\n 目的港:" + yemDestports); } } }