Skip to content

  • Projects
  • Groups
  • Snippets
  • Help
  • This project
    • Loading...
  • Sign in / Register
A
abook_check
  • Overview
    • Overview
    • Details
    • Activity
    • Cycle Analytics
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
    • Charts
  • Issues 0
    • Issues 0
    • List
    • Board
    • Labels
    • Milestones
  • Merge Requests 0
    • Merge Requests 0
  • CI / CD
    • CI / CD
    • Pipelines
    • Jobs
    • Schedules
    • Charts
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Members
  • Collapse sidebar
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • abook_android
  • abook_check
  • Merge Requests
  • !276

Merged
Opened Feb 07, 2023 by Kazuyuki Hida@hida-k 
  • Report abuse
Report abuse

ダッシュボード関連の不具合対応

  • ヘルプが表示されない
  • タスクコードが表示されない
  • 報告書を完了して戻ってきても、件数が更新されていない といった不具合を修正
Edited Feb 07, 2023 by Kazuyuki Hida
  • Discussion 5
  • Commits 3
  • Changes 2
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 07, 2023
    Resolved by Yujin Seo Feb 07, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    95 97 }
    96 98 });
    97 99
    100 ImageButton helpButton = findViewById(R.id.btn_help);
    101 helpButton.setOnClickListener(new View.OnClickListener() {
    102 @Override
    103 public void onClick(View v) {
    104 showHelpViewDialog(OperationDashboard);
    105 }
    106 });
    107
    • Kazuyuki Hida @hida-k commented Feb 07, 2023
      Developer

      ヘルプウィンドウが表示されるようにしました。

      Edited Feb 07, 2023
      ヘルプウィンドウが表示されるようにしました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 07, 2023
    Resolved by Yujin Seo Feb 07, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    160 171 Logger.d(TAG, "loadUrl: " + DASHBOARD_URL);
    161 172 }
    162 173
    163 @SuppressLint("SetJavaScriptEnabled")
    • Kazuyuki Hida @hida-k commented Feb 07, 2023
      Developer

      警告を抑止するアノテーションの位置が間違っていたので移動しました。

      Edited Feb 07, 2023
      警告を抑止するアノテーションの位置が間違っていたので移動しました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 07, 2023
    Resolved by Yujin Seo Feb 07, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    386 396 task.put(TaskKey, report.getTaskKey());
    387 397 task.put(TaskReportInfo, report.getTaskReportInfo());
    388 398 task.put(TaskReportId, report.getTaskReportId());
    399 task.put(TaskCode, report.getTaskCode());
    • Kazuyuki Hida @hida-k commented Feb 07, 2023
      Developer

      タスクコードを分が抜けていたので、追加しました。

      Edited Feb 07, 2023
      タスクコードを分が抜けていたので、追加しました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 07, 2023
    Resolved by Yujin Seo Feb 07, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/HelpActivity.java
    259 259 mMainDescription = PatternStringUtil.patternToString(getApplicationContext(),
    260 260 R.string.msg_help_dashboard,
    261 261 getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0));
    262 mHelpDisplayInfoList.add(settingHelpDisplayInfo(PatternStringUtil.patternToString(getApplicationContext(),
    263 R.string.msg_help_report_locked,
    264 getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)), R.drawable.ic_unlock));
    265 mHelpDisplayInfoList.add(settingHelpDisplayInfo(PatternStringUtil.patternToString(getApplicationContext(),
    266 R.string.msg_help_report_send_back,
    267 getUserPref(AppDefType.UserPrefKey.RESOURCE_PATTERN_TYPE, 0)), R.drawable.ic_sendback));
    • Kazuyuki Hida @hida-k commented Feb 07, 2023
      Developer

      ヘルプウィンドウの中身を追加しました。

      Edited Feb 07, 2023
      ヘルプウィンドウの中身を追加しました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 07, 2023
    Resolved by Yujin Seo Feb 07, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    527 538 Logger.e(TAG, e);
    528 539 throw e;
    529 540 }
    541 // 強制的に画面更新するためにリロード fixme
    542 webView.loadUrl(DASHBOARD_URL);
    • Kazuyuki Hida @hida-k commented Feb 07, 2023
      Developer

      画面を更新するために、リロードするようにしました。 強引な手法ですが、時間が足りないので確実な方法をとるようにしました。

      Edited Feb 07, 2023
      画面を更新するために、リロードするようにしました。 強引な手法ですが、時間が足りないので確実な方法をとるようにしました。
    Please register or sign in to reply
  • Kazuyuki Hida @hida-k

    assigned to @seo

    Feb 07, 2023

    assigned to @seo

    assigned to @seo
    Toggle commit list
  • Kazuyuki Hida @hida-k

    unmarked as a Work In Progress

    Feb 07, 2023

    unmarked as a Work In Progress

    unmarked as a **Work In Progress**
    Toggle commit list
  • Yujin Seo @seo

    resolved all discussions

    Feb 07, 2023

    resolved all discussions

    resolved all discussions
    Toggle commit list
  • Yujin Seo @seo

    merged

    Feb 07, 2023

    merged

    merged
    Toggle commit list
  • Yujin Seo @seo

    mentioned in commit a334ecc8

    Feb 07, 2023

    mentioned in commit a334ecc8

    mentioned in commit a334ecc81296c8f1b6e45a567923503b40a8de79
    Toggle commit list
  • Write
  • Preview
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 sign in to comment
Yujin Seo
Assignee
Yujin Seo @seo
Assign to
None
Milestone
None
Assign milestone
Time tracking
2
2 participants
Reference: abook_android/abook_check!276
×

Revert this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.
×

Cherry-pick this merge request

Switch branch
Cancel
A new branch will be created in your fork and a new merge request will be started.