牌照表临时到正式

This commit is contained in:
liuzhao 2018-08-11 09:56:02 +08:00
parent 4c5d10e630
commit e24c9f3342

View File

@ -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<String,String> toCondtion = new HashMap<String,String>();
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";
}
}