Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
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
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
abook_android
abook_check
Commits
75cef969
Commit
75cef969
authored
Jan 30, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
文字列リテラルが残っていたので修正した。
parent
c366960a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
4 deletions
+11
-4
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/DashboardStatusJSON.java
+2
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/OperationDataJSON.java
+2
-0
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/ReportStatusDao.java
+7
-3
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/DashboardStatusJSON.java
View file @
75cef969
...
...
@@ -12,6 +12,7 @@ import jp.agentec.abook.abv.bl.common.log.Logger;
import
jp.agentec.abook.abv.bl.dto.DashboardStatusDto
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
OperationId
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
OperationList
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
ReportList
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
ReportStartDate
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
ReportStatus
;
...
...
@@ -31,7 +32,7 @@ public class DashboardStatusJSON extends AcmsCommonJSON {
@Override
protected
void
parse
(
JSONObject
json
)
{
// 使わないので無視 → //presentTimeUTC = dateOrNull(json.getString("presentTimeUTC"));
JSONArray
oprations
=
json
.
getJSONArray
(
"operationList"
);
JSONArray
oprations
=
json
.
getJSONArray
(
OperationList
);
reportStatuses
=
new
ArrayList
<
DashboardStatusDto
>();
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/OperationDataJSON.java
View file @
75cef969
...
...
@@ -23,6 +23,8 @@ public class OperationDataJSON extends AcmsCommonJSON {
public
static
final
String
OperationId
=
"operationId"
;
public
static
final
String
OperationList
=
"operationList"
;
public
static
final
String
ReportStatusId
=
"reportStatusId"
;
public
static
final
String
ReportStatusCount
=
"reportStatusCount"
;
public
static
final
String
ReportStatusCountList
=
"reportStatusCountList"
;
public
static
final
String
TaskId
=
"taskId"
;
public
static
final
String
TaskKey
=
"taskKey"
;
public
static
final
String
TaskCode
=
"taskCode"
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/ReportStatusDao.java
View file @
75cef969
...
...
@@ -15,6 +15,10 @@ import jp.agentec.abook.abv.bl.dto.ReportStatusDto;
import
jp.agentec.adf.util.DateTimeFormat
;
import
jp.agentec.adf.util.DateTimeUtil
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
ReportStatusCount
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
ReportStatusCountList
;
import
static
jp
.
agentec
.
abook
.
abv
.
bl
.
acms
.
client
.
json
.
OperationDataJSON
.
ReportStatusId
;
public
class
ReportStatusDao
extends
AbstractDao
{
public
void
insert
(
DashboardStatusDto
dto
)
{
...
...
@@ -252,12 +256,12 @@ public class ReportStatusDao extends AbstractDao {
for
(
ReportStatusCountDto
dto:
getReportStatusCountList
())
{
JSONObject
json
=
new
JSONObject
();
json
.
put
(
"reportStatusId"
,
dto
.
getReportStatusId
());
json
.
put
(
"reportStatusCount"
,
dto
.
getReportStatusCount
());
json
.
put
(
ReportStatusId
,
dto
.
getReportStatusId
());
json
.
put
(
ReportStatusCount
,
dto
.
getReportStatusCount
());
list
.
put
(
json
);
}
JSONObject
result
=
new
JSONObject
();
result
.
put
(
"reportStatusCountList"
,
list
);
result
.
put
(
ReportStatusCountList
,
list
);
return
result
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment