Merge branch '2024.0718/00' of http://221.226.25.34:3000/dxfeng/weaver-hrm-recruit into feature/dxf

This commit is contained in:
dxfeng 2024-08-09 11:32:10 +08:00
commit d258cc23ab
1 changed files with 1 additions and 1 deletions

View File

@ -130,7 +130,7 @@ public class ApplicantCommonInfo {
public static int getModeIdByTableName(String modeTable) {
int formModeId = -1;
RecordSet rs = new RecordSet();
rs.executeQuery("select id from modeinfo where formid =( select id from workflow_bill where tablename = ? ) order by id", modeTable);
rs.executeQuery("select id from modeinfo where formid =( select id from workflow_bill where tablename = ? ) and isdelete = 0 order by id", modeTable);
if (rs.next()) {
formModeId = rs.getInt("id");
}