From e3fa18f4e51a0ee41e5ba5c07dd2aa8bfa2e937a Mon Sep 17 00:00:00 2001 From: ljw Date: Fri, 20 Sep 2024 15:56:37 +0800 Subject: [PATCH] =?UTF-8?q?fix:=E4=BF=9D=E5=AD=98=E6=97=B6=EF=BC=8C?= =?UTF-8?q?=E6=8C=89=E7=85=A7=20=20=E5=AE=A2=E6=88=B7=E6=89=80=E5=9C=A8?= =?UTF-8?q?=E5=9B=BD=20+=E4=B9=B0=E6=96=B9=E8=8B=B1=E6=96=87=E5=90=8D?= =?UTF-8?q?=E7=A7=B0+=E7=B1=BB=E5=9E=8B+=E4=BF=A1=E4=BF=9D=E9=99=90?= =?UTF-8?q?=E9=A2=9D=E7=94=B3=E8=AF=B7=20=20=EF=BC=884=E4=B8=AA=E5=AD=97?= =?UTF-8?q?=E6=AE=B5=EF=BC=8C=E4=BB=A5=E7=A9=BA=E6=A0=BC=E9=97=B4=E9=9A=94?= =?UTF-8?q?=EF=BC=8C=E6=8B=BC=E6=8E=A5=E7=94=9F=E6=88=90=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/yem/wm/im/csrCreditLine/op/CsrCreditLineSaveOp.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/yem/wm/im/csrCreditLine/op/CsrCreditLineSaveOp.java b/src/main/java/com/yem/wm/im/csrCreditLine/op/CsrCreditLineSaveOp.java index 414b9915..fa00872c 100644 --- a/src/main/java/com/yem/wm/im/csrCreditLine/op/CsrCreditLineSaveOp.java +++ b/src/main/java/com/yem/wm/im/csrCreditLine/op/CsrCreditLineSaveOp.java @@ -44,7 +44,7 @@ public class CsrCreditLineSaveOp extends AbstractOperationServicePlugIn { */ private void genCreditTitle(DynamicObject dataEntity) { // 客户所在国 - String customercountry = dataEntity.getString("yem_customercountry"); + DynamicObject customercountry = dataEntity.getDynamicObject("yem_arrivalofgoods"); // 买方英文名称 DynamicObject customer = dataEntity.getDynamicObject("yem_customer"); if (customer == null) { @@ -56,7 +56,7 @@ public class CsrCreditLineSaveOp extends AbstractOperationServicePlugIn { // 类型 String type = dataEntity.getString("yem_type"); if (YEM.isNotEmpty(customercountry) && YEM.isNotEmpty(customerName) && YEM.isNotEmpty(type)) { - dataEntity.set("yem_credittitle", customercountry + " " + customerName + " " + extracted(dataEntity, "yem_type") + " " + "信保限额申请"); + dataEntity.set("yem_credittitle", customercountry.getString("name") + " " + customerName + " " + extracted(dataEntity, "yem_type") + " " + "信保限额申请"); } else { dataEntity.set("yem_credittitle", null); }