Commit 29296538 by Lee Jaebin

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

parent 4b5ea9a4
...@@ -951,9 +951,11 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity { ...@@ -951,9 +951,11 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
// コールバック処理のみ行う。 // コールバック処理のみ行う。
afterABookCheckApi(mCmd, mTaskKey, 0, "", null, isOperationPdf()); afterABookCheckApi(mCmd, mTaskKey, 0, "", null, isOperationPdf());
} }
// 画面遷移処理 // 画面遷移処理(一時保存以外)
if (!mCmd.equals(ABookKeys.CMD_LOCAL_SAVE_TASK_REPORT)) {
closeCurrentScreen(mOperationType); closeCurrentScreen(mOperationType);
} }
}
} else { } else {
// ozd画面ではない一時保存処理時、コールバックを呼び出す // ozd画面ではない一時保存処理時、コールバックを呼び出す
if (mCmd.equals(ABookKeys.CMD_LOCAL_SAVE_TASK_REPORT)) { if (mCmd.equals(ABookKeys.CMD_LOCAL_SAVE_TASK_REPORT)) {
......
...@@ -167,13 +167,7 @@ public class OzdFileHelper { ...@@ -167,13 +167,7 @@ public class OzdFileHelper {
String ozdFileName = null; String ozdFileName = null;
if (reportFileName != null) { if (reportFileName != null) {
ozdFileName = reportFileName; ozdFileName = reportFileName.replace("ozr", "ozd");
} else {
if (taskReportLevel == 0) {
ozdFileName = DIRECTION_OZD_FILE_NAME;
} else {
ozdFileName = REPORT_OZD_FILE_NAME;
}
} }
String ozFilePath = null; 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