From 6c7fb8a2e2a84afe25173b07bc19069018773746 Mon Sep 17 00:00:00 2001 From: 58261 <58261@DESKTOP-AAAC71Q> Date: Thu, 11 Oct 2018 14:13:26 +0800 Subject: [PATCH] =?UTF-8?q?=E6=8A=B5=E6=8A=BC=E6=A1=A3=E6=A1=88=E7=9A=84?= =?UTF-8?q?=E8=80=83=E8=A1=A8=E7=B1=BB?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateToTemp.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateToTemp.java b/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateToTemp.java index 6d3454024..6d36807c8 100644 --- a/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateToTemp.java +++ b/src_tenwa/com/tenwa/apzl/comm/CopyLbCarLicensePlateToTemp.java @@ -5,6 +5,7 @@ import java.util.Map; import jbo.app.LB_EQUIPMENT_CAR; 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.are.jbo.BizObject; import com.amarsoft.are.jbo.BizObjectManager; @@ -33,7 +34,7 @@ public class CopyLbCarLicensePlateToTemp extends BaseBussiness{ fromCondtion.put("contract_id", contract_id); Map otherProperty = new HashMap(); otherProperty.put("FLOWUNID", flowunid); - DataOperatorUtil.copySingleJBO(LB_CAR_LICENSE_PLATE_INFO.CLASS_NAME, fromCondtion, LB_CAR_LICENSE_PLATE_INFO.CLASS_NAME, null, otherProperty, Sqlca); + DataOperatorUtil.copySingleJBO(LB_CAR_LICENSE_PLATE_INFO.CLASS_NAME, fromCondtion, LB_CAR_LICENSE_PLATE_INFO_TEMP.CLASS_NAME, null, otherProperty, Sqlca); return "true"; } }