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
a16388a0
Commit
a16388a0
authored
Feb 15, 2023
by
Kazuyuki Hida
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
I/O帳票のボタンの配置変更と英語でのタイトルを修正
parent
d3af397f
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
14 deletions
+15
-14
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/parameters/UnlockReportParameters.java
+1
-1
ABVJE_Res_Default_Android/res/values/strings.xml
+1
-1
ABVJE_UI_Android/res/layout/ac_html_webview.xml
+8
-11
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+5
-1
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/parameters/UnlockReportParameters.java
View file @
a16388a0
...
...
@@ -24,7 +24,7 @@ public class UnlockReportParameters extends AcmsParameters {
this
.
taskKey
=
taskKey
;
this
.
taskReportId
=
taskReportId
;
this
.
reportStartDate
=
DateTimeUtil
.
toStringInTimeZone
(
reportStartDate
,
DateTimeFormat
.
yyyyMMddHHmmss
SSS
_hyphen
,
"UTC"
);
this
.
reportStartDate
=
DateTimeUtil
.
toStringInTimeZone
(
reportStartDate
,
DateTimeFormat
.
yyyyMMddHHmmss_hyphen
,
"UTC"
);
}
public
String
getTaskKey
()
{
...
...
ABVJE_Res_Default_Android/res/values/strings.xml
View file @
a16388a0
...
...
@@ -1447,7 +1447,7 @@
<!-- カテゴリ選択機能 -->
<string
name=
"no_child"
>
No more data below.
</string>
<string
name=
"title_category"
>
Category
</string>
<string
name=
"title_all_operation"
>
All
</string>
<string
name=
"title_all_operation"
>
Operation List
</string>
<string
name=
"category_list"
>
Select Category
</string>
<string
name=
"title_quick_report_output"
>
Report confirmation
</string>
<!-- 一括同期機能 -->
...
...
ABVJE_UI_Android/res/layout/ac_html_webview.xml
View file @
a16388a0
...
...
@@ -179,17 +179,6 @@
android:background=
"@drawable/ic_operation_task_list"
android:layout_marginRight=
"10dp"
android:visibility=
"gone"
/>
<ImageButton
android:id=
"@+id/btn_print"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:layout_centerVertical=
"true"
android:layout_centerInParent=
"true"
android:layout_toLeftOf=
"@+id/btn_help"
android:background=
"@drawable/btn_operation_print_white"
android:scaleX=
"0.6"
android:scaleY=
"0.6"
android:visibility=
"gone"
/>
<ImageButton
android:id=
"@+id/btn_help"
...
...
@@ -200,6 +189,14 @@
android:layout_marginRight=
"10dp"
android:visibility=
"gone"
android:onClick=
"onClickShowHelpView"
/>
<ImageButton
android:id=
"@+id/btn_print"
android:layout_width=
"wrap_content"
android:layout_height=
"wrap_content"
android:background=
"@drawable/btn_operation_print_white"
android:scaleX=
"0.6"
android:scaleY=
"0.6"
android:visibility=
"gone"
/>
</LinearLayout>
</RelativeLayout>
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
a16388a0
...
...
@@ -1003,7 +1003,11 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
extJson
.
toString
(),
isOperationPdf
());
}
else
if
(
mAddReport
)
{
// 作業追加ありの場合
// コールバック処理のみ行う。
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
null
,
isOperationPdf
());
String
extParam
=
null
;
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_UNLOCK_REPORT
))
{
extParam
=
"{'reportStatus':0, 'message':''}"
;
}
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
extParam
,
isOperationPdf
());
}
else
{
// 作業追加無しの場合、エラー発生時フォーム画面表示を維持するためにコールバックresult:1でする
if
(
isError
)
{
...
...
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