From a29908715c18fdf26f3200da69995e3580b1df8d Mon Sep 17 00:00:00 2001 From: zhangjun Date: Wed, 10 Jun 2020 19:24:38 +0800 Subject: [PATCH] =?UTF-8?q?APP=E5=8F=98=E6=9B=B4=E8=AF=B4=E6=98=8E?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3=E6=95=B0=E6=8D=AE=E8=A1=A5=E5=85=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/ApplyChangesServiceServiceImpl.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src_app_fresh/apx/com/amarsoft/als/user/change/initiate/service/impl/ApplyChangesServiceServiceImpl.java b/src_app_fresh/apx/com/amarsoft/als/user/change/initiate/service/impl/ApplyChangesServiceServiceImpl.java index f077ab9cc..3166d10f4 100644 --- a/src_app_fresh/apx/com/amarsoft/als/user/change/initiate/service/impl/ApplyChangesServiceServiceImpl.java +++ b/src_app_fresh/apx/com/amarsoft/als/user/change/initiate/service/impl/ApplyChangesServiceServiceImpl.java @@ -20,9 +20,7 @@ import com.base.util.ReturnMapUtil; import com.tenwa.comm.util.jboutil.DataOperatorUtil; import apx.com.amarsoft.als.user.change.initiate.service.ApplyChangesService; -import jbo.app.tenwa.customer.CUSTOMER_ACCOUNT_TEMP; import jbo.com.tenwa.lease.comm.LB_CHANGE_INFO_TEMP; -import jbo.com.tenwa.lease.comm.LB_UNION_LESSEE_TEMP; //业务变更说明 public class ApplyChangesServiceServiceImpl implements ApplyChangesService { private Map fieldMap; @@ -32,15 +30,17 @@ public class ApplyChangesServiceServiceImpl implements ApplyChangesService { JBOTransaction tx, Transaction sqlca, ReturnMapUtil ReturnMapUtil) throws Exception { Map testMap = (Map) MultipartDataUtil .readRequestParam(request, "UTF-8"); + fieldMap = (Map) testMap.get("fieldMap"); Map body = new HashMap(); String flowUnid = fieldMap.get("flowunid") == null ? "" : fieldMap.get( "flowunid").toString(); + String sql = "select PROJECT_ID,CHANGE_DATE,CHANGE_MEMO,FLOWUNID from LB_CHANGE_INFO_TEMP where FLOWUNID='"+flowUnid+"' "; List> lgutList = DataOperatorUtil.getDataBySql(sql); - if(lgutList.size()>0){ for (Map map : lgutList) { + body.put("PROJECT_ID",map.get("PROJECT_ID")); body.put("CHANGE_DATE",map.get("CHANGE_DATE")); body.put("CHANGE_MEMO",map.get("CHANGE_MEMO")); body.put("FLOWUNID",map.get("FLOWUNID"));