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
328e905d
Commit
328e905d
authored
Jul 02, 2019
by
Jeong Gilmo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#33721 手書きパレット機能の追加
- ログ出力修正 - イメージ編集のフラグ設定値の修正 - 添付画像について以前バージョンに生成されたデータの対応処理
parent
fc31e60f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
5 deletions
+17
-5
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/ApertureMasterDataLogic.java
+0
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+17
-4
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/ApertureMasterDataLogic.java
View file @
328e905d
...
@@ -44,7 +44,6 @@ public class ApertureMasterDataLogic extends AbstractLogic {
...
@@ -44,7 +44,6 @@ public class ApertureMasterDataLogic extends AbstractLogic {
createApertureMasterDataJson
(
masterDataJson
.
apertureData
);
createApertureMasterDataJson
(
masterDataJson
.
apertureData
);
cache
.
setTempApertureMasterDataFetchDate
(
lastEditDateString
);
cache
.
setTempApertureMasterDataFetchDate
(
lastEditDateString
);
}
}
Logger
.
i
(
masterDataJson
.
toString
());
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
Logger
.
e
(
TAG
,
"apertureMasterDataSend error : "
,
e
);
Logger
.
e
(
TAG
,
"apertureMasterDataSend error : "
,
e
);
}
}
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
328e905d
...
@@ -141,7 +141,9 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -141,7 +141,9 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
// 編集
// 編集
protected
String
mEditFilePath
;
//再編集する時、Webからもらうクリックしたイメージファイルのパス
protected
String
mEditFilePath
;
//再編集する時、Webからもらうクリックしたイメージファイルのパス
protected
int
mEnablePhotoEdit
;
//最初ファイルをアップロードする時、Webからもらう編集可能可否のパラメタ 0:編集する。 1:編集しない。
protected
String
mEnablePhotoEdit
;
//最初ファイルをアップロードする時、Webからもらう編集可能可否のパラメタ 0:編集する。 1:編集しない。
protected
PhotoEditActivity
mPhotoEditDialog
;
@Override
@Override
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
protected
void
onCreate
(
Bundle
savedInstanceState
)
{
...
@@ -1006,7 +1008,7 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -1006,7 +1008,7 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_SAVE_ATTACHED
))
{
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_SAVE_ATTACHED
))
{
mAttachedFileName
=
abookCheckParam
.
get
(
ABookKeys
.
FILE_NAME
);
mAttachedFileName
=
abookCheckParam
.
get
(
ABookKeys
.
FILE_NAME
);
//編集可否を判別
//編集可否を判別
mEnablePhotoEdit
=
Integer
.
valueOf
(
abookCheckParam
.
get
(
ABookKeys
.
EDITABLE
)
);
//添付したファイルの編集可否のパラメタ
mEnablePhotoEdit
=
abookCheckParam
.
get
(
ABookKeys
.
EDITABLE
)
==
null
?
"0"
:
abookCheckParam
.
get
(
ABookKeys
.
EDITABLE
);
//添付したファイルの編集可否のパラメタ
getAttachedDataUrl
();
getAttachedDataUrl
();
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_EDIT_ATTACHED
)){
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_EDIT_ATTACHED
)){
//編集パラメタ(
//編集パラメタ(
...
@@ -1097,7 +1099,7 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -1097,7 +1099,7 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
}
}
mLocalFile
=
null
;
mLocalFile
=
null
;
//編集可能可否をチェックする。
//編集可能可否をチェックする。
if
(
mEnablePhotoEdit
==
0
)
{
//編集の場合、編集画面を開ける。
if
(
mEnablePhotoEdit
.
equals
(
"1"
)
)
{
//編集の場合、編集画面を開ける。
commonOpenEditPage
();
commonOpenEditPage
();
}
}
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
...
@@ -1355,13 +1357,14 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -1355,13 +1357,14 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
if
(
FileUtil
.
exists
(
tempImagePath
)){
//Tempパスにファイルがある場合、編集を実行
if
(
FileUtil
.
exists
(
tempImagePath
)){
//Tempパスにファイルがある場合、編集を実行
//編集画面をコール
//編集画面をコール
PhotoEditActivity
dialog
=
new
PhotoEditActivity
(
ABVContentViewActivity
.
this
,
tempImagePath
);
//ロードして編集するイメージのパスを設定
PhotoEditActivity
dialog
=
new
PhotoEditActivity
(
ABVContentViewActivity
.
this
,
tempImagePath
);
//ロードして編集するイメージのパスを設定
dialog
.
show
(
);
showPhotoEditDialog
(
dialog
);
dialog
.
setOnDismissListener
(
new
DialogInterface
.
OnDismissListener
()
{
dialog
.
setOnDismissListener
(
new
DialogInterface
.
OnDismissListener
()
{
@Override
@Override
public
void
onDismiss
(
DialogInterface
dialogInterface
)
{
public
void
onDismiss
(
DialogInterface
dialogInterface
)
{
//Web Cacheが更新されて編集画面のダイアローグ閉じた後、JavascriptにてImgタグを再生成してThumbnailを更新
//Web Cacheが更新されて編集画面のダイアローグ閉じた後、JavascriptにてImgタグを再生成してThumbnailを更新
webViewLoadUrl
(
String
.
format
(
"javascript:document.getElementById('reportForm').contentWindow.changeThumbnailTagForAnd('%s','%s')"
,
mAttachedFileName
,
tempImagePath
));
webViewLoadUrl
(
String
.
format
(
"javascript:document.getElementById('reportForm').contentWindow.changeThumbnailTagForAnd('%s','%s')"
,
mAttachedFileName
,
tempImagePath
));
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
null
);
afterABookCheckApi
(
mCmd
,
mTaskKey
,
0
,
""
,
null
);
mPhotoEditDialog
=
null
;
}
}
});
});
}
}
...
@@ -1372,4 +1375,14 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -1372,4 +1375,14 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
}
}
});
});
}
}
protected
void
showPhotoEditDialog
(
PhotoEditActivity
photoEditDialog
)
{
if
(
this
.
mPhotoEditDialog
!=
null
)
{
this
.
mPhotoEditDialog
.
dismiss
();
}
else
{
this
.
mPhotoEditDialog
=
photoEditDialog
;
this
.
mPhotoEditDialog
.
show
();
}
}
}
}
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