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
fe5d22b4
Commit
fe5d22b4
authored
Feb 01, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'contract/sato/1.0.300_hida' into 'contract/sato/1.0.300'
ロック取得後に報告書が開かない不具合を修正 See merge request
!270
parents
c3a7adee
044e5047
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
5 deletions
+6
-5
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/LockReportLogic.java
+2
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/UnlockReportLogic.java
+1
-1
gradle.properties
+3
-2
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/LockReportLogic.java
View file @
fe5d22b4
...
@@ -202,13 +202,13 @@ public class LockReportLogic extends AbstractLogic {
...
@@ -202,13 +202,13 @@ public class LockReportLogic extends AbstractLogic {
extParam
.
put
(
ReportStatus
,
String
.
valueOf
(
reportStatus
));
extParam
.
put
(
ReportStatus
,
String
.
valueOf
(
reportStatus
));
extParam
.
put
(
ReportLockUserId
,
reportLockUserId
);
extParam
.
put
(
ReportLockUserId
,
reportLockUserId
);
extParam
.
put
(
ReportLockUserName
,
reportLockUserName
);
extParam
.
put
(
ReportLockUserName
,
reportLockUserName
);
extParam
.
put
(
ReportLockTime
,
DateTimeUtil
.
toStringInTimeZone
(
reportLockTime
,
DateTimeFormat
.
yyyyMMddHHmmss
SSS
_hyphen
,
"UTC"
));
extParam
.
put
(
ReportLockTime
,
DateTimeUtil
.
toStringInTimeZone
(
reportLockTime
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
,
"UTC"
));
if
(
taskReportId
!=
null
&&
taskReportId
!=
0
)
{
if
(
taskReportId
!=
null
&&
taskReportId
!=
0
)
{
extParam
.
put
(
TaskReportId
,
taskReportId
);
extParam
.
put
(
TaskReportId
,
taskReportId
);
}
}
if
(
reportStartDate
!=
null
)
{
if
(
reportStartDate
!=
null
)
{
extParam
.
put
(
ReportStartDate
,
DateTimeUtil
.
toStringInTimeZone
(
reportStartDate
,
DateTimeFormat
.
yyyyMMddHHmmss
SSS
_hyphen
,
"UTC"
));
extParam
.
put
(
ReportStartDate
,
DateTimeUtil
.
toStringInTimeZone
(
reportStartDate
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
,
"UTC"
));
}
}
return
extParam
.
toString
();
return
extParam
.
toString
();
}
}
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/UnlockReportLogic.java
View file @
fe5d22b4
...
@@ -150,7 +150,7 @@ public class UnlockReportLogic extends AbstractLogic {
...
@@ -150,7 +150,7 @@ public class UnlockReportLogic extends AbstractLogic {
extParam
.
put
(
TaskReportId
,
taskReportId
);
extParam
.
put
(
TaskReportId
,
taskReportId
);
}
}
if
(
reportStartDate
!=
null
)
{
if
(
reportStartDate
!=
null
)
{
extParam
.
put
(
ReportStartDate
,
DateTimeUtil
.
toStringInTimeZone
(
reportStartDate
,
DateTimeFormat
.
yyyyMMddHHmmss
SSS
_hyphen
,
"UTC"
));
extParam
.
put
(
ReportStartDate
,
DateTimeUtil
.
toStringInTimeZone
(
reportStartDate
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
,
"UTC"
));
}
}
return
extParam
.
toString
();
return
extParam
.
toString
();
}
}
...
...
gradle.properties
View file @
fe5d22b4
...
@@ -132,4 +132,5 @@ BLJAR_NAME=ABVJE_BL.jar
...
@@ -132,4 +132,5 @@ BLJAR_NAME=ABVJE_BL.jar
#store用の場合、armv7,x86両方ビルド
#store用の場合、armv7,x86両方ビルド
#storeではない場合、armv7のみビルド
#storeではない場合、armv7のみビルド
isStoreProduct
=
true
#isStoreProduct=true
\ No newline at end of file
isStoreProduct
=
false
\ No newline at end of file
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