Commit dbe02eef by Kim Jinsung

#39910 連続作業機能

連続作業時にはOZビューワの削除ボタン非表示
parent 6ea346af
......@@ -159,8 +159,13 @@ public class CheckOZDViewActivity extends ABVContentViewActivity {
// 削除ボタン表示可否判断
mIsOzFilePath = OzdFileHelper.checkOzFilePath(mOperationId, mTaskKey, mTaskReportId, mReportStartDate, mReportFileName, mTaskReportLevel, mProcessKey, mPhaseNo);
if (mProcessKey != null && mPhaseNo != 0) { //連続作業時には常に非表示
deleteButton.setVisibility(View.GONE);
} else {
deleteButton.setVisibility(mIsOzFilePath ? View.VISIBLE : View.GONE);
}
}
// タイトルセット
tvTitle.setText(frontTitle + rearTitle);
......
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