From e24c9f3342376d8277c637cfb8433345dd56dd6f Mon Sep 17 00:00:00 2001 From: liuzhao Date: Sat, 11 Aug 2018 09:56:02 +0800 Subject: [PATCH] =?UTF-8?q?=E7=89=8C=E7=85=A7=E8=A1=A8=E4=B8=B4=E6=97=B6?= =?UTF-8?q?=E5=88=B0=E6=AD=A3=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../com/tenwa/apzl/comm/CopyLbCarLicensePlateTempToForm.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateTempToForm.java b/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateTempToForm.java index 872e0ac4d..8de7fc550 100644 --- a/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateTempToForm.java +++ b/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateTempToForm.java @@ -4,6 +4,7 @@ import java.util.HashMap; import java.util.Map; import jbo.com.tenwa.lease.comm.LB_CAR_LICENSE_PLATE_INFO; +import jbo.com.tenwa.lease.comm.LB_CAR_LICENSE_PLATE_INFO_TEMP; import com.amarsoft.awe.util.Transaction; import com.tenwa.comm.util.jboutil.DataOperatorUtil; @@ -19,7 +20,7 @@ public class CopyLbCarLicensePlateTempToForm extends BaseBussiness{ fromCondtion.put("FLOWUNID", flowunid); Map toCondtion = new HashMap(); toCondtion.put("contract_id", contract_id); - DataOperatorUtil.copySingleJBO(LB_CAR_LICENSE_PLATE_INFO.CLASS_NAME, fromCondtion, LB_CAR_LICENSE_PLATE_INFO.CLASS_NAME, toCondtion, null, Sqlca); + DataOperatorUtil.copySingleJBO(LB_CAR_LICENSE_PLATE_INFO_TEMP.CLASS_NAME, fromCondtion, LB_CAR_LICENSE_PLATE_INFO.CLASS_NAME, toCondtion, null, Sqlca); return "true"; } }