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"; } }