Commit b9fc5fca by Kim Jinsung

#39910 連続作業機能

連続作業アイコン表示
parent 8a85828c
...@@ -138,6 +138,7 @@ public class Constant { ...@@ -138,6 +138,7 @@ public class Constant {
int Report = 0; // 報告 int Report = 0; // 報告
int RoutineTask = 1; // 定期点検 int RoutineTask = 1; // 定期点検
int ReportReply = 2; // 報告(回答) int ReportReply = 2; // 報告(回答)
int ReportContinuous = 3; // 連続作業
} }
// 報告履歴管理 // 報告履歴管理
......
...@@ -203,6 +203,10 @@ public class OperationListAdapter extends AbstractOperationAdapter { ...@@ -203,6 +203,10 @@ public class OperationListAdapter extends AbstractOperationAdapter {
// 報告(回答)タイプ // 報告(回答)タイプ
holder.ivReportType.setBackgroundResource(R.drawable.ic_list_type3); holder.ivReportType.setBackgroundResource(R.drawable.ic_list_type3);
break; break;
case ReportType.ReportContinuous :
// 報告(回答)タイプ
holder.ivReportType.setBackgroundResource(R.drawable.ic_list_type4);
break;
} }
} }
......
...@@ -213,6 +213,10 @@ public class OperationPanelAdapter extends AbstractOperationAdapter { ...@@ -213,6 +213,10 @@ public class OperationPanelAdapter extends AbstractOperationAdapter {
// 報告(回答)タイプ // 報告(回答)タイプ
holder.ivReportType.setBackgroundResource(R.drawable.ic_panel_type3); holder.ivReportType.setBackgroundResource(R.drawable.ic_panel_type3);
break; break;
case ReportType.ReportContinuous :
// 報告(回答)タイプ
holder.ivReportType.setBackgroundResource(R.drawable.ic_panel_type4);
break;
} }
} }
......
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