Forráskód Böngészése

人员档案流程不进行归档

WuYi 5 napja
szülő
commit
c0e593ad01

+ 2 - 2
ibps-provider-root/modules/provider-business/src/main/java/com/lc/ibps/components/employee/provider/EmployeeInfoProvider.java

@@ -140,10 +140,10 @@ public class EmployeeInfoProvider extends GenericProvider implements IEmployeeIn
 				if(Collections.isNotEmpty(bpm) && StringUtil.isNotEmpty(bpm.get(0).get("inst_id_").toString()) && StringUtil.isNotEmpty(bpm.get(0).get("t_id_").toString())){
 					String update = "UPDATE IBPS_BPM_INST SET SUBJECT_ = '" +subject+"' where ID_ = '"+ bpm.get(0).get("inst_id_").toString() +"'";
 					String upTask = "UPDATE IBPS_BPM_TASKS SET SUBJECT_ = '" +subject+"' where ID_ = '"+ bpm.get(0).get("t_id_").toString() +"'";
-					String upHis = "UPDATE IBPS_BPM_INST_HIS SET SUBJECT_ = '" +subject+"' where ID_ = '"+ bpm.get(0).get("inst_id_").toString() +"'";
+					//String upHis = "UPDATE IBPS_BPM_INST_HIS SET SUBJECT_ = '" +subject+"' where ID_ = '"+ bpm.get(0).get("inst_id_").toString() +"'";
 					commonDao.execute(update);
 					commonDao.execute(upTask);
-					commonDao.execute(upHis);
+					//commonDao.execute(upHis);
 				}
 		} catch (Exception e) {
 			setExceptionResult(result, StateEnum.ERROR.getCode(), StateEnum.ERROR.getText(), e);