Commit 29296538 by Lee Jaebin

#33410 削除対象のファイル検索時、ozrをozdに変換して検索するように修正

parent 4b5ea9a4
......@@ -951,8 +951,10 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
// コールバック処理のみ行う。
afterABookCheckApi(mCmd, mTaskKey, 0, "", null, isOperationPdf());
}
// 画面遷移処理
closeCurrentScreen(mOperationType);
// 画面遷移処理(一時保存以外)
if (!mCmd.equals(ABookKeys.CMD_LOCAL_SAVE_TASK_REPORT)) {
closeCurrentScreen(mOperationType);
}
}
} else {
// ozd画面ではない一時保存処理時、コールバックを呼び出す
......
......@@ -167,13 +167,7 @@ public class OzdFileHelper {
String ozdFileName = null;
if (reportFileName != null) {
ozdFileName = reportFileName;
} else {
if (taskReportLevel == 0) {
ozdFileName = DIRECTION_OZD_FILE_NAME;
} else {
ozdFileName = REPORT_OZD_FILE_NAME;
}
ozdFileName = reportFileName.replace("ozr", "ozd");
}
String ozFilePath = null;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment