待阅移动端界面加入方案图判断

This commit is contained in:
zhaol 2025-01-24 12:42:22 +08:00
parent 6c08ca6398
commit 3dbe45bc56
2 changed files with 3 additions and 3 deletions

View File

@ -935,7 +935,7 @@ public class TaskController {
String methodId = DBSql.getString(conn,"select PLMETHODID from APP_ACT_COE_PAL_REPOSITORY where ID= '"
+ bo.getString("PUBLISHFILEID") + "'");
if (UtilString.isNotEmpty(methodId)) {
if (methodId.equals("control.policy")|| methodId.equals("process.scheme")) {
if (methodId.equals("control.policy") || methodId.equals("process.scheme")) {
sql_upfile = "select * from APP_ACT_COE_PAL_UPFILE where palrepositoryid in (select ID from APP_ACT_COE_PAL_REPOSITORY where ID= '"
+ bo.getString("PUBLISHFILEID") + "') AND FILETYPE = 'f' ORDER BY FILENAME ASC";
}
@ -1121,7 +1121,7 @@ public class TaskController {
.getString(conn,"select PLMETHODID from APP_ACT_COE_PAL_REPOSITORY where ID= '"
+ bo.getString("STOPFILEID") + "'");
if (UtilString.isNotEmpty(methodId)) {
if (methodId.equals("control.policy")|| methodId.equals("process.scheme")) {
if (methodId.equals("control.policy") || methodId.equals("process.scheme")) {
sql_upfile = "select * from APP_ACT_COE_PAL_UPFILE where palrepositoryid in (select ID from APP_ACT_COE_PAL_REPOSITORY where ID= '"
+ bo.getString("STOPFILEID") + "') AND FILETYPE = 'f' ORDER BY FILENAME ASC";
}
@ -1297,7 +1297,7 @@ public class TaskController {
String methodId = DBSql.getString(conn,"select PLMETHODID from APP_ACT_COE_PAL_REPOSITORY where ID= '"
+ bo.getString("CHANGEDFILEIDNEW") + "'");
if (UtilString.isNotEmpty(methodId)) {
if (methodId.equals("control.policy")|| methodId.equals("process.scheme")) {
if (methodId.equals("control.policy") || methodId.equals("process.scheme")) {
sql_upfile = "select * from APP_ACT_COE_PAL_UPFILE where palrepositoryid in (select ID from APP_ACT_COE_PAL_REPOSITORY where ID= '"
+ bo.getString("CHANGEDFILEIDNEW")
+ "') AND FILETYPE = 'f' ORDER BY FILENAME ASC";