ダッシュボードから報告書への画面遷移
ダッシュボードでは、状況毎の報告書一覧が表示されるので、それをタップしたと、一覧から報告書画面に直接画面遷移する機能を実装しました。
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
-
-
285 286 } 286 287 case CMD_GO_REPORT_DETAIL: { 287 288 long operationId = json.getLong(OperationId); 288 goReportDetail(operationId); 289 String taskKey = json.has(TaskKey) ? json.getString(TaskKey) : null; 290 Long taskReportId = json.has(TaskReportId) ? json.getLong(TaskReportId) : null; 291 String reportStartDate = json.has(ReportStartDate) ? json.getString(ReportStartDate) : null; 292 goReportDetail(operationId, taskKey, taskReportId, reportStartDate); -
Developer
直接報告書に遷移するため、必要な情報が増えました。
-
-
-
unmarked as a Work In Progress
Toggle commit list -
-
merged
Toggle commit list