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
0586c611
Commit
0586c611
authored
Feb 22, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
StartDateに逆のタイムゾーンオフセットをかけた。また、必要のない制約を外した。
parent
645e49d5
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
20 additions
and
19 deletions
+20
-19
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskReportDao.java
+9
-11
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/LockReportLogic.java
+1
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/UnlockReportLogic.java
+3
-6
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
+7
-0
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskReportDao.java
View file @
0586c611
...
@@ -3,8 +3,10 @@ package jp.agentec.abook.abv.bl.data.dao;
...
@@ -3,8 +3,10 @@ package jp.agentec.abook.abv.bl.data.dao;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.Date
;
import
java.util.Date
;
import
java.util.List
;
import
java.util.List
;
import
java.util.TimeZone
;
import
jp.agentec.abook.abv.bl.common.db.Cursor
;
import
jp.agentec.abook.abv.bl.common.db.Cursor
;
import
jp.agentec.abook.abv.bl.common.log.Logger
;
import
jp.agentec.abook.abv.bl.dto.TaskReportDto
;
import
jp.agentec.abook.abv.bl.dto.TaskReportDto
;
import
jp.agentec.adf.util.DateTimeFormat
;
import
jp.agentec.adf.util.DateTimeFormat
;
import
jp.agentec.adf.util.DateTimeUtil
;
import
jp.agentec.adf.util.DateTimeUtil
;
...
@@ -223,7 +225,6 @@ public class TaskReportDao extends AbstractDao {
...
@@ -223,7 +225,6 @@ public class TaskReportDao extends AbstractDao {
* @param reportLockUserId
* @param reportLockUserId
* @param reportLockUserName
* @param reportLockUserName
* @param reportLockTime
* @param reportLockTime
* @param loginId
* @return
* @return
*/
*/
public
void
updateReportLock
(
public
void
updateReportLock
(
...
@@ -233,8 +234,7 @@ public class TaskReportDao extends AbstractDao {
...
@@ -233,8 +234,7 @@ public class TaskReportDao extends AbstractDao {
int
reportStatus
,
int
reportStatus
,
String
reportLockUserId
,
String
reportLockUserId
,
String
reportLockUserName
,
String
reportLockUserName
,
Date
reportLockTime
,
Date
reportLockTime
String
loginId
)
{
)
{
StringBuilder
sql
=
new
StringBuilder
();
StringBuilder
sql
=
new
StringBuilder
();
List
<
Object
>
args
=
new
ArrayList
<
Object
>();
List
<
Object
>
args
=
new
ArrayList
<
Object
>();
...
@@ -250,24 +250,22 @@ public class TaskReportDao extends AbstractDao {
...
@@ -250,24 +250,22 @@ public class TaskReportDao extends AbstractDao {
}
else
{
}
else
{
sql
.
append
(
" WHERE task_key=? "
);
sql
.
append
(
" WHERE task_key=? "
);
}
}
if
(
loginId
!=
null
)
{
sql
.
append
(
" AND report_lock_user_id=? "
);
//自分以外のロックを変更しないため
}
args
.
add
(
reportStatus
);
args
.
add
(
reportStatus
);
args
.
add
(
reportLockUserId
);
args
.
add
(
reportLockUserId
);
args
.
add
(
reportLockUserName
);
args
.
add
(
reportLockUserName
);
args
.
add
(
reportLockTime
);
args
.
add
(
reportLockTime
);
if
(
reportStartDate
!=
null
)
{
if
(
reportStartDate
!=
null
)
{
args
.
add
(
taskReportId
);
args
.
add
(
taskReportId
);
args
.
add
(
DateTimeUtil
.
toStringInTimeZone
(
reportStartDate
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
,
"UTC"
));
int
offset
=
TimeZone
.
getDefault
().
getOffset
(
reportStartDate
.
getTime
());
Date
date
=
new
Date
(
reportStartDate
.
getTime
()
-
offset
);
String
dateStr
=
DateTimeUtil
.
toStringInTimeZone
(
date
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
,
"UTC"
);
args
.
add
(
dateStr
);
}
else
{
}
else
{
args
.
add
(
taskKey
);
args
.
add
(
taskKey
);
}
}
if
(
loginId
!=
null
)
{
args
.
add
(
loginId
);
}
update
(
sql
.
toString
(),
args
.
toArray
());
long
count
=
update
(
sql
.
toString
(),
args
.
toArray
());
Logger
.
i
(
TAG
,
"updated "
+
count
+
"record(s) by LOCK/UNLOCK"
);
}
}
/**
/**
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/LockReportLogic.java
View file @
0586c611
...
@@ -80,8 +80,7 @@ public class LockReportLogic extends AbstractLogic {
...
@@ -80,8 +80,7 @@ public class LockReportLogic extends AbstractLogic {
reportStatus
,
reportStatus
,
member
.
loginId
,
member
.
loginId
,
member
.
memberName
,
member
.
memberName
,
new
Date
(),
new
Date
()
null
);
);
}
}
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/UnlockReportLogic.java
View file @
0586c611
...
@@ -26,10 +26,9 @@ public class UnlockReportLogic extends AbstractLogic {
...
@@ -26,10 +26,9 @@ public class UnlockReportLogic extends AbstractLogic {
}
}
public
Result
unlock
(
String
taskKey
,
Long
taskReportId
,
Date
reportStartDate
)
{
public
Result
unlock
(
String
taskKey
,
Long
taskReportId
,
Date
reportStartDate
)
{
String
loginId
=
cache
.
getMemberInfo
().
loginId
;
Result
r
=
sendUnlockReport
(
taskKey
,
taskReportId
,
reportStartDate
);
Result
r
=
sendUnlockReport
(
taskKey
,
taskReportId
,
reportStartDate
);
if
(
r
.
result
==
0
)
{
if
(
r
.
result
==
0
)
{
updateLocalDB
(
taskKey
,
taskReportId
,
reportStartDate
,
r
.
extParam
.
getReportStatus
()
,
loginId
);
updateLocalDB
(
taskKey
,
taskReportId
,
reportStartDate
,
r
.
extParam
.
getReportStatus
());
}
}
return
r
;
return
r
;
}
}
...
@@ -65,8 +64,7 @@ public class UnlockReportLogic extends AbstractLogic {
...
@@ -65,8 +64,7 @@ public class UnlockReportLogic extends AbstractLogic {
String
taskKey
,
String
taskKey
,
Long
taskReportId
,
Long
taskReportId
,
Date
reportStartDate
,
Date
reportStartDate
,
int
reportStatus
,
int
reportStatus
String
loginId
)
{
)
{
// ローカルDBに反映
// ローカルDBに反映
TaskReportDao
dao
=
AbstractDao
.
getDao
(
TaskReportDao
.
class
);
TaskReportDao
dao
=
AbstractDao
.
getDao
(
TaskReportDao
.
class
);
...
@@ -77,8 +75,7 @@ public class UnlockReportLogic extends AbstractLogic {
...
@@ -77,8 +75,7 @@ public class UnlockReportLogic extends AbstractLogic {
reportStatus
,
reportStatus
,
null
,
null
,
null
,
null
,
null
,
null
loginId
);
);
}
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLWebViewActivity.java
View file @
0586c611
...
@@ -337,6 +337,13 @@ public class HTMLWebViewActivity extends ParentWebViewActivity {
...
@@ -337,6 +337,13 @@ public class HTMLWebViewActivity extends ParentWebViewActivity {
// AndroidOSが5以下のPANO_SERVER処理のため、置き換える必要がある。
// AndroidOSが5以下のPANO_SERVER処理のため、置き換える必要がある。
url
=
"/"
+
url
;
url
=
"/"
+
url
;
if
(
url
.
contains
(
ABookKeys
.
ABOOK_CHECK_API
))
{
if
(
url
.
contains
(
ABookKeys
.
ABOOK_CHECK_API
))
{
String
cmd
=
uri
.
getQueryParameter
(
"cmd"
);
if
(
cmd
.
contains
(
"lockReport"
))
{
String
sd
=
uri
.
getQueryParameter
(
"reportStartDate"
);
Logger
.
d
(
TAG
,
"mCmd:"
+
cmd
+
",reportStartDate: "
+
sd
+
", CheckApiUrl: "
+
url
);
}
else
{
Logger
.
d
(
TAG
,
"mCmd:"
+
cmd
+
", CheckApiUrl: "
+
url
);
}
commonShouldOverrideUrlLoading
(
uri
,
null
);
commonShouldOverrideUrlLoading
(
uri
,
null
);
}
}
if
(
fromDashboard
&&
(
url
.
contains
(
ABookKeys
.
CMD_CANCEL_TASK_REPORT
)))
{
if
(
fromDashboard
&&
(
url
.
contains
(
ABookKeys
.
CMD_CANCEL_TASK_REPORT
)))
{
...
...
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