|
@@ -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())){
|
|
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 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 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(update);
|
|
|
commonDao.execute(upTask);
|
|
commonDao.execute(upTask);
|
|
|
- commonDao.execute(upHis);
|
|
|
|
|
|
|
+ //commonDao.execute(upHis);
|
|
|
}
|
|
}
|
|
|
} catch (Exception e) {
|
|
} catch (Exception e) {
|
|
|
setExceptionResult(result, StateEnum.ERROR.getCode(), StateEnum.ERROR.getText(), e);
|
|
setExceptionResult(result, StateEnum.ERROR.getCode(), StateEnum.ERROR.getText(), e);
|