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
  • !295

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

ダッシュボードのロックが表示されない不具合に対応。

力技で、ローカルDB内を最新の状態に更新するようにした。

  • Discussion 3
  • Commits 2
  • Changes 1
{{ resolvedDiscussionCount }}/{{ discussionCount }} {{ resolvedCountText }} resolved
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 24, 2023
    Resolved by Yujin Seo Feb 24, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    168 report.taskKey,
    169 (long) report.taskReportId,
    170 report.reportStartDate,
    171 report.reportStatus,
    172 report.reportLockUserId,
    173 report.reportLockUserName,
    174 report.reportLockTime
    175 );
    176 }
    177 }
    178 }
    179 } catch(Exception e) {
    180 e.printStackTrace();
    181 }
    182 }
    183
    • Kazuyuki Hida @hida-k commented Feb 24, 2023
      Developer

      全作業のロック情報を更新

      Edited Feb 24, 2023
      全作業のロック情報を更新
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 24, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    314 353 break;
    315 354 }
    316 355 case CMD_UNLOCK_REPORT: {
    317 String taskKey = json.getString(TaskKey);
    318 long taskReportId = json.getLong(TaskReportId);
    319 Date reportStartDate = getDateOrNull(json.getString(ReportStartDate));
    356 String taskKey = json.has(TaskKey) ? json.getString(TaskKey) : "";
    357 long taskReportId = json.has(TaskReportId) ? json.getLong(TaskReportId) : 0;
    358 Date reportStartDate = json.has(ReportStartDate) ? getDateOrNull(json.getString(ReportStartDate)) : null;
    • Kazuyuki Hida @hida-k commented Feb 24, 2023
      Developer

      潜在的なバグだった(ぬるぽが起きる)ところを修正

      潜在的なバグだった(ぬるぽが起きる)ところを修正
    Please register or sign in to reply
  • Kazuyuki Hida @hida-k

    assigned to @seo

    Feb 24, 2023

    assigned to @seo

    assigned to @seo
    Toggle commit list
  • Yujin Seo
    @seo started a discussion on an old version of the diff Feb 24, 2023
    Last updated by Kazuyuki Hida Feb 24, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    165 for (TaskDto task : json.taskDtoList) {
    166 for (TaskReportDto report : task.taskReportDtoList) {
    167 taskReportDao.updateReportLock(
    168 report.taskKey,
    169 (long) report.taskReportId,
    170 report.reportStartDate,
    171 report.reportStatus,
    172 report.reportLockUserId,
    173 report.reportLockUserName,
    174 report.reportLockTime
    175 );
    176 }
    177 }
    178 }
    179 } catch(Exception e) {
    180 e.printStackTrace();
    • Yujin Seo @seo commented Feb 24, 2023
      Developer

      Logger.e(TAG, "message...", e) を使ってください。

      Logger.e(TAG, "message...", e) を使ってください。
    • Kazuyuki Hida @hida-k

      changed this line in version 2 of the diff

      Feb 24, 2023

      changed this line in version 2 of the diff

      changed this line in [version 2 of the diff](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/295/diffs?diff_id=10973&start_sha=1237a49930354e9e7f072026bf49a4a0cd4f43c6#45001f89e041784453b14a4a8da5bab8a92882c3_180_179)
      Toggle commit list
    Please register or sign in to reply
  • Yujin Seo @seo

    assigned to @hida-k

    Feb 24, 2023

    assigned to @hida-k

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

    added 1 commit

    • bfb0b3ba - 例外発生時の処理を変更

    Compare with previous version

    Feb 24, 2023

    added 1 commit

    • bfb0b3ba - 例外発生時の処理を変更

    Compare with previous version

    added 1 commit * bfb0b3ba - 例外発生時の処理を変更 [Compare with previous version](https://gitlab.agentec.jp/abook_android/abook_check/merge_requests/295/diffs?diff_id=10973&start_sha=1237a49930354e9e7f072026bf49a4a0cd4f43c6)
    Toggle commit list
  • Kazuyuki Hida @hida-k

    merged

    Feb 24, 2023

    merged

    merged
    Toggle commit list
  • Kazuyuki Hida @hida-k

    mentioned in commit d3249b41

    Feb 24, 2023

    mentioned in commit d3249b41

    mentioned in commit d3249b41bc47b55c8d0d2c17ea59d87c33eb3015
    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
Kazuyuki Hida
Assignee
Kazuyuki Hida @hida-k
Assign to
None
Milestone
None
Assign milestone
Time tracking
2
2 participants
Reference: abook_android/abook_check!295
×

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.