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

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

ダッシュボードから報告書への画面遷移

ダッシュボードでは、状況毎の報告書一覧が表示されるので、それをタップしたと、一覧から報告書画面に直接画面遷移する機能を実装しました。

Edited Feb 07, 2023 by Kazuyuki Hida
  • Discussion 4
  • Commits 3
  • Changes 5
{{ 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_BL/src/jp/agentec/abook/abv/bl/data/dao/ReportStatusDao.java
    157 157 dto.operationName = stringOrEmpty(cursor, "operation_name");
    158 158 dto.taskKey = stringOrEmpty(cursor, "task_key");
    159 159 dto.taskCode = stringOrNull(cursor, "task_code");
    160 dto.taskReportInfo = stringOrEmpty(cursor, "json_data");
    160 String jsonData = stringOrEmpty(cursor, "json_data").trim();
    161 if (jsonData.startsWith("{") && jsonData.endsWith("}")) {
    162 dto.taskReportInfo = new JSONObject(jsonData);
    163 }
    • Kazuyuki Hida @hida-k commented Feb 07, 2023
      Developer

      json_data(taskReportInfo)を文字列で扱っていたが、JavaScript側では、Jsonオブジェクトだと期待しているため、不具合が生じていたのを修正しました。

      Edited Feb 07, 2023
      json_data(taskReportInfo)を文字列で扱っていたが、JavaScript側では、Jsonオブジェクトだと期待しているため、不具合が生じていたのを修正しました。
    Please register or sign in to reply
  • Kazuyuki Hida
    @hida-k started a discussion on the diff Feb 07, 2023
    ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/DashboardActivity.java
    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);
    • Kazuyuki Hida @hida-k commented Feb 07, 2023
      Developer

      直接報告書に遷移するため、必要な情報が増えました。

      直接報告書に遷移するため、必要な情報が増えました。
    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
    gradle.properties
    37 37 # abvEnvironments.xml
    38 38
    39 39 #cms server
    40 acms_address=https://check.abookcloud.com/acms
    41 download_server_address=https://check.abookcloud.com/acms
    42 #acms_address=https://abook188-1.abook.bz/acms
    43 #download_server_address=https://abook188-1.abook.bz/acms
    40 #acms_address=https://check.abookcloud.com/acms
    41 #download_server_address=https://check.abookcloud.com/acms
    42 acms_address=https://abook188-1.abook.bz/acms
    43 download_server_address=https://abook188-1.abook.bz/acms
    • 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 started a discussion on the diff Feb 07, 2023
    Resolved by Yujin Seo Feb 07, 2023
    gradle.properties
    96 96 contact_email=grp-atform_support@sato-global.com
    97 97
    98 98 #Log Settings
    99 log_level=2
    100 #log_level=1
    99 #log_level=2
    100 log_level=1
    • Yujin Seo @seo commented Feb 07, 2023
      Developer

      こちらも後で元に戻してください。

      Edited Feb 07, 2023
      こちらも後で元に戻してください。
    Please register or sign in to reply
  • Yujin Seo @seo

    merged

    Feb 07, 2023

    merged

    merged
    Toggle commit list
  • Yujin Seo @seo

    mentioned in commit df204cb9

    Feb 07, 2023

    mentioned in commit df204cb9

    mentioned in commit df204cb9ad5e1e8eab7b6191e50c9b8bff4048a0
    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!273
×

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.