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
7b1a7fd9
Commit
7b1a7fd9
authored
Mar 24, 2019
by
Lee Jaebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#32825 作業一覧画面改善
parent
3493050a
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
164 additions
and
178 deletions
+164
-178
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/AcmsClient.java
+0
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/NewAppStoreLoginJSON.java
+0
-5
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/OperationDataJSON.java
+5
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/type/AcmsApis.java
+1
-3
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/ABVEnvironment.java
+4
-4
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
+1
-0
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/MemberInfoDao.java
+0
-4
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/MMemberInfo.java
+0
-1
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/MemberInfoDto.java
+2
-3
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
+44
-48
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
+64
-59
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/appinfo/AppDefType.java
+1
-3
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
+4
-12
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/AbstractOperationAdapter.java
+0
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/OperationListAdapter.java
+0
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/OperationPanelAdapter.java
+0
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ABookCheckWebViewHelper.java
+33
-26
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLXWalkWebViewActivity.java
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/PageView.java
+4
-4
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/AcmsClient.java
View file @
7b1a7fd9
...
@@ -192,7 +192,6 @@ public class AcmsClient implements AcmsClientResponseListener {
...
@@ -192,7 +192,6 @@ public class AcmsClient implements AcmsClientResponseListener {
dto
.
memberName
=
json
.
userName
;
dto
.
memberName
=
json
.
userName
;
dto
.
requiredPasswordChange
=
json
.
requirePasswordChange
;
dto
.
requiredPasswordChange
=
json
.
requirePasswordChange
;
dto
.
userId
=
json
.
userId
;
dto
.
userId
=
json
.
userId
;
dto
.
operationAuthLevel
=
json
.
operationAuthLevel
;
dto
.
workerCode
=
json
.
workerCode
;
dto
.
workerCode
=
json
.
workerCode
;
if
(
json
.
result
)
{
if
(
json
.
result
)
{
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/NewAppStoreLoginJSON.java
View file @
7b1a7fd9
...
@@ -11,14 +11,12 @@ public class NewAppStoreLoginJSON extends AcmsBooleanResultJSON {
...
@@ -11,14 +11,12 @@ public class NewAppStoreLoginJSON extends AcmsBooleanResultJSON {
public
static
final
String
Sid
=
"sid"
;
public
static
final
String
Sid
=
"sid"
;
public
static
final
String
UserName
=
"userName"
;
public
static
final
String
UserName
=
"userName"
;
public
static
final
String
UserId
=
"userId"
;
public
static
final
String
UserId
=
"userId"
;
public
static
final
String
OperationAuthLevel
=
"projectAuthLevel"
;
public
static
final
String
WorkerCode
=
"workerCode"
;
public
static
final
String
WorkerCode
=
"workerCode"
;
public
String
sid
;
public
String
sid
;
public
RequirePasswordChangeCode
requirePasswordChange
;
public
RequirePasswordChangeCode
requirePasswordChange
;
public
String
userName
;
public
String
userName
;
public
int
userId
;
public
int
userId
;
public
Integer
operationAuthLevel
;
public
String
workerCode
;
public
String
workerCode
;
public
NewAppStoreLoginJSON
(
String
jsonString
)
throws
AcmsException
{
public
NewAppStoreLoginJSON
(
String
jsonString
)
throws
AcmsException
{
...
@@ -35,9 +33,6 @@ public class NewAppStoreLoginJSON extends AcmsBooleanResultJSON {
...
@@ -35,9 +33,6 @@ public class NewAppStoreLoginJSON extends AcmsBooleanResultJSON {
if
(
json
.
has
(
UserId
))
{
if
(
json
.
has
(
UserId
))
{
userId
=
getInt
(
json
,
UserId
);
userId
=
getInt
(
json
,
UserId
);
}
}
if
(
json
.
has
(
OperationAuthLevel
))
{
operationAuthLevel
=
getInt
(
json
,
OperationAuthLevel
);
}
if
(
json
.
has
(
WorkerCode
))
{
if
(
json
.
has
(
WorkerCode
))
{
workerCode
=
getString
(
json
,
WorkerCode
,
StringUtil
.
Empty
);
workerCode
=
getString
(
json
,
WorkerCode
,
StringUtil
.
Empty
);
}
}
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/OperationDataJSON.java
View file @
7b1a7fd9
...
@@ -73,7 +73,11 @@ public class OperationDataJSON extends AcmsCommonJSON {
...
@@ -73,7 +73,11 @@ public class OperationDataJSON extends AcmsCommonJSON {
JSONObject
taskReportJson
=
taskReportList
.
getJSONObject
(
j
);
JSONObject
taskReportJson
=
taskReportList
.
getJSONObject
(
j
);
taskReportDto
.
taskKey
=
dto
.
taskKey
;
taskReportDto
.
taskKey
=
dto
.
taskKey
;
taskReportDto
.
taskReportLevel
=
taskReportJson
.
getInt
(
TaskReportLevel
);
taskReportDto
.
taskReportLevel
=
taskReportJson
.
getInt
(
TaskReportLevel
);
taskReportDto
.
enableReport
=
taskReportJson
.
getInt
(
EnableReport
);
// 報告可能区分
if
(
taskReportJson
.
has
(
EnableReport
))
{
taskReportDto
.
enableReport
=
taskReportJson
.
getInt
(
EnableReport
);
}
if
(
taskReportJson
.
has
(
TaskReportInfoId
))
{
if
(
taskReportJson
.
has
(
TaskReportInfoId
))
{
// 定期点検の場合
// 定期点検の場合
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/type/AcmsApis.java
View file @
7b1a7fd9
...
@@ -140,8 +140,6 @@ public class AcmsApis {
...
@@ -140,8 +140,6 @@ public class AcmsApis {
public
static
final
String
ApiSendTaskData
=
"taskData"
;
public
static
final
String
ApiSendTaskData
=
"taskData"
;
// 作業データ取得
// 作業データ取得
public
static
final
String
ApiGetOperationData
=
"getOperationData"
;
public
static
final
String
ApiGetOperationData
=
"getOperationData"
;
// 定期点検データ取得
public
static
final
String
ApiGetRoutineTaskData
=
"getProjectInspectData"
;
// 作業ファイル取得
// 作業ファイル取得
public
static
final
String
ApiGetTaskFile
=
"getTaskFile"
;
public
static
final
String
ApiGetTaskFile
=
"getTaskFile"
;
// コンテンツ登録
// コンテンツ登録
...
@@ -198,7 +196,7 @@ public class AcmsApis {
...
@@ -198,7 +196,7 @@ public class AcmsApis {
apiValue
=
Constant
.
ApiValue
.
nuapi
;
apiValue
=
Constant
.
ApiValue
.
nuapi
;
}
else
if
(
methodName
.
equals
(
ApiOperationList
)
||
methodName
.
equals
(
ApiWorkingGroupList
)
||
methodName
.
equals
(
ApiSendTaskData
)
||
methodName
.
equals
(
ApiGetOperationData
)
||
}
else
if
(
methodName
.
equals
(
ApiOperationList
)
||
methodName
.
equals
(
ApiWorkingGroupList
)
||
methodName
.
equals
(
ApiSendTaskData
)
||
methodName
.
equals
(
ApiGetOperationData
)
||
methodName
.
equals
(
ApiGetTaskFile
)
||
methodName
.
equals
(
ApiSceneEntry
)
||
methodName
.
equals
(
ApiTaskContentEntry
)
||
methodName
.
equals
(
ApiGetTaskFile
)
||
methodName
.
equals
(
ApiSceneEntry
)
||
methodName
.
equals
(
ApiTaskContentEntry
)
||
methodName
.
equals
(
ApiSendPushMessage
)
||
methodName
.
equals
(
ApiGetPushMessages
)
||
methodName
.
equals
(
Api
GetRoutineTaskData
)
||
methodName
.
equals
(
Api
SendRoutineTaskData
))
{
methodName
.
equals
(
ApiSendPushMessage
)
||
methodName
.
equals
(
ApiGetPushMessages
)
||
methodName
.
equals
(
ApiSendRoutineTaskData
))
{
apiValue
=
Constant
.
ApiValue
.
checkapi
;
apiValue
=
Constant
.
ApiValue
.
checkapi
;
}
}
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/ABVEnvironment.java
View file @
7b1a7fd9
...
@@ -106,8 +106,8 @@ public class ABVEnvironment {
...
@@ -106,8 +106,8 @@ public class ABVEnvironment {
public
static
final
String
CommonDirectoryFormat
=
"%s/ABook/common"
;
public
static
final
String
CommonDirectoryFormat
=
"%s/ABook/common"
;
public
static
final
String
OperationDirFormat
=
"%s/ABook/
projects
/%d"
;
public
static
final
String
OperationDirFormat
=
"%s/ABook/
operation
/%d"
;
public
static
final
String
OperationTaskKeyDirFormat
=
"%s/ABook/
projects
/%d/%s"
;
public
static
final
String
OperationTaskKeyDirFormat
=
"%s/ABook/
operation
/%d/%s"
;
public
static
final
String
PanoImageDirFormat
=
"%s/panoImage"
;
public
static
final
String
PanoImageDirFormat
=
"%s/panoImage"
;
public
static
final
String
PanoImageFileFormat
=
"%s/panoImage.zip"
;
public
static
final
String
PanoImageFileFormat
=
"%s/panoImage.zip"
;
public
static
final
String
TaskPdfDirFormat
=
"%s/taskPdf"
;
public
static
final
String
TaskPdfDirFormat
=
"%s/taskPdf"
;
...
@@ -664,7 +664,7 @@ public class ABVEnvironment {
...
@@ -664,7 +664,7 @@ public class ABVEnvironment {
/**
/**
* プロジェクトの作業ディレクトリパス
* プロジェクトの作業ディレクトリパス
* 例)root/files/ABook/
projects/[project
_id]/[task_key]
* 例)root/files/ABook/
operation/[operation
_id]/[task_key]
* @param operationId
* @param operationId
* @param taskKey
* @param taskKey
* @return
* @return
...
@@ -697,7 +697,7 @@ public class ABVEnvironment {
...
@@ -697,7 +697,7 @@ public class ABVEnvironment {
/**
/**
* 作業報告レベルのディレクトリパス
* 作業報告レベルのディレクトリパス
* 例)root/files/ABook/
projects/[project
_id]/[task_key]/[taskReportLevel]
* 例)root/files/ABook/
operation/[operation
_id]/[task_key]/[taskReportLevel]
* @param operationId
* @param operationId
* @param taskKey
* @param taskKey
* @param taskReportLevel
* @param taskReportLevel
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
View file @
7b1a7fd9
...
@@ -119,4 +119,5 @@ public class ABookKeys {
...
@@ -119,4 +119,5 @@ public class ABookKeys {
// #32926 作業報告画面改善 start
// #32926 作業報告画面改善 start
public
static
final
String
HAS_AUTHORITY
=
"hasAuthority"
;
public
static
final
String
HAS_AUTHORITY
=
"hasAuthority"
;
// #32926 作業報告画面改善 end
// #32926 作業報告画面改善 end
public
static
final
String
CLOSE_TASK_REPORT
=
"closeTaskReport"
;
}
}
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/MemberInfoDao.java
View file @
7b1a7fd9
...
@@ -72,10 +72,6 @@ public class MemberInfoDao extends AbstractDao {
...
@@ -72,10 +72,6 @@ public class MemberInfoDao extends AbstractDao {
if
(
column
!=
-
1
)
{
if
(
column
!=
-
1
)
{
dto
.
lastUpdateInfor
=
cursor
.
getString
(
column
);
dto
.
lastUpdateInfor
=
cursor
.
getString
(
column
);
}
}
column
=
cursor
.
getColumnIndex
(
"operation_auth_level"
);
if
(
column
!=
-
1
)
{
dto
.
operationAuthLevel
=
cursor
.
getInt
(
column
);
}
column
=
cursor
.
getColumnIndex
(
"worker_code"
);
column
=
cursor
.
getColumnIndex
(
"worker_code"
);
if
(
column
!=
-
1
)
{
if
(
column
!=
-
1
)
{
dto
.
workerCode
=
cursor
.
getString
(
column
);
dto
.
workerCode
=
cursor
.
getString
(
column
);
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/MMemberInfo.java
View file @
7b1a7fd9
...
@@ -32,7 +32,6 @@ public class MMemberInfo extends SQLiteTableScript {
...
@@ -32,7 +32,6 @@ public class MMemberInfo extends SQLiteTableScript {
sql
.
append
(
" , password_expiry_date DATETIME "
);
sql
.
append
(
" , password_expiry_date DATETIME "
);
sql
.
append
(
" , user_id INTEGER"
);
sql
.
append
(
" , user_id INTEGER"
);
sql
.
append
(
" , last_update_infor VARCHAR(64)"
);
sql
.
append
(
" , last_update_infor VARCHAR(64)"
);
sql
.
append
(
" , operation_auth_level INTEGER"
);
sql
.
append
(
" , worker_code TEXT"
);
sql
.
append
(
" , worker_code TEXT"
);
sql
.
append
(
" , PRIMARY KEY (login_id) "
);
sql
.
append
(
" , PRIMARY KEY (login_id) "
);
sql
.
append
(
" ) "
);
sql
.
append
(
" ) "
);
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/MemberInfoDto.java
View file @
7b1a7fd9
...
@@ -25,19 +25,18 @@ public class MemberInfoDto extends AbstractDto {
...
@@ -25,19 +25,18 @@ public class MemberInfoDto extends AbstractDto {
public
Date
lastCMSAccessDate
;
public
Date
lastCMSAccessDate
;
public
Date
passwordExpiryDate
;
public
Date
passwordExpiryDate
;
public
String
lastUpdateInfor
;
//ABookSee 1.8.1
public
String
lastUpdateInfor
;
//ABookSee 1.8.1
public
Integer
operationAuthLevel
;
public
String
workerCode
;
public
String
workerCode
;
public
RequirePasswordChangeCode
requiredPasswordChange
;
public
RequirePasswordChangeCode
requiredPasswordChange
;
@Override
@Override
public
Object
[]
getInsertValues
()
{
public
Object
[]
getInsertValues
()
{
return
new
Object
[]{
loginId
,
password
,
memberName
,
sid
,
loginStatus
,
invalidPasswordCount
,
lastLoginDate
,
lastChangePasswordDate
,
lastCMSAccessDate
,
userId
,
lastUpdateInfor
,
operationAuthLevel
,
workerCode
};
return
new
Object
[]{
loginId
,
password
,
memberName
,
sid
,
loginStatus
,
invalidPasswordCount
,
lastLoginDate
,
lastChangePasswordDate
,
lastCMSAccessDate
,
userId
,
lastUpdateInfor
,
workerCode
};
}
}
@Override
@Override
public
Object
[]
getUpdateValues
()
{
public
Object
[]
getUpdateValues
()
{
return
new
Object
[]{
password
,
memberName
,
sid
,
loginStatus
,
invalidPasswordCount
,
lastLoginDate
,
lastChangePasswordDate
,
lastCMSAccessDate
,
lastUpdateInfor
,
operationAuthLevel
,
workerCode
,
loginId
};
return
new
Object
[]{
password
,
memberName
,
sid
,
loginStatus
,
invalidPasswordCount
,
lastLoginDate
,
lastChangePasswordDate
,
lastCMSAccessDate
,
lastUpdateInfor
,
workerCode
,
loginId
};
}
}
@Override
@Override
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
View file @
7b1a7fd9
...
@@ -628,11 +628,10 @@ public class OperationLogic extends AbstractLogic {
...
@@ -628,11 +628,10 @@ public class OperationLogic extends AbstractLogic {
* @param taskReportDto
* @param taskReportDto
* @param attachedChangeFlag
* @param attachedChangeFlag
* @param dataSendFlg
* @param dataSendFlg
* @param insertFlg
* @param reportedFlg
* @param reportedFlg
* @throws IOException
* @throws IOException
*/
*/
public
void
updateRoutineTaskReport
(
long
operationId
,
long
contentId
,
TaskReportDto
taskReportDto
,
boolean
attachedChangeFlag
,
boolean
dataSendFlg
,
boolean
insertFlg
,
boolean
reportedFlg
)
throws
IOException
{
public
void
updateRoutineTaskReport
(
long
operationId
,
long
contentId
,
TaskReportDto
taskReportDto
,
boolean
attachedChangeFlag
,
boolean
dataSendFlg
,
boolean
reportedFlg
)
throws
IOException
{
taskReportDto
.
attachedFileSendFlg
=
attachedChangeFlag
;
taskReportDto
.
attachedFileSendFlg
=
attachedChangeFlag
;
taskReportDto
.
dataSendFlg
=
dataSendFlg
;
taskReportDto
.
dataSendFlg
=
dataSendFlg
;
taskReportDto
.
reportedFlag
=
reportedFlg
;
taskReportDto
.
reportedFlag
=
reportedFlg
;
...
@@ -642,7 +641,24 @@ public class OperationLogic extends AbstractLogic {
...
@@ -642,7 +641,24 @@ public class OperationLogic extends AbstractLogic {
JSONObject
taskReportJson
=
new
JSONObject
(
taskReportDto
.
jsonData
);
JSONObject
taskReportJson
=
new
JSONObject
(
taskReportDto
.
jsonData
);
JSONObject
taskJson
=
taskReportJson
.
getJSONObject
(
"task"
);
JSONObject
taskJson
=
taskReportJson
.
getJSONObject
(
"task"
);
if
(
insertFlg
)
{
List
<
TaskReportItemsDto
>
taskReportItemsDaoList
=
mTaskReportItemsDao
.
getTaskReportItemByTaskKey
(
taskReportDto
.
taskKey
,
Constant
.
TaskReportLevel
.
ReportType
);
if
(
taskReportItemsDaoList
.
size
()
>
0
)
{
// 更新
for
(
TaskReportItemsDto
taskReportItemsDto
:
taskReportItemsDaoList
)
{
try
{
String
newValue
=
taskJson
.
getString
(
taskReportItemsDto
.
itemKey
);
if
(!
newValue
.
equals
(
taskReportItemsDto
.
inputValue
))
{
// 値が異なる場合のみ、更新する
taskReportItemsDto
.
inputValue
=
newValue
;
mTaskReportItemsDao
.
updateTaskReportItems
(
taskReportItemsDto
);
}
}
catch
(
JSONException
e
)
{
// 値がStringではない場合、無視する
continue
;
}
}
}
else
{
// 登録
Iterator
taskKeys
=
taskJson
.
keys
();
Iterator
taskKeys
=
taskJson
.
keys
();
while
(
taskKeys
.
hasNext
())
{
while
(
taskKeys
.
hasNext
())
{
TaskReportItemsDto
taskReportItemsDto
=
new
TaskReportItemsDto
();
TaskReportItemsDto
taskReportItemsDto
=
new
TaskReportItemsDto
();
...
@@ -658,47 +674,15 @@ public class OperationLogic extends AbstractLogic {
...
@@ -658,47 +674,15 @@ public class OperationLogic extends AbstractLogic {
}
}
mTaskReportItemsDao
.
insertTaskReportItems
(
taskReportItemsDto
);
mTaskReportItemsDao
.
insertTaskReportItems
(
taskReportItemsDto
);
}
}
}
else
{
List
<
TaskReportItemsDto
>
taskReportItemsDaoList
=
mTaskReportItemsDao
.
getTaskReportItemByTaskKey
(
taskReportDto
.
taskKey
,
Constant
.
TaskReportLevel
.
ReportType
);
for
(
TaskReportItemsDto
taskReportItemsDto
:
taskReportItemsDaoList
)
{
try
{
String
newValue
=
taskJson
.
getString
(
taskReportItemsDto
.
itemKey
);
if
(!
newValue
.
equals
(
taskReportItemsDto
.
inputValue
))
{
// 値が異なる場合のみ、更新する
taskReportItemsDto
.
inputValue
=
newValue
;
mTaskReportItemsDao
.
updateTaskReportItems
(
taskReportItemsDto
);
}
}
catch
(
JSONException
e
)
{
// 値がStringではない場合、無視する
continue
;
}
}
}
}
}
String
strReportStartDate
=
DateTimeUtil
.
toString_yyyyMMddHHmmss_none
(
taskReportDto
.
reportStartDate
);
String
strReportStartDate
=
DateTimeUtil
.
toString_yyyyMMddHHmmss_none
(
taskReportDto
.
reportStartDate
);
String
tempDirPath
=
ABVEnvironment
.
getInstance
().
getTempTaskDirPath
(
contentId
,
taskReportDto
.
taskKey
);
String
tempDirPath
=
ABVEnvironment
.
getInstance
().
getTempTaskDirPath
(
contentId
,
taskReportDto
.
taskKey
);
String
routineTaskReportDirPath
=
ABVEnvironment
.
getInstance
().
getRoutineTaskReportDirFilePath
(
operationId
,
taskReportDto
.
taskKey
,
taskReportDto
.
taskReportId
,
strReportStartDate
);
String
routineTaskReportDirPath
=
ABVEnvironment
.
getInstance
().
getRoutineTaskReportDirFilePath
(
operationId
,
taskReportDto
.
taskKey
,
taskReportDto
.
taskReportId
,
strReportStartDate
);
if
(
insertFlg
)
{
if
(!
StringUtil
.
isNullOrEmpty
(
taskReportDto
.
jsonData
))
{
JSONObject
attachedListJson
=
(
new
JSONObject
(
taskReportDto
.
jsonData
)).
getJSONObject
(
"attached"
);
List
<
String
>
attachedFileNames
=
JSONObject
.
getValues
(
attachedListJson
);
// コピー元のファイルで、添付ファイルとして使用しないファイル削除
deleteDifferentialFile
(
tempDirPath
,
attachedFileNames
);
}
// 添付ディレクトリの移動
boolean
result
=
FileUtil
.
copy
(
tempDirPath
,
routineTaskReportDirPath
,
true
);
if
(
result
)
{
FileUtil
.
delete
(
tempDirPath
);
}
}
else
{
if
(
taskReportDto
.
attachedFileSendFlg
)
{
if
(
taskReportDto
.
attachedFileSendFlg
)
{
if
(!
StringUtil
.
isNullOrEmpty
(
taskReportDto
.
jsonData
))
{
if
(
StringUtil
.
isNullOrEmpty
(
taskReportDto
.
jsonData
))
{
//添付ファイル変更の場合、以下の処理を行う
//添付ファイル変更の場合、以下の処理を行う
JSONObject
attachedListJson
=
(
new
JSONObject
(
taskReportDto
.
jsonData
)).
getJSONObject
(
"attached"
);
JSONObject
attachedListJson
=
(
new
JSONObject
(
taskReportDto
.
jsonData
)).
getJSONObject
(
"attached"
);
List
<
String
>
attachedFileNames
=
JSONObject
.
getValues
(
attachedListJson
);
List
<
String
>
attachedFileNames
=
JSONObject
.
getValues
(
attachedListJson
);
...
@@ -707,12 +691,11 @@ public class OperationLogic extends AbstractLogic {
...
@@ -707,12 +691,11 @@ public class OperationLogic extends AbstractLogic {
// 同じファイル名が存在すれば、コピー先ファイルを削除
// 同じファイル名が存在すれば、コピー先ファイルを削除
deleteDifferentialFile
(
routineTaskReportDirPath
,
attachedFileNames
);
deleteDifferentialFile
(
routineTaskReportDirPath
,
attachedFileNames
);
}
}
}
// 添付ディレクトリの移動
// 添付ディレクトリの移動
boolean
result
=
FileUtil
.
copy
(
tempDirPath
,
routineTaskReportDirPath
,
true
);
boolean
result
=
FileUtil
.
copy
(
tempDirPath
,
routineTaskReportDirPath
,
true
);
if
(
result
)
{
if
(
result
)
{
FileUtil
.
delete
(
tempDirPath
);
FileUtil
.
delete
(
tempDirPath
);
}
}
}
}
}
}
}
...
@@ -978,7 +961,7 @@ public class OperationLogic extends AbstractLogic {
...
@@ -978,7 +961,7 @@ public class OperationLogic extends AbstractLogic {
jsonObject
.
put
(
"workerCode"
,
ABVDataCache
.
getInstance
().
getMemberInfo
().
workerCode
);
jsonObject
.
put
(
"workerCode"
,
ABVDataCache
.
getInstance
().
getMemberInfo
().
workerCode
);
// データディレクトリへの相対パス
// データディレクトリへの相対パス
jsonObject
.
put
(
"attachedPath"
,
"../../../../files/ABook/
projects
/"
+
operationId
);
jsonObject
.
put
(
"attachedPath"
,
"../../../../files/ABook/
operation
/"
+
operationId
);
jsonObject
.
put
(
"attachedMoviePath"
,
ABVEnvironment
.
getInstance
().
getAttachedMoviesFilePath
(
contentId
));
jsonObject
.
put
(
"attachedMoviePath"
,
ABVEnvironment
.
getInstance
().
getAttachedMoviesFilePath
(
contentId
));
FileUtil
.
createFile
(
contentPath
+
"/content.json"
,
jsonObject
.
toString
());
FileUtil
.
createFile
(
contentPath
+
"/content.json"
,
jsonObject
.
toString
());
...
@@ -1058,6 +1041,7 @@ public class OperationLogic extends AbstractLogic {
...
@@ -1058,6 +1041,7 @@ public class OperationLogic extends AbstractLogic {
public
void
createTaskReportJson
(
Long
operationId
,
String
contentPath
)
throws
IOException
{
public
void
createTaskReportJson
(
Long
operationId
,
String
contentPath
)
throws
IOException
{
List
<
JSONObject
>
taskReportJsonList
=
new
ArrayList
<
JSONObject
>();
List
<
JSONObject
>
taskReportJsonList
=
new
ArrayList
<
JSONObject
>();
JSONObject
taskReportJson
=
new
JSONObject
();
JSONObject
taskReportJson
=
new
JSONObject
();
OperationDto
operationDto
=
mOperationDao
.
getOperation
(
operationId
);
List
<
TaskReportDto
>
taskReportDtoList
=
mTaskReportDao
.
getTaskReportByOperationId
(
operationId
);
List
<
TaskReportDto
>
taskReportDtoList
=
mTaskReportDao
.
getTaskReportByOperationId
(
operationId
);
int
level
=
0
;
int
level
=
0
;
...
@@ -1071,11 +1055,17 @@ public class OperationLogic extends AbstractLogic {
...
@@ -1071,11 +1055,17 @@ public class OperationLogic extends AbstractLogic {
}
}
if
(
dto
.
jsonData
!=
null
&&
dto
.
jsonData
.
length
()
>
0
)
{
if
(
dto
.
jsonData
!=
null
&&
dto
.
jsonData
.
length
()
>
0
)
{
taskReportJsonList
.
add
(
new
JSONObject
(
dto
.
jsonData
).
put
(
ABookKeys
.
HAS_AUTHORITY
,
dto
.
enableReport
));
if
(
operationDto
.
reportType
==
Constant
.
ReportType
.
ReportReply
)
{
taskReportJsonList
.
add
(
new
JSONObject
(
dto
.
jsonData
).
put
(
ABookKeys
.
HAS_AUTHORITY
,
dto
.
enableReport
));
}
else
{
taskReportJsonList
.
add
(
new
JSONObject
(
dto
.
jsonData
));
}
}
else
{
}
else
{
JSONObject
emptyTaskReportJson
=
new
JSONObject
();
JSONObject
emptyTaskReportJson
=
new
JSONObject
();
emptyTaskReportJson
.
put
(
ABookKeys
.
TASK_KEY
,
dto
.
taskKey
);
emptyTaskReportJson
.
put
(
ABookKeys
.
TASK_KEY
,
dto
.
taskKey
);
emptyTaskReportJson
.
put
(
ABookKeys
.
HAS_AUTHORITY
,
dto
.
enableReport
);
if
(
operationDto
.
reportType
==
Constant
.
ReportType
.
ReportReply
)
{
emptyTaskReportJson
.
put
(
ABookKeys
.
HAS_AUTHORITY
,
dto
.
enableReport
);
}
taskReportJsonList
.
add
(
emptyTaskReportJson
);
taskReportJsonList
.
add
(
emptyTaskReportJson
);
}
}
...
@@ -1096,6 +1086,12 @@ public class OperationLogic extends AbstractLogic {
...
@@ -1096,6 +1086,12 @@ public class OperationLogic extends AbstractLogic {
FileUtil
.
createFile
(
contentPath
+
"/"
+
ABookKeys
.
TASK_REPORT
+
".json"
,
taskReportJson
.
toString
());
FileUtil
.
createFile
(
contentPath
+
"/"
+
ABookKeys
.
TASK_REPORT
+
".json"
,
taskReportJson
.
toString
());
}
}
/**
* 定期点検用のJSON作成
* @param operationId
* @param contentPath
* @throws IOException
*/
public
void
createRoutineTaskReportJson
(
Long
operationId
,
String
contentPath
)
throws
IOException
{
public
void
createRoutineTaskReportJson
(
Long
operationId
,
String
contentPath
)
throws
IOException
{
List
<
JSONObject
>
taskReportJsonList
=
new
ArrayList
<
JSONObject
>();
List
<
JSONObject
>
taskReportJsonList
=
new
ArrayList
<
JSONObject
>();
JSONObject
taskReportJsonRoot
=
new
JSONObject
();
JSONObject
taskReportJsonRoot
=
new
JSONObject
();
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/activity/ABVContentViewActivity.java
View file @
7b1a7fd9
...
@@ -860,65 +860,74 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -860,65 +860,74 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
if
(
abookCheckParam
.
containsKey
(
ABookKeys
.
TASK_REPORT_LEVEL
))
{
if
(
abookCheckParam
.
containsKey
(
ABookKeys
.
TASK_REPORT_LEVEL
))
{
taskReportLevel
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT_LEVEL
));
// 作業報告レベル
taskReportLevel
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT_LEVEL
));
// 作業報告レベル
}
}
int
taskReportId
=
0
;
mAddReport
=
true
;
String
reportStartDate
=
""
;
if
(
abookCheckParam
.
containsKey
(
ABookKeys
.
ADD_REPORT
))
{
mAddReport
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
ADD_REPORT
))
>
0
?
true
:
false
;
}
if
(
operationDto
.
reportType
==
Constant
.
OperationReportType
.
ROUTINE_TASK
&&
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT_ID
)
!=
null
&&
abookCheckParam
.
get
(
ABookKeys
.
REPORT_START_DATE
)
!=
null
)
{
int
taskReportId
=
0
;
taskReportId
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT_ID
));
String
reportStartDate
=
""
;
reportStartDate
=
abookCheckParam
.
get
(
ABookKeys
.
REPORT_START_DATE
);
}
if
(
operationDto
.
reportType
==
Constant
.
OperationReportType
.
ROUTINE_TASK
&&
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT_ID
)
!=
null
&&
abookCheckParam
.
get
(
ABookKeys
.
REPORT_START_DATE
)
!=
null
)
{
taskReportId
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT_ID
));
reportStartDate
=
abookCheckParam
.
get
(
ABookKeys
.
REPORT_START_DATE
);
}
if
(
StringUtil
.
equalsAny
(
mCmd
,
ABookKeys
.
CMD_MOVE_HOT_SPOT
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
,
if
(
StringUtil
.
equalsAny
(
mCmd
,
ABookKeys
.
CMD_MOVE_HOT_SPOT
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
,
ABookKeys
.
CMD_DELETE_TASK_REPORT
,
ABookKeys
.
CMD_CANCEL_TASK_REPORT
,
ABookKeys
.
CMD_LOCAL_SAVE_TASK_REPORT
))
{
ABookKeys
.
CMD_DELETE_TASK_REPORT
,
ABookKeys
.
CMD_CANCEL_TASK_REPORT
,
ABookKeys
.
CMD_LOCAL_SAVE_TASK_REPORT
))
{
boolean
isError
=
false
;
boolean
isError
=
false
;
try
{
try
{
if
(
StringUtil
.
equalsAny
(
mCmd
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
))
{
if
(
StringUtil
.
equalsAny
(
mCmd
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
))
{
showProgressPopup
(
getString
(
R
.
string
.
file_initialization
));
showProgressPopup
(
getString
(
R
.
string
.
file_initialization
));
}
}
if
(
isOperationPdf
&&
operationTaskDto
!=
null
&&
StringUtil
.
equalsAny
(
mCmd
,
if
(
isOperationPdf
&&
operationTaskDto
!=
null
&&
StringUtil
.
equalsAny
(
mCmd
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_INSERT_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
,
ABookKeys
.
CMD_UPDATE_TASK_REPORT
,
ABookKeys
.
CMD_MOVE_HOT_SPOT
,
ABookKeys
.
CMD_MOVE_HOT_SPOT
,
ABookKeys
.
CMD_LOCAL_SAVE_TASK_REPORT
))
{
ABookKeys
.
CMD_LOCAL_SAVE_TASK_REPORT
))
{
String
taskCode
=
""
;
String
taskCode
=
""
;
if
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT
)
!=
null
)
{
if
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT
)
!=
null
)
{
JSONObject
tastReportJson
=
new
JSONObject
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT
));
JSONObject
tastReportJson
=
new
JSONObject
(
abookCheckParam
.
get
(
ABookKeys
.
TASK_REPORT
));
JSONObject
taskJson
=
tastReportJson
.
getJSONObject
(
ABookKeys
.
TASK
);
JSONObject
taskJson
=
tastReportJson
.
getJSONObject
(
ABookKeys
.
TASK
);
Iterator
taskKeys
=
taskJson
.
keys
();
Iterator
taskKeys
=
taskJson
.
keys
();
while
(
taskKeys
.
hasNext
())
{
while
(
taskKeys
.
hasNext
())
{
String
itemKey
=
(
String
)
taskKeys
.
next
();
String
itemKey
=
(
String
)
taskKeys
.
next
();
if
(
itemKey
.
startsWith
(
"q_1_"
))
{
if
(
itemKey
.
startsWith
(
"q_1_"
))
{
taskCode
=
taskJson
.
getString
(
itemKey
);
taskCode
=
taskJson
.
getString
(
itemKey
);
}
}
}
}
}
}
if
(
abookCheckParam
.
get
(
ABookKeys
.
HOT_SPOT
)
!=
null
)
{
if
(
abookCheckParam
.
get
(
ABookKeys
.
HOT_SPOT
)
!=
null
)
{
JSONObject
hotSpot
=
new
JSONObject
(
abookCheckParam
.
get
(
ABookKeys
.
HOT_SPOT
));
JSONObject
hotSpot
=
new
JSONObject
(
abookCheckParam
.
get
(
ABookKeys
.
HOT_SPOT
));
hotSpot
.
put
(
ABookKeys
.
SCENE_ID
,
mCurrentPageNumber
+
1
);
hotSpot
.
put
(
ABookKeys
.
SCENE_ID
,
mCurrentPageNumber
+
1
);
hotSpot
.
put
(
ABookKeys
.
PDF_X
,
operationTaskDto
.
pdfX
);
hotSpot
.
put
(
ABookKeys
.
PDF_X
,
operationTaskDto
.
pdfX
);
hotSpot
.
put
(
ABookKeys
.
PDF_Y
,
operationTaskDto
.
pdfY
);
hotSpot
.
put
(
ABookKeys
.
PDF_Y
,
operationTaskDto
.
pdfY
);
if
(!
StringUtil
.
isNullOrEmpty
(
taskCode
))
{
if
(!
StringUtil
.
isNullOrEmpty
(
taskCode
))
{
hotSpot
.
put
(
ABookKeys
.
TASK_CODE
,
taskCode
);
hotSpot
.
put
(
ABookKeys
.
TASK_CODE
,
taskCode
);
}
}
abookCheckParam
.
put
(
ABookKeys
.
HOT_SPOT
,
hotSpot
.
toString
());
abookCheckParam
.
put
(
ABookKeys
.
HOT_SPOT
,
hotSpot
.
toString
());
}
}
}
}
final
Callback
finishCallback
=
new
Callback
()
{
final
Callback
finishCallback
=
new
Callback
()
{
@Override
@Override
public
Object
callback
(
Object
ret
)
{
public
Object
callback
(
Object
ret
)
{
final
boolean
isError
=
(
boolean
)
ret
;
final
boolean
isError
=
(
boolean
)
ret
;
closeProgressPopup
();
closeProgressPopup
();
// #32861 作業情報追加 start
if
(
mAddReport
)
{
afterABookCheckApi
(
mCmd
,
mTaskKey
,
isNetWorkError
(
isError
),
""
,
null
,
isOperationPdf
());
// #32861 作業情報追加 start
// #32861 作業情報追加 end
afterABookCheckApi
(
mCmd
,
mTaskKey
,
isNetWorkError
(
isError
),
""
,
null
,
isOperationPdf
());
// #32861 作業情報追加 end
}
else
{
finish
();
}
return
null
;
return
null
;
}
}
};
};
...
@@ -928,22 +937,22 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -928,22 +937,22 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
operationDto
.
reportType
,
finishCallback
,
operationDto
.
reportType
,
finishCallback
,
taskReportLevel
);
taskReportLevel
);
}
catch
(
Exception
e
)
{
}
catch
(
Exception
e
)
{
Logger
.
e
(
TAG
,
"doABookCheckParam error"
,
e
);
Logger
.
e
(
TAG
,
"doABookCheckParam error"
,
e
);
}
}
if
(
isOperationPdf
)
{
if
(
isOperationPdf
)
{
onActionOperationPdfWebView
(
abookCheckParam
,
operationTaskDto
);
onActionOperationPdfWebView
(
abookCheckParam
,
operationTaskDto
);
}
}
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_CHANGE_DISPLAY_STATUS
))
{
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_CHANGE_DISPLAY_STATUS
))
{
mStatusCode
=
Integer
.
valueOf
(
abookCheckParam
.
get
(
ABookKeys
.
STATUS_CODE
));
mStatusCode
=
Integer
.
valueOf
(
abookCheckParam
.
get
(
ABookKeys
.
STATUS_CODE
));
commonConfigureHeader
();
commonConfigureHeader
();
if
(
isOperationPdf
)
{
if
(
isOperationPdf
)
{
onActionOperationPdfWebView
(
abookCheckParam
,
operationTaskDto
);
onActionOperationPdfWebView
(
abookCheckParam
,
operationTaskDto
);
}
}
}
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
);
getAttachedDataUrl
();
getAttachedDataUrl
();
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_SHOW_DIRECTION_OZD
))
{
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_SHOW_DIRECTION_OZD
))
{
mReportFileName
=
abookCheckParam
.
get
(
ABookKeys
.
REPORT_FILE_NAME
);
mReportFileName
=
abookCheckParam
.
get
(
ABookKeys
.
REPORT_FILE_NAME
);
ActivityHandlingHelper
.
getInstance
().
startOZViewerActivity
(
this
,
mOperationId
,
getContentId
(),
mTaskKey
,
false
,
true
,
mReportFileName
);
ActivityHandlingHelper
.
getInstance
().
startOZViewerActivity
(
this
,
mOperationId
,
getContentId
(),
mTaskKey
,
false
,
true
,
mReportFileName
);
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_PREVIEW_DIRECTION_OZD
))
{
}
else
if
(
mCmd
.
equals
(
ABookKeys
.
CMD_PREVIEW_DIRECTION_OZD
))
{
...
@@ -955,9 +964,6 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -955,9 +964,6 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
if
(
abookCheckParam
.
containsKey
(
ABookKeys
.
LOCAL_SAVE
))
{
if
(
abookCheckParam
.
containsKey
(
ABookKeys
.
LOCAL_SAVE
))
{
mLocalSave
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
LOCAL_SAVE
))
>
0
?
true
:
false
;
mLocalSave
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
LOCAL_SAVE
))
>
0
?
true
:
false
;
}
}
if
(
abookCheckParam
.
containsKey
(
ABookKeys
.
ADD_REPORT
))
{
mAddReport
=
Integer
.
parseInt
(
abookCheckParam
.
get
(
ABookKeys
.
ADD_REPORT
))
>
0
?
true
:
false
;
}
// #32926 作業報告画面改善 start
// #32926 作業報告画面改善 start
ActivityHandlingHelper
.
getInstance
().
startOZViewerActivity
(
this
,
mOperationId
,
getContentId
(),
mTaskKey
,
false
,
taskReportId
,
reportStartDate
,
mReportFileName
,
mLocalSave
,
mAddReport
,
taskReportLevel
);
ActivityHandlingHelper
.
getInstance
().
startOZViewerActivity
(
this
,
mOperationId
,
getContentId
(),
mTaskKey
,
false
,
taskReportId
,
reportStartDate
,
mReportFileName
,
mLocalSave
,
mAddReport
,
taskReportLevel
);
// #32926 作業報告画面改善 end
// #32926 作業報告画面改善 end
...
@@ -1252,7 +1258,6 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
...
@@ -1252,7 +1258,6 @@ public abstract class ABVContentViewActivity extends ABVAuthenticatedActivity {
// 押したボタンによってHTML側の処理を行う
// 押したボタンによってHTML側の処理を行う
if
(
this
instanceof
CheckOZDViewActivity
)
{
if
(
this
instanceof
CheckOZDViewActivity
)
{
if
(
mButtonStatus
==
R
.
id
.
btn_close
)
{
if
(
mButtonStatus
==
R
.
id
.
btn_close
)
{
super
.
finish
();
ozdCancelProcess
();
// 閉じる
ozdCancelProcess
();
// 閉じる
}
else
if
(
mButtonStatus
==
R
.
id
.
btn_temp_save
)
{
}
else
if
(
mButtonStatus
==
R
.
id
.
btn_temp_save
)
{
ozdLocalSaveProcess
();
// 一時保存
ozdLocalSaveProcess
();
// 一時保存
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/common/appinfo/AppDefType.java
View file @
7b1a7fd9
...
@@ -131,9 +131,7 @@ public interface AppDefType {
...
@@ -131,9 +131,7 @@ public interface AppDefType {
interface
PushMessageKey
{
interface
PushMessageKey
{
String
message
=
"message"
;
String
message
=
"message"
;
String
data
=
"data"
;
String
data
=
"data"
;
// TODO
String
operationId
=
"operationId"
;
// サーバ作業後、対応必要「project」→「operation」
String
operationId
=
"projectId"
;
}
}
interface
UrlPattern
{
interface
UrlPattern
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
View file @
7b1a7fd9
...
@@ -56,7 +56,6 @@ import jp.agentec.abook.abv.bl.acms.client.AcmsClient;
...
@@ -56,7 +56,6 @@ import jp.agentec.abook.abv.bl.acms.client.AcmsClient;
import
jp.agentec.abook.abv.bl.acms.client.json.OperationDataJSON
;
import
jp.agentec.abook.abv.bl.acms.client.json.OperationDataJSON
;
import
jp.agentec.abook.abv.bl.acms.client.parameters.GetOperationDataParameters
;
import
jp.agentec.abook.abv.bl.acms.client.parameters.GetOperationDataParameters
;
import
jp.agentec.abook.abv.bl.acms.type.DownloadStatusType
;
import
jp.agentec.abook.abv.bl.acms.type.DownloadStatusType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationAuthLevel
;
import
jp.agentec.abook.abv.bl.acms.type.OperationType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationType
;
import
jp.agentec.abook.abv.bl.common.ABVEnvironment
;
import
jp.agentec.abook.abv.bl.common.ABVEnvironment
;
import
jp.agentec.abook.abv.bl.common.Callback
;
import
jp.agentec.abook.abv.bl.common.Callback
;
...
@@ -152,7 +151,6 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -152,7 +151,6 @@ public class OperationListActivity extends ABVUIActivity {
private
TaskDao
mTaskDao
=
AbstractDao
.
getDao
(
TaskDao
.
class
);
private
TaskDao
mTaskDao
=
AbstractDao
.
getDao
(
TaskDao
.
class
);
private
PushMessageLogic
mPushMessageLogic
=
AbstractLogic
.
getLogic
(
PushMessageLogic
.
class
);
private
PushMessageLogic
mPushMessageLogic
=
AbstractLogic
.
getLogic
(
PushMessageLogic
.
class
);
private
Integer
mOperationAuthLevel
=
ABVDataCache
.
getInstance
().
getMemberInfo
().
operationAuthLevel
;
private
ImageView
mPanoCotnentImageView
;
private
ImageView
mPanoCotnentImageView
;
private
TextView
mPanoContentNameTextView
;
private
TextView
mPanoContentNameTextView
;
...
@@ -595,19 +593,13 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -595,19 +593,13 @@ public class OperationListActivity extends ABVUIActivity {
mOperationLogic
.
createJsonForOpenABookCheckPano
(
operationDto
.
operationId
,
operationDto
.
contentId
,
contentPath
);
mOperationLogic
.
createJsonForOpenABookCheckPano
(
operationDto
.
operationId
,
operationDto
.
contentId
,
contentPath
);
mOperationLogic
.
createJsonForOperationContent
(
operationDto
.
operationId
,
contentPath
,
operationDto
.
reportType
==
Constant
.
OperationReportType
.
ROUTINE_TASK
);
mOperationLogic
.
createJsonForOperationContent
(
operationDto
.
operationId
,
contentPath
,
operationDto
.
reportType
==
Constant
.
OperationReportType
.
ROUTINE_TASK
);
if
(
operationDto
.
reportType
==
Constant
.
OperationReportType
.
ROUTINE_TASK
)
{
mOperationLogic
.
createJsonForRoutineTaskReport
(
operationDto
.
reportCycle
,
operationDto
.
enableReportUpdate
,
mOperationLogic
.
getLastRoutineTaskReportData
(
operationDto
.
operationId
).
taskReportId
,
contentPath
);
}
// サーバ作業後、対応必要
// サーバ作業後、対応必要
StringBuffer
path
=
new
StringBuffer
();
StringBuffer
path
=
new
StringBuffer
();
path
.
append
(
contentPath
);
path
.
append
(
contentPath
);
// #32926 作業報告画面改善 start
// #32926 作業報告画面改善 start
path
.
append
(
"/index.html?app=android"
);
path
.
append
(
"/index.html?app=android"
);
path
.
append
(
"&view_mode="
+
mOperationAuthLevel
);
path
.
append
(
"&report_type="
+
operationDto
.
reportType
);
// 作業報告タイプ : 0:報告 1:定期点検 2:報告(回答)
path
.
append
(
"&report_type="
+
operationDto
.
reportType
);
// 作業報告タイプ : 0:報告 1:定期点検 2:報告(回答)
path
.
append
(
"&mobile_flg="
+
(
isNormalSize
()
?
"1"
:
"0"
));
// ScreenType
path
.
append
(
"&mobile_flg="
+
(
isNormalSize
()
?
"1"
:
"0"
));
// ScreenType
path
.
append
(
"&operation_type="
+
operationDto
.
operationType
);
// 作業タイプ : 0:リスト、1:図面、2:360°
Logger
.
d
(
TAG
,
"path : "
+
path
);
Logger
.
d
(
TAG
,
"path : "
+
path
);
// #32926 作業報告画面改善 end
// #32926 作業報告画面改善 end
...
@@ -773,11 +765,11 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -773,11 +765,11 @@ public class OperationListActivity extends ABVUIActivity {
}
}
public
void
onClickShowHelpView
(
View
v
)
{
public
void
onClickShowHelpView
(
View
v
)
{
if
(
mOperationAuthLevel
==
OperationAuthLevel
.
OPERATION_INSTRUCTOR
)
{
//
if (mOperationAuthLevel == OperationAuthLevel.OPERATION_INSTRUCTOR) {
showHelpViewDialog
(
Constant
.
HelpViewType
.
OperationListDirector
);
showHelpViewDialog
(
Constant
.
HelpViewType
.
OperationListDirector
);
}
else
{
//
} else {
showHelpViewDialog
(
Constant
.
HelpViewType
.
OperationListReporter
);
showHelpViewDialog
(
Constant
.
HelpViewType
.
OperationListReporter
);
}
//
}
}
}
/**
/**
...
@@ -878,7 +870,7 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -878,7 +870,7 @@ public class OperationListActivity extends ABVUIActivity {
if
(
isExistsTaskReportInList
(
localTaskReportList
,
taskReportDto
,
true
))
{
if
(
isExistsTaskReportInList
(
localTaskReportList
,
taskReportDto
,
true
))
{
// 報告データが存在すると作業報告を更新する
// 報告データが存在すると作業報告を更新する
if
(
taskReportDto
.
jsonData
!=
null
)
{
if
(
taskReportDto
.
jsonData
!=
null
)
{
mOperationLogic
.
updateRoutineTaskReport
(
serverTaskDto
.
operationId
,
operationContentDto
.
contentId
,
taskReportDto
,
false
,
false
,
false
,
false
);
mOperationLogic
.
updateRoutineTaskReport
(
serverTaskDto
.
operationId
,
operationContentDto
.
contentId
,
taskReportDto
,
false
,
false
,
false
);
}
}
}
else
{
}
else
{
if
(
taskReportDto
.
jsonData
!=
null
)
{
if
(
taskReportDto
.
jsonData
!=
null
)
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/AbstractOperationAdapter.java
View file @
7b1a7fd9
...
@@ -21,7 +21,6 @@ import jp.agentec.abook.abv.launcher.android.R;
...
@@ -21,7 +21,6 @@ import jp.agentec.abook.abv.launcher.android.R;
public
abstract
class
AbstractOperationAdapter
extends
BaseAdapter
{
public
abstract
class
AbstractOperationAdapter
extends
BaseAdapter
{
protected
AbstractOperationListAdapterListener
listener
;
protected
AbstractOperationListAdapterListener
listener
;
protected
List
<
OperationDto
>
listItem
=
new
ArrayList
<>();
// NullPointException防止
protected
List
<
OperationDto
>
listItem
=
new
ArrayList
<>();
// NullPointException防止
protected
Integer
mOperationAuthLevel
=
ABVDataCache
.
getInstance
().
getMemberInfo
().
operationAuthLevel
;
protected
ContentDao
mContentDao
=
AbstractDao
.
getDao
(
ContentDao
.
class
);
protected
ContentDao
mContentDao
=
AbstractDao
.
getDao
(
ContentDao
.
class
);
public
interface
AbstractOperationListAdapterListener
{
public
interface
AbstractOperationListAdapterListener
{
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/OperationListAdapter.java
View file @
7b1a7fd9
...
@@ -11,7 +11,6 @@ import android.widget.TextView;
...
@@ -11,7 +11,6 @@ import android.widget.TextView;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
import
jp.agentec.abook.abv.bl.acms.type.OperationAuthLevel
;
import
jp.agentec.abook.abv.bl.acms.type.OperationButtonType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationButtonType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationType
;
import
jp.agentec.abook.abv.bl.common.Constant
;
import
jp.agentec.abook.abv.bl.common.Constant
;
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/adapter/OperationPanelAdapter.java
View file @
7b1a7fd9
...
@@ -10,7 +10,6 @@ import android.widget.TextView;
...
@@ -10,7 +10,6 @@ import android.widget.TextView;
import
java.util.List
;
import
java.util.List
;
import
jp.agentec.abook.abv.bl.acms.type.OperationAuthLevel
;
import
jp.agentec.abook.abv.bl.acms.type.OperationButtonType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationButtonType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationType
;
import
jp.agentec.abook.abv.bl.acms.type.OperationType
;
import
jp.agentec.abook.abv.bl.common.Constant
;
import
jp.agentec.abook.abv.bl.common.Constant
;
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ABookCheckWebViewHelper.java
View file @
7b1a7fd9
...
@@ -73,17 +73,21 @@ public class ABookCheckWebViewHelper extends ABookHelper {
...
@@ -73,17 +73,21 @@ public class ABookCheckWebViewHelper extends ABookHelper {
public
void
doABookCheckParam
(
ABVContentViewActivity
context
,
String
cmd
,
String
taskKey
,
int
enableReportHistory
,
Map
<
String
,
String
>
param
,
long
operationId
,
String
contentPath
,
long
contentId
,
int
reportType
,
Callback
finishCallback
,
int
taskReportLevel
)
throws
IOException
{
public
void
doABookCheckParam
(
ABVContentViewActivity
context
,
String
cmd
,
String
taskKey
,
int
enableReportHistory
,
Map
<
String
,
String
>
param
,
long
operationId
,
String
contentPath
,
long
contentId
,
int
reportType
,
Callback
finishCallback
,
int
taskReportLevel
)
throws
IOException
{
int
taskReportSendId
=
0
;
int
taskReportSendId
=
0
;
mFinishCallback
=
finishCallback
;
mFinishCallback
=
finishCallback
;
boolean
isAddReport
=
false
;
if
(
param
.
containsKey
(
ABookKeys
.
ADD_REPORT
))
{
isAddReport
=
Integer
.
parseInt
(
param
.
get
(
ABookKeys
.
ADD_REPORT
))
>
0
?
true
:
false
;
}
switch
(
cmd
)
{
switch
(
cmd
)
{
case
ABookKeys
.
CMD_INSERT_TASK_REPORT
:
case
ABookKeys
.
CMD_INSERT_TASK_REPORT
:
insertOrUpdateTaskReport
(
taskKey
,
enableReportHistory
,
operationId
,
contentId
,
param
,
contentPath
,
true
,
reportType
,
taskReportLevel
);
case
ABookKeys
.
CMD_UPDATE_TASK_REPORT
:
insertOrUpdateTaskReport
(
taskKey
,
enableReportHistory
,
operationId
,
contentId
,
param
,
contentPath
,
reportType
,
taskReportLevel
,
true
);
copyTaskAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportLevel
);
copyTaskAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportLevel
);
sendTaskData
(
context
,
operationId
,
taskKey
,
taskReportLevel
);
sendTaskData
(
context
,
operationId
,
taskKey
,
taskReportLevel
);
break
;
break
;
case
ABookKeys
.
CMD_
UPDAT
E_TASK_REPORT
:
case
ABookKeys
.
CMD_
LOCAL_SAV
E_TASK_REPORT
:
insertOrUpdateTaskReport
(
taskKey
,
enableReportHistory
,
operationId
,
contentId
,
param
,
contentPath
,
false
,
reportType
,
taskReportLevel
);
insertOrUpdateTaskReport
(
taskKey
,
enableReportHistory
,
operationId
,
contentId
,
param
,
contentPath
,
reportType
,
taskReportLevel
,
false
);
copyTaskAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportLevel
);
copyTaskAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportLevel
);
sendTaskData
(
context
,
operationId
,
taskKey
,
taskReportLevel
);
mFinishCallback
.
callback
(
true
);
break
;
break
;
case
ABookKeys
.
CMD_DELETE_TASK_REPORT
:
case
ABookKeys
.
CMD_DELETE_TASK_REPORT
:
int
taskReportId
=
0
;
int
taskReportId
=
0
;
...
@@ -271,12 +275,11 @@ public class ABookCheckWebViewHelper extends ABookHelper {
...
@@ -271,12 +275,11 @@ public class ABookCheckWebViewHelper extends ABookHelper {
* @param contentId
* @param contentId
* @param param
* @param param
* @param contentPath
* @param contentPath
* @param insertFlg
* @param reportType
* @param reportType
* @param taskReportLevel
* @param taskReportLevel
* @throws IOException
* @throws IOException
*/
*/
private
void
insertOrUpdateTaskReport
(
String
taskKey
,
int
enableReportHistory
,
long
operationId
,
long
contentId
,
Map
<
String
,
String
>
param
,
String
contentPath
,
boolean
insertFlg
,
int
reportType
,
int
taskReportLevel
)
throws
IOException
{
private
void
insertOrUpdateTaskReport
(
String
taskKey
,
int
enableReportHistory
,
long
operationId
,
long
contentId
,
Map
<
String
,
String
>
param
,
String
contentPath
,
int
reportType
,
int
taskReportLevel
,
boolean
dataSendFlg
)
throws
IOException
{
int
taskReportSendId
=
0
;
int
taskReportSendId
=
0
;
boolean
attachedChangeFlag
=
param
.
get
(
ABookKeys
.
ATTACHED_CHANGE_FLAG
).
equals
(
"1"
)
?
true
:
false
;
boolean
attachedChangeFlag
=
param
.
get
(
ABookKeys
.
ATTACHED_CHANGE_FLAG
).
equals
(
"1"
)
?
true
:
false
;
String
taskReport
=
param
.
get
(
ABookKeys
.
TASK_REPORT
);
String
taskReport
=
param
.
get
(
ABookKeys
.
TASK_REPORT
);
...
@@ -291,34 +294,38 @@ public class ABookCheckWebViewHelper extends ABookHelper {
...
@@ -291,34 +294,38 @@ public class ABookCheckWebViewHelper extends ABookHelper {
TaskReportDto
taskReportDto
=
mOperationLogic
.
getRoutineTaskReportUtc
(
taskKey
,
taskReportId
,
reportStartDate
);
TaskReportDto
taskReportDto
=
mOperationLogic
.
getRoutineTaskReportUtc
(
taskKey
,
taskReportId
,
reportStartDate
);
taskReportDto
.
jsonData
=
taskReport
;
taskReportDto
.
jsonData
=
taskReport
;
mOperationLogic
.
updateRoutineTaskReport
(
operationId
,
contentId
,
taskReportDto
,
attachedChangeFlag
,
true
,
true
);
mOperationLogic
.
updateRoutineTaskReport
(
operationId
,
contentId
,
taskReportDto
,
attachedChangeFlag
,
true
,
insertFlg
,
true
);
mOperationLogic
.
createJsonForOperationContent
(
operationId
,
contentPath
,
true
);
mOperationLogic
.
createJsonForOperationContent
(
operationId
,
contentPath
,
true
);
copyRoutineTaskReportAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportId
,
reportStartDate
);
copyRoutineTaskReportAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportId
,
reportStartDate
);
}
else
{
}
else
{
TaskReportDto
taskReportDto
=
mOperationLogic
.
getTaskReport
(
taskKey
,
taskReportLevel
);
if
(
taskReportDto
!=
null
)
{
// 更新
if
(
taskReportDto
.
taskReportLevel
==
Constant
.
TaskReportLevel
.
ReportType
)
{
mOperationLogic
.
updateTaskReport
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
param
.
get
(
ABookKeys
.
HOT_SPOT
),
null
,
attachedChangeFlag
,
dataSendFlg
);
}
else
{
mOperationLogic
.
updateTaskReportReply
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
null
,
attachedChangeFlag
,
dataSendFlg
);
}
}
else
{
// 登録
if
(
taskReportLevel
==
Constant
.
TaskReportLevel
.
ReportType
)
{
if
(
taskReportLevel
==
Constant
.
TaskReportLevel
.
ReportType
)
{
String
hotSpotInfo
=
param
.
get
(
ABookKeys
.
HOT_SPOT
);
mOperationLogic
.
insertTaskReport
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
param
.
get
(
ABookKeys
.
HOT_SPOT
),
null
,
attachedChangeFlag
,
dataSendFlg
);
if
(
insertFlg
)
{
mOperationLogic
.
insertTaskReport
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
hotSpotInfo
,
null
,
attachedChangeFlag
,
true
);
}
else
{
mOperationLogic
.
updateTaskReport
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
hotSpotInfo
,
null
,
attachedChangeFlag
,
true
);
}
}
else
{
}
else
{
if
(
insertFlg
)
{
mOperationLogic
.
insertTaskReportReply
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
null
,
attachedChangeFlag
,
dataSendFlg
);
mOperationLogic
.
insertTaskReportReply
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
null
,
attachedChangeFlag
,
true
);
}
else
{
mOperationLogic
.
updateTaskReportReply
(
taskKey
,
operationId
,
contentId
,
Constant
.
EnableReport
.
YES
,
taskReportJson
,
null
,
attachedChangeFlag
,
true
);
}
}
}
}
mOperationLogic
.
createJsonForOperationContent
(
operationId
,
contentPath
,
false
);
mOperationLogic
.
createJsonForOperationContent
(
operationId
,
contentPath
,
false
);
copyTaskAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportLevel
);
copyTaskAttachedMovie
(
operationId
,
contentId
,
taskKey
,
taskReportLevel
);
}
}
if
(
enableReportHistory
==
Constant
.
EnableReportHistory
.
Invalid
)
{
if
(
dataSendFlg
)
{
//データ無い場合は中でinsertされる
if
(
enableReportHistory
==
Constant
.
EnableReportHistory
.
Invalid
)
{
taskReportSendId
=
mOperationLogic
.
updateTaskReportSend
(
taskKey
,
taskReportId
,
reportStartDate
,
taskReportJson
,
false
);
//データ無い場合は中でinsertされる
}
else
{
taskReportSendId
=
mOperationLogic
.
updateTaskReportSend
(
taskKey
,
taskReportId
,
reportStartDate
,
taskReportJson
,
false
);
taskReportSendId
=
mOperationLogic
.
insertTaskReportSend
(
taskKey
,
taskReportId
,
reportStartDate
,
taskReportJson
,
false
);
}
else
{
taskReportSendId
=
mOperationLogic
.
insertTaskReportSend
(
taskKey
,
taskReportId
,
reportStartDate
,
taskReportJson
,
false
);
}
}
}
// #32926 作業報告画面改善 start
// #32926 作業報告画面改善 start
...
@@ -348,7 +355,7 @@ public class ABookCheckWebViewHelper extends ABookHelper {
...
@@ -348,7 +355,7 @@ public class ABookCheckWebViewHelper extends ABookHelper {
/**
/**
* 定期点検
* 定期点検
* /.../files/ABook/
project/{project
Id}/{taskKey}/report/{taskReportId}/{reportStartDate}/*.(mov,mp4)を
* /.../files/ABook/
operation/{operation
Id}/{taskKey}/report/{taskReportId}/{reportStartDate}/*.(mov,mp4)を
* /.../cache/{contentId}/attachedMovie/{taskKey}/report/{taskReportId}/{reportStartDate}/*.(mov,mp4)にコピー
* /.../cache/{contentId}/attachedMovie/{taskKey}/report/{taskReportId}/{reportStartDate}/*.(mov,mp4)にコピー
* @param operationId
* @param operationId
* @param contentId
* @param contentId
...
@@ -384,7 +391,7 @@ public class ABookCheckWebViewHelper extends ABookHelper {
...
@@ -384,7 +391,7 @@ public class ABookCheckWebViewHelper extends ABookHelper {
}
}
/**
/**
* /.../files/ABook/
project/{project
Id}/{taskKey}/{taskType}/{taskReportLevel}/*.(mov,mp4)を
* /.../files/ABook/
operation/{operation
Id}/{taskKey}/{taskType}/{taskReportLevel}/*.(mov,mp4)を
* /.../cache/{contentId}/attachedMovie/{taskKey}/{taskType}/{taskReportLevel}/*.(mov,mp4)にコピー
* /.../cache/{contentId}/attachedMovie/{taskKey}/{taskType}/{taskReportLevel}/*.(mov,mp4)にコピー
*
*
* @param operationId
* @param operationId
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/HTMLXWalkWebViewActivity.java
View file @
7b1a7fd9
...
@@ -96,7 +96,7 @@ public class HTMLXWalkWebViewActivity extends ParentWebViewActivity {
...
@@ -96,7 +96,7 @@ public class HTMLXWalkWebViewActivity extends ParentWebViewActivity {
boolean
isUpdate
=
intent
.
getBooleanExtra
(
"isUpdate"
,
false
);
boolean
isUpdate
=
intent
.
getBooleanExtra
(
"isUpdate"
,
false
);
final
String
url
=
intent
.
getStringExtra
(
"LINKURL"
);
// LinkURL
final
String
url
=
intent
.
getStringExtra
(
"LINKURL"
);
// LinkURL
mOperationId
=
intent
.
getLongExtra
(
ABookKeys
.
OPERATION_ID
,
-
1
);
//
Project
Id
mOperationId
=
intent
.
getLongExtra
(
ABookKeys
.
OPERATION_ID
,
-
1
);
//
Operation
Id
// ***** WebViewセット
// ***** WebViewセット
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/view/PageView.java
View file @
7b1a7fd9
...
@@ -51,13 +51,13 @@ public class PageView extends ImageView {
...
@@ -51,13 +51,13 @@ public class PageView extends ImageView {
protected
GestureDetector
mGestureDetector
;
protected
GestureDetector
mGestureDetector
;
protected
ScaleGestureDetector
mScaleDetector
=
null
;
protected
ScaleGestureDetector
mScaleDetector
=
null
;
private
boolean
is
Project
Pdf
;
private
boolean
is
Operation
Pdf
;
public
PageView
(
Context
context
)
{
public
PageView
(
Context
context
)
{
super
(
context
);
super
(
context
);
}
}
public
PageView
(
Context
context
,
Size
pageSize
,
int
pageNumber
,
int
displayWidth
,
int
displayHeight
,
RelativeLayout
pageLayout
,
boolean
is
Project
Pdf
)
{
public
PageView
(
Context
context
,
Size
pageSize
,
int
pageNumber
,
int
displayWidth
,
int
displayHeight
,
RelativeLayout
pageLayout
,
boolean
is
Operation
Pdf
)
{
super
(
context
);
super
(
context
);
Logger
.
i
(
TAG
,
"[PageView]: page="
+
pageNumber
);
Logger
.
i
(
TAG
,
"[PageView]: page="
+
pageNumber
);
...
@@ -71,9 +71,9 @@ public class PageView extends ImageView {
...
@@ -71,9 +71,9 @@ public class PageView extends ImageView {
mGestureDetector
=
new
GestureDetector
(
context
,
mGestureListener
);
mGestureDetector
=
new
GestureDetector
(
context
,
mGestureListener
);
this
.
is
ProjectPdf
=
isProject
Pdf
;
this
.
is
OperationPdf
=
isOperation
Pdf
;
// ABook Check : doubletap = 新作業指示
// ABook Check : doubletap = 新作業指示
if
(!
is
Project
Pdf
)
{
if
(!
is
Operation
Pdf
)
{
mGestureDetector
.
setOnDoubleTapListener
(
mDoubleTapListener
);
mGestureDetector
.
setOnDoubleTapListener
(
mDoubleTapListener
);
}
}
mScaleDetector
=
new
ScaleGestureDetector
(
context
,
onScaleGestureListener
);
mScaleDetector
=
new
ScaleGestureDetector
(
context
,
onScaleGestureListener
);
...
...
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