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
b365f57a
Commit
b365f57a
authored
Mar 06, 2019
by
Jeong Gilmo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#32782 指示者テーブル関連削除
parent
fc9484dd
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
95 additions
and
89 deletions
+95
-89
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/OperationDataJSON.java
+10
-5
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/RoutineTaskDataJSON.java
+2
-3
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
+8
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/ABVDataOpenHelper.java
+2
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/OperationDao.java
+2
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskDao.java
+2
-8
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskReportDao.java
+16
-16
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TTaskReport.java
+3
-3
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/TaskDto.java
+3
-3
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/TaskReportDto.java
+9
-11
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
+0
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
+18
-20
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ABookCheckWebViewHelper.java
+0
-0
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
+20
-14
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/OperationDataJSON.java
View file @
b365f57a
...
@@ -28,9 +28,15 @@ public class OperationDataJSON extends AcmsCommonJSON {
...
@@ -28,9 +28,15 @@ public class OperationDataJSON extends AcmsCommonJSON {
public
static
final
String
TaskCode
=
"taskCode"
;
public
static
final
String
TaskCode
=
"taskCode"
;
public
static
final
String
TaskStatus
=
"taskStatus"
;
public
static
final
String
TaskStatus
=
"taskStatus"
;
public
static
final
String
TaskHotspotInfo
=
"taskHotspotInfo"
;
public
static
final
String
TaskHotspotInfo
=
"taskHotspotInfo"
;
public
static
final
String
TaskDirectionsInfo
=
"taskDirectionsInfo"
;
// #32782 指示者テーブル関連削除 start
// TODO Delete TaskDirections
public
static
final
String
TaskDirectionsInfo
=
"taskReportInfo"
;
// #32782 指示者テーブル関連削除 end
public
static
final
String
TaskReportInfo
=
"taskReportInfo"
;
public
static
final
String
TaskReportInfo
=
"taskReportInfo"
;
public
static
final
String
TaskDirectionsKey
=
"taskDirectionsKey"
;
// #32782 指示者テーブル関連削除 start
// TODO Delete TaskDirections
public
static
final
String
TaskDirectionsKey
=
"taskReportKey"
;
// #32782 指示者テーブル関連削除 end
public
static
final
String
TaskReportKey
=
"taskReportKey"
;
public
static
final
String
TaskReportKey
=
"taskReportKey"
;
public
static
final
String
Task
=
"task"
;
public
static
final
String
Task
=
"task"
;
...
@@ -50,10 +56,9 @@ public class OperationDataJSON extends AcmsCommonJSON {
...
@@ -50,10 +56,9 @@ public class OperationDataJSON extends AcmsCommonJSON {
for
(
int
i
=
0
;
i
<
taskList
.
length
();
i
++)
{
for
(
int
i
=
0
;
i
<
taskList
.
length
();
i
++)
{
JSONObject
taskJson
=
taskList
.
getJSONObject
(
i
);
JSONObject
taskJson
=
taskList
.
getJSONObject
(
i
);
TaskDto
dto
=
new
TaskDto
();
TaskDto
dto
=
new
TaskDto
();
// 0305 start
// #32782 指示者テーブル関連削除 start
// dto.taskDirectionsDto = new TaskDirectionsDto();
dto
.
taskDirectionsDto
=
new
TaskReportDto
();
dto
.
taskDirectionsDto
=
new
TaskReportDto
();
//
0305
end
//
#32782 指示者テーブル関連削除
end
dto
.
taskReportDto
=
new
TaskReportDto
();
dto
.
taskReportDto
=
new
TaskReportDto
();
dto
.
operationId
=
taskJson
.
getLong
(
OperationId
);
dto
.
operationId
=
taskJson
.
getLong
(
OperationId
);
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/acms/client/json/RoutineTaskDataJSON.java
View file @
b365f57a
...
@@ -41,10 +41,9 @@ public class RoutineTaskDataJSON extends OperationDataJSON {
...
@@ -41,10 +41,9 @@ public class RoutineTaskDataJSON extends OperationDataJSON {
for
(
int
i
=
0
;
i
<
taskList
.
length
();
i
++)
{
for
(
int
i
=
0
;
i
<
taskList
.
length
();
i
++)
{
JSONObject
taskJson
=
taskList
.
getJSONObject
(
i
);
JSONObject
taskJson
=
taskList
.
getJSONObject
(
i
);
TaskDto
dto
=
new
TaskDto
();
TaskDto
dto
=
new
TaskDto
();
// 0305 start
// #32782 指示者テーブル関連削除 start
// dto.taskDirectionsDto = new TaskDirectionsDto();
dto
.
taskDirectionsDto
=
new
TaskReportDto
();
dto
.
taskDirectionsDto
=
new
TaskReportDto
();
//
0305
end
//
#32782 指示者テーブル関連削除
end
dto
.
taskReportDto
=
new
TaskReportDto
();
dto
.
taskReportDto
=
new
TaskReportDto
();
dto
.
operationId
=
taskJson
.
getLong
(
OperationId
);
dto
.
operationId
=
taskJson
.
getLong
(
OperationId
);
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
View file @
b365f57a
...
@@ -17,10 +17,13 @@ public class ABookKeys {
...
@@ -17,10 +17,13 @@ public class ABookKeys {
// ABOOKCHECK SCHEME
// ABOOKCHECK SCHEME
public
static
final
String
ABOOK_CHECK_API
=
"abookcheck-api"
;
public
static
final
String
ABOOK_CHECK_API
=
"abookcheck-api"
;
// #32782 指示者テーブル関連削除 start
// TODO TaskDirections 削除処理が必要
public
static
final
String
CMD_INSERT_TASK_DIRECTIONS
=
"insertTaskDirections"
;
public
static
final
String
CMD_INSERT_TASK_DIRECTIONS
=
"insertTaskDirections"
;
public
static
final
String
CMD_UPDATE_TASK_DIRECTIONS
=
"updateTaskDirections"
;
public
static
final
String
CMD_UPDATE_TASK_DIRECTIONS
=
"updateTaskDirections"
;
public
static
final
String
CMD_DELETE_TASK_DIRECTIONS
=
"deleteTaskDirections"
;
public
static
final
String
CMD_DELETE_TASK_DIRECTIONS
=
"deleteTaskDirections"
;
public
static
final
String
CMD_CANCEL_TASK_DIRECTIONS
=
"cancelTaskDirections"
;
public
static
final
String
CMD_CANCEL_TASK_DIRECTIONS
=
"cancelTaskDirections"
;
// #32782 指示者テーブル関連削除 end
public
static
final
String
CMD_MOVE_HOT_SPOT
=
"moveHotspot"
;
public
static
final
String
CMD_MOVE_HOT_SPOT
=
"moveHotspot"
;
public
static
final
String
CMD_SHOW_DIRECTION_OZD
=
"showDirectionOzd"
;
public
static
final
String
CMD_SHOW_DIRECTION_OZD
=
"showDirectionOzd"
;
public
static
final
String
CMD_PREVIEW_DIRECTION_OZD
=
"previewDirectionOzd"
;
public
static
final
String
CMD_PREVIEW_DIRECTION_OZD
=
"previewDirectionOzd"
;
...
@@ -47,8 +50,11 @@ public class ABookKeys {
...
@@ -47,8 +50,11 @@ public class ABookKeys {
public
static
final
String
READ_ONLY_FLG
=
"readOnlyFlg"
;
public
static
final
String
READ_ONLY_FLG
=
"readOnlyFlg"
;
public
static
final
String
DIRECTION_FLG
=
"directionFlg"
;
public
static
final
String
DIRECTION_FLG
=
"directionFlg"
;
public
static
final
String
ATTACHED_CHANGE_FLAG
=
"attachedChangeFlag"
;
public
static
final
String
ATTACHED_CHANGE_FLAG
=
"attachedChangeFlag"
;
public
static
final
String
TASK_DIRECTIONS
=
"taskDirections"
;
// #32782 指示者テーブル関連削除 start
public
static
final
String
TASK_DIRECTIONS_SUGGEST
=
"taskDirectionsSuggest"
;
// TODO TASK_DIRECTIONS 削除が必要
public
static
final
String
TASK_DIRECTIONS
=
"taskReport"
;
public
static
final
String
TASK_DIRECTIONS_SUGGEST
=
"taskReportSuggest"
;
// #32782 指示者テーブル関連削除 end
public
static
final
String
TASK_HOTSPOT
=
"taskHotspot"
;
public
static
final
String
TASK_HOTSPOT
=
"taskHotspot"
;
public
static
final
String
TASK_REPORT
=
"taskReport"
;
public
static
final
String
TASK_REPORT
=
"taskReport"
;
public
static
final
String
TASK_REPORT_SUGGEST
=
"taskReportSuggest"
;
public
static
final
String
TASK_REPORT_SUGGEST
=
"taskReportSuggest"
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/ABVDataOpenHelper.java
View file @
b365f57a
...
@@ -91,10 +91,10 @@ public class ABVDataOpenHelper {
...
@@ -91,10 +91,10 @@ public class ABVDataOpenHelper {
iTableScripts
.
add
(
new
TOperation
());
iTableScripts
.
add
(
new
TOperation
());
iTableScripts
.
add
(
new
ROperationContent
());
iTableScripts
.
add
(
new
ROperationContent
());
iTableScripts
.
add
(
new
TTask
());
iTableScripts
.
add
(
new
TTask
());
//
0305
start
//
#32782 指示者テーブル関連削除
start
// iTableScripts.add(new TTaskDirections());
// iTableScripts.add(new TTaskDirections());
// iTableScripts.add(new TTaskDirectionsItems());
// iTableScripts.add(new TTaskDirectionsItems());
//
0305
end
//
#32782 指示者テーブル関連削除
end
iTableScripts
.
add
(
new
TTaskReport
());
iTableScripts
.
add
(
new
TTaskReport
());
iTableScripts
.
add
(
new
TTaskReportSend
());
iTableScripts
.
add
(
new
TTaskReportSend
());
iTableScripts
.
add
(
new
TTaskReportItems
());
iTableScripts
.
add
(
new
TTaskReportItems
());
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/OperationDao.java
View file @
b365f57a
...
@@ -204,10 +204,10 @@ public class OperationDao extends AbstractDao {
...
@@ -204,10 +204,10 @@ public class OperationDao extends AbstractDao {
delete
(
"r_project_content"
,
null
,
null
);
delete
(
"r_project_content"
,
null
,
null
);
delete
(
"t_project"
,
null
,
null
);
delete
(
"t_project"
,
null
,
null
);
delete
(
"t_task"
,
null
,
null
);
delete
(
"t_task"
,
null
,
null
);
//
0305
start
//
#32782 指示者テーブル関連削除
start
// delete("t_task_directions", null, null);
// delete("t_task_directions", null, null);
// delete("t_task_directions_items", null, null);
// delete("t_task_directions_items", null, null);
//
0305
end
//
#32782 指示者テーブル関連削除
end
delete
(
"t_task_report"
,
null
,
null
);
delete
(
"t_task_report"
,
null
,
null
);
delete
(
"t_task_report_send"
,
null
,
null
);
delete
(
"t_task_report_send"
,
null
,
null
);
delete
(
"t_task_report_items"
,
null
,
null
);
delete
(
"t_task_report_items"
,
null
,
null
);
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskDao.java
View file @
b365f57a
...
@@ -100,12 +100,9 @@ public class TaskDao extends AbstractDao {
...
@@ -100,12 +100,9 @@ public class TaskDao extends AbstractDao {
if
(
directionFlg
)
{
if
(
directionFlg
)
{
delete
(
"t_task"
,
"task_key=?"
,
keyValues
);
delete
(
"t_task"
,
"task_key=?"
,
keyValues
);
// 0305 start
// #32782 指示者テーブル関連削除
// delete("t_task_directions", "task_key=?", keyValues);
// delete("t_task_directions_items", "task_key=?", keyValues);
delete
(
"t_task_report"
,
"task_key=?"
,
keyValues
);
delete
(
"t_task_report"
,
"task_key=?"
,
keyValues
);
delete
(
"t_task_report_items"
,
"task_key=?"
,
keyValues
);
delete
(
"t_task_report_items"
,
"task_key=?"
,
keyValues
);
// 0305 end
}
else
{
}
else
{
delete
(
"t_task_report"
,
"task_key=?"
,
keyValues
);
delete
(
"t_task_report"
,
"task_key=?"
,
keyValues
);
delete
(
"t_task_report_items"
,
"task_key=?"
,
keyValues
);
delete
(
"t_task_report_items"
,
"task_key=?"
,
keyValues
);
...
@@ -118,10 +115,7 @@ public class TaskDao extends AbstractDao {
...
@@ -118,10 +115,7 @@ public class TaskDao extends AbstractDao {
*/
*/
public
void
delete
(
TaskDto
dto
)
{
public
void
delete
(
TaskDto
dto
)
{
delete
(
"t_task"
,
"task_key=?"
,
dto
.
getKeyValues
());
delete
(
"t_task"
,
"task_key=?"
,
dto
.
getKeyValues
());
// 0305 start
// #32782 指示者テーブル関連削除
// delete("t_task_directions", "task_key=?", dto.getKeyValues());
// delete("t_task_directions_items", "task_key=?", dto.getKeyValues());
// 0305 end
delete
(
"t_task_report"
,
"task_key=?"
,
dto
.
getKeyValues
());
delete
(
"t_task_report"
,
"task_key=?"
,
dto
.
getKeyValues
());
delete
(
"t_task_report_items"
,
"task_key=?"
,
dto
.
getKeyValues
());
delete
(
"t_task_report_items"
,
"task_key=?"
,
dto
.
getKeyValues
());
delete
(
"t_inspect_task_report"
,
"task_key=?"
,
new
String
[]
{
dto
.
taskKey
});
delete
(
"t_inspect_task_report"
,
"task_key=?"
,
new
String
[]
{
dto
.
taskKey
});
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskReportDao.java
View file @
b365f57a
...
@@ -53,12 +53,12 @@ public class TaskReportDao extends AbstractDao {
...
@@ -53,12 +53,12 @@ public class TaskReportDao extends AbstractDao {
if
(
column
!=
-
1
)
{
if
(
column
!=
-
1
)
{
dto
.
delFlg
=
toBool
(
cursor
.
getInt
(
column
));
dto
.
delFlg
=
toBool
(
cursor
.
getInt
(
column
));
}
}
//
0305
start
//
#32782 指示者テーブル関連削除
start
column
=
cursor
.
getColumnIndex
(
"reportor_flag"
);
column
=
cursor
.
getColumnIndex
(
"reportor_flag"
);
if
(
column
!=
-
1
)
{
if
(
column
!=
-
1
)
{
dto
.
report
o
rFlag
=
toBool
(
cursor
.
getInt
(
column
));
dto
.
report
e
rFlag
=
toBool
(
cursor
.
getInt
(
column
));
}
}
//
0305
end
//
#32782 指示者テーブル関連削除
end
return
dto
;
return
dto
;
}
}
...
@@ -70,12 +70,12 @@ public class TaskReportDao extends AbstractDao {
...
@@ -70,12 +70,12 @@ public class TaskReportDao extends AbstractDao {
+
"attached_file_name, "
+
"attached_file_name, "
+
"local_attached_file_name, "
+
"local_attached_file_name, "
+
"attached_file_send_flg, "
+
"attached_file_send_flg, "
// 0301 start
+
"data_send_flg, "
+
"reportor_flag, "
// #32782 指示者テーブル関連削除 start
// 0301 end
+
"reporter_flag) "
+
"data_send_flg) "
// #32782 指示者テーブル関連削除 end
+
"values "
+
"values "
+
"(?,?,?,?,?,?)"
,
+
"(?,?,?,?,?,?
,?
)"
,
dto
.
getInsertValues
());
dto
.
getInsertValues
());
}
}
...
@@ -103,9 +103,9 @@ public class TaskReportDao extends AbstractDao {
...
@@ -103,9 +103,9 @@ public class TaskReportDao extends AbstractDao {
+
"local_attached_file_name=?, "
+
"local_attached_file_name=?, "
+
"attached_file_send_flg=?, "
+
"attached_file_send_flg=?, "
+
"data_send_flg=?, "
+
"data_send_flg=?, "
//
0301
start
//
#32782 指示者テーブル関連削除
start
+
"report
o
r_flag=? "
+
"report
e
r_flag=? "
//
0301
end
//
#32782 指示者テーブル関連削除
end
+
"where task_key=?"
,
+
"where task_key=?"
,
dto
.
getUpdateValues
());
dto
.
getUpdateValues
());
return
count
>
0
;
return
count
>
0
;
...
@@ -133,7 +133,7 @@ public class TaskReportDao extends AbstractDao {
...
@@ -133,7 +133,7 @@ public class TaskReportDao extends AbstractDao {
return
rawQueryGetDtoList
(
sb
.
toString
(),
new
String
[]{
""
+
operationId
},
TaskReportDto
.
class
);
return
rawQueryGetDtoList
(
sb
.
toString
(),
new
String
[]{
""
+
operationId
},
TaskReportDto
.
class
);
}
}
public
List
<
TaskReportDto
>
getSendableTaskData
(
Long
operationId
,
String
taskKey
,
boolean
report
o
rFlag
)
{
public
List
<
TaskReportDto
>
getSendableTaskData
(
Long
operationId
,
String
taskKey
,
boolean
report
e
rFlag
)
{
StringBuilder
sb
=
new
StringBuilder
();
StringBuilder
sb
=
new
StringBuilder
();
sb
.
append
(
" select * "
);
sb
.
append
(
" select * "
);
sb
.
append
(
" from t_task_report ttr "
);
sb
.
append
(
" from t_task_report ttr "
);
...
@@ -143,10 +143,10 @@ public class TaskReportDao extends AbstractDao {
...
@@ -143,10 +143,10 @@ public class TaskReportDao extends AbstractDao {
sb
.
append
(
" WHERE ttr.data_send_flg = 1"
);
sb
.
append
(
" WHERE ttr.data_send_flg = 1"
);
sb
.
append
(
" AND tt.project_id = ?"
);
sb
.
append
(
" AND tt.project_id = ?"
);
sb
.
append
(
" AND tt.task_key = ?"
);
sb
.
append
(
" AND tt.task_key = ?"
);
//
0305
start
//
#32782 指示者テーブル関連削除
start
sb
.
append
(
" AND ttr.rep
o
rtor_flag = ?"
);
sb
.
append
(
" AND ttr.rep
e
rtor_flag = ?"
);
return
rawQueryGetDtoList
(
sb
.
toString
(),
new
String
[]{
""
+
operationId
,
""
+
taskKey
,
""
+
report
o
rFlag
},
TaskReportDto
.
class
);
return
rawQueryGetDtoList
(
sb
.
toString
(),
new
String
[]{
""
+
operationId
,
""
+
taskKey
,
""
+
report
e
rFlag
},
TaskReportDto
.
class
);
//
0305
end
//
#32782 指示者テーブル関連削除
end
}
}
public
String
getTaskReportAttachedFileName
(
String
taskKey
)
{
public
String
getTaskReportAttachedFileName
(
String
taskKey
)
{
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/tables/TTaskReport.java
View file @
b365f57a
...
@@ -28,9 +28,9 @@ public class TTaskReport extends SQLiteTableScript {
...
@@ -28,9 +28,9 @@ public class TTaskReport extends SQLiteTableScript {
sql
.
append
(
" , local_attached_file_name TEXT "
);
sql
.
append
(
" , local_attached_file_name TEXT "
);
sql
.
append
(
" , attached_file_send_flg BOOLEAN DEFAULT 0 "
);
sql
.
append
(
" , attached_file_send_flg BOOLEAN DEFAULT 0 "
);
sql
.
append
(
" , data_send_flg BOOLEAN DEFAULT 0 "
);
sql
.
append
(
" , data_send_flg BOOLEAN DEFAULT 0 "
);
//
0305
start
//
#32782 指示者テーブル関連削除
start
sql
.
append
(
" , report
o
r_flag BOOLEAN DEFAULT 0 "
);
sql
.
append
(
" , report
e
r_flag BOOLEAN DEFAULT 0 "
);
//
0305
end
//
#32782 指示者テーブル関連削除
end
sql
.
append
(
" ) "
);
sql
.
append
(
" ) "
);
ddl
.
add
(
sql
.
toString
());
ddl
.
add
(
sql
.
toString
());
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/TaskDto.java
View file @
b365f57a
...
@@ -16,11 +16,11 @@ public class TaskDto extends AbstractDto {
...
@@ -16,11 +16,11 @@ public class TaskDto extends AbstractDto {
public
String
taskHotSpotInfo
;
public
String
taskHotSpotInfo
;
public
boolean
delFlg
;
public
boolean
delFlg
;
//
0305
start
//
#32782 指示者テーブル関連削除
start
// public TaskDirectionsDto taskDirectionsDto;
// TODO TaskDirectionDto から TaskReportDto に変更、taskDirectionsDto 名を変更必要
public
TaskReportDto
taskDirectionsDto
;
public
TaskReportDto
taskDirectionsDto
;
// #32782 指示者テーブル関連削除 end
public
TaskReportDto
taskReportDto
;
public
TaskReportDto
taskReportDto
;
// 0305 end
public
int
taskReportId
;
public
int
taskReportId
;
public
List
<
RoutineTaskReportDto
>
RoutineTaskReportList
;
public
List
<
RoutineTaskReportDto
>
RoutineTaskReportList
;
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/TaskReportDto.java
View file @
b365f57a
...
@@ -15,24 +15,22 @@ public class TaskReportDto extends AbstractDto {
...
@@ -15,24 +15,22 @@ public class TaskReportDto extends AbstractDto {
public
String
taskHotSpotInfo
;
public
String
taskHotSpotInfo
;
public
boolean
delFlg
;
public
boolean
delFlg
;
//
0301
start
//
#32782 指示者テーブル関連削除
start
public
boolean
report
o
rFlag
;
public
boolean
report
e
rFlag
;
//
0301
end
//
#32782 指示者テーブル関連削除
end
@Override
@Override
public
Object
[]
getInsertValues
()
{
public
Object
[]
getInsertValues
()
{
// 0301 start
// #32782 指示者テーブル関連削除 start
return
new
Object
[]
{
taskKey
,
jsonData
,
attachedFileName
,
localAttachedFileName
,
attachedFileSendFlg
,
dataSendFlg
,
reportorFlag
};
return
new
Object
[]
{
taskKey
,
jsonData
,
attachedFileName
,
localAttachedFileName
,
attachedFileSendFlg
,
dataSendFlg
,
reporterFlag
};
// return new Object[] { taskKey, jsonData, attachedFileName, localAttachedFileName, attachedFileSendFlg, dataSendFlg };
// #32782 指示者テーブル関連削除 end
// 0301 end
}
}
@Override
@Override
public
Object
[]
getUpdateValues
()
{
public
Object
[]
getUpdateValues
()
{
// 0301 start
// #32782 指示者テーブル関連削除 start
return
new
Object
[]
{
jsonData
,
attachedFileName
,
localAttachedFileName
,
attachedFileSendFlg
,
dataSendFlg
,
reportorFlag
,
taskKey
};
return
new
Object
[]
{
jsonData
,
attachedFileName
,
localAttachedFileName
,
attachedFileSendFlg
,
dataSendFlg
,
reporterFlag
,
taskKey
};
// return new Object[] { jsonData, attachedFileName, localAttachedFileName, attachedFileSendFlg, dataSendFlg, taskKey };
// #32782 指示者テーブル関連削除 end
// 0301 end
}
}
@Override
@Override
...
...
ABVJE_BL/src/jp/agentec/abook/abv/bl/logic/OperationLogic.java
View file @
b365f57a
This diff is collapsed.
Click to expand it.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
View file @
b365f57a
...
@@ -143,9 +143,9 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -143,9 +143,9 @@ public class OperationListActivity extends ABVUIActivity {
private
Dialog
mPanoEntryDialog
;
private
Dialog
mPanoEntryDialog
;
private
OperationContentDao
mOperationContentDao
=
AbstractDao
.
getDao
(
OperationContentDao
.
class
);
private
OperationContentDao
mOperationContentDao
=
AbstractDao
.
getDao
(
OperationContentDao
.
class
);
//
0301
start
//
#32782 指示者テーブル関連削除
start
// private TaskDirectionsDao mTaskDirectionsDao = AbstractDao.getDao(TaskDirectionsDao.class);
// private TaskDirectionsDao mTaskDirectionsDao = AbstractDao.getDao(TaskDirectionsDao.class);
//
0301
end
//
#32782 指示者テーブル関連削除
end
private
TaskReportDao
mTaskReportDao
=
AbstractDao
.
getDao
(
TaskReportDao
.
class
);
private
TaskReportDao
mTaskReportDao
=
AbstractDao
.
getDao
(
TaskReportDao
.
class
);
private
RoutineTaskReportDao
mRoutineTaskReportDao
=
AbstractDao
.
getDao
(
RoutineTaskReportDao
.
class
);
private
RoutineTaskReportDao
mRoutineTaskReportDao
=
AbstractDao
.
getDao
(
RoutineTaskReportDao
.
class
);
private
OperationLogic
mOperationLogic
=
AbstractLogic
.
getLogic
(
OperationLogic
.
class
);
private
OperationLogic
mOperationLogic
=
AbstractLogic
.
getLogic
(
OperationLogic
.
class
);
...
@@ -1044,17 +1044,16 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -1044,17 +1044,16 @@ public class OperationListActivity extends ABVUIActivity {
progress
=
40
/
json
.
taskDtoList
.
size
();
progress
=
40
/
json
.
taskDtoList
.
size
();
}
}
// 0305 start
// #32782 指示者テーブル関連削除 start
// JSONObject taskDirectionJson;
JSONObject
taskReportJson
;
JSONObject
taskReportJson
;
for
(
TaskDto
taskDto
:
json
.
taskDtoList
)
{
for
(
TaskDto
taskDto
:
json
.
taskDtoList
)
{
String
directionsAttachedFileName
=
taskDto
.
taskDirectionsDto
.
attachedFileName
;
String
directionsAttachedFileName
=
taskDto
.
taskDirectionsDto
.
attachedFileName
;
String
reportAttachedFileName
=
taskDto
.
taskReportDto
.
attachedFileName
;
String
reportAttachedFileName
=
taskDto
.
taskReportDto
.
attachedFileName
;
//
0305
start
//
#32782 指示者テーブル関連削除
start
taskReportJson
=
new
JSONObject
(
taskDto
.
taskDirectionsDto
.
jsonData
);
taskReportJson
=
new
JSONObject
(
taskDto
.
taskDirectionsDto
.
jsonData
);
taskReportJson
.
put
(
ABookKeys
.
TASK_STATUS
,
taskDto
.
taskStatus
);
taskReportJson
.
put
(
ABookKeys
.
TASK_STATUS
,
taskDto
.
taskStatus
);
//
0305
end
//
#32782 指示者テーブル関連削除
end
int
localTaskIndex
=
localTaskList
.
indexOf
(
taskDto
);
int
localTaskIndex
=
localTaskList
.
indexOf
(
taskDto
);
if
(
localTaskIndex
>=
0
)
{
if
(
localTaskIndex
>=
0
)
{
...
@@ -1065,17 +1064,17 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -1065,17 +1064,17 @@ public class OperationListActivity extends ABVUIActivity {
return
null
;
return
null
;
}
}
//
0305
start
//
#32782 指示者テーブル関連削除
start
// 作業更新
// 作業更新
mOperationLogic
.
updateTaskDirections
(
taskDto
.
taskKey
,
taskDto
.
operationId
,
operationContentDto
.
contentId
,
mOperationLogic
.
updateTaskReport
(
taskDto
.
taskKey
,
taskDto
.
operationId
,
operationContentDto
.
contentId
,
taskReportJson
,
taskDto
.
taskHotSpotInfo
,
directionsAttachedFileName
,
false
,
false
);
taskReportJson
,
directionsAttachedFileName
,
false
,
false
,
taskDto
.
taskHotSpotInfo
);
// 0305 end
localTaskList
.
remove
(
taskDto
);
localTaskList
.
remove
(
taskDto
);
// 報告データが存在すると作業報告を更新する
// 報告データが存在すると作業報告を更新する
if
(
taskDto
.
taskReportDto
.
jsonData
!=
null
)
{
if
(
taskDto
.
taskReportDto
.
jsonData
!=
null
)
{
mOperationLogic
.
updateTaskReport
(
taskDto
.
taskKey
,
taskDto
.
operationId
,
operationContentDto
.
contentId
,
mOperationLogic
.
updateTaskReport
(
taskDto
.
taskKey
,
taskDto
.
operationId
,
operationContentDto
.
contentId
,
new
JSONObject
(
taskDto
.
taskReportDto
.
jsonData
),
reportAttachedFileName
,
false
,
false
);
taskReportJson
,
reportAttachedFileName
,
false
,
false
,
taskDto
.
taskHotSpotInfo
);
}
}
// #32782 指示者テーブル関連削除 end
}
else
{
}
else
{
// 添付ファイルが存在する場合、取得して解凍する。
// 添付ファイルが存在する場合、取得して解凍する。
refreshTaskFile
(
operationId
,
operationContentDto
.
contentId
,
taskDto
.
taskId
,
taskDto
.
taskKey
,
directionsAttachedFileName
,
reportAttachedFileName
);
refreshTaskFile
(
operationId
,
operationContentDto
.
contentId
,
taskDto
.
taskId
,
taskDto
.
taskKey
,
directionsAttachedFileName
,
reportAttachedFileName
);
...
@@ -1083,19 +1082,19 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -1083,19 +1082,19 @@ public class OperationListActivity extends ABVUIActivity {
return
null
;
return
null
;
}
}
//
0301
start
//
#32782 指示者テーブル関連削除
start
// 作業登録
// 作業登録
mOperationLogic
.
insertTaskDirections
(
taskDto
.
taskKey
,
operationContentDto
.
operationId
,
operationContentDto
.
contentId
,
mOperationLogic
.
insertTaskReport
(
taskDto
.
taskKey
,
operationContentDto
.
operationId
,
operationContentDto
.
contentId
,
taskReportJson
,
taskDto
.
taskHotSpotInfo
,
directionsAttachedFileName
,
false
,
false
);
taskReportJson
,
directionsAttachedFileName
,
false
,
false
,
taskDto
.
taskHotSpotInfo
);
// 0305 end
if
(
taskDto
.
taskReportDto
.
jsonData
!=
null
)
{
if
(
taskDto
.
taskReportDto
.
jsonData
!=
null
)
{
mOperationLogic
.
insertTaskReport
(
taskDto
.
taskKey
,
operationContentDto
.
operationId
,
operationContentDto
.
contentId
,
mOperationLogic
.
insertTaskReport
(
taskDto
.
taskKey
,
operationContentDto
.
operationId
,
operationContentDto
.
contentId
,
new
JSONObject
(
taskDto
.
taskReportDto
.
jsonData
),
reportAttachedFileName
,
false
,
false
);
taskReportJson
,
reportAttachedFileName
,
false
,
false
,
taskDto
.
taskHotSpotInfo
);
}
}
// #32782 指示者テーブル関連削除 end
}
}
progressCallback
.
callback
(
new
Integer
(
progress
));
progressCallback
.
callback
(
new
Integer
(
progress
));
}
}
//
0305
end
//
#32782 指示者テーブル関連削除
end
// サーバーから取得した作業情報がローカルに存在しないので削除する
// サーバーから取得した作業情報がローカルに存在しないので削除する
for
(
TaskDto
taskDto
:
localTaskList
)
{
for
(
TaskDto
taskDto
:
localTaskList
)
{
...
@@ -1115,10 +1114,9 @@ public class OperationListActivity extends ABVUIActivity {
...
@@ -1115,10 +1114,9 @@ public class OperationListActivity extends ABVUIActivity {
// 既存の添付ディレクトリ削除
// 既存の添付ディレクトリ削除
FileUtil
.
delete
(
ABVEnvironment
.
getInstance
().
getTempTaskDirPath
(
contentId
,
taskKey
));
FileUtil
.
delete
(
ABVEnvironment
.
getInstance
().
getTempTaskDirPath
(
contentId
,
taskKey
));
// 0305 start
// #32782 指示者テーブル関連削除 start
// String directionsLocalAttachedFileName = mTaskDirectionsDao.getTaskDirectionsAttachedFileName(taskKey);
String
directionsLocalAttachedFileName
=
mTaskReportDao
.
getTaskReportAttachedFileName
(
taskKey
);
String
directionsLocalAttachedFileName
=
mTaskReportDao
.
getTaskReportAttachedFileName
(
taskKey
);
//
0305
end
//
#32782 指示者テーブル関連削除
end
String
reportLocalAttachedFileName
=
mTaskReportDao
.
getTaskReportAttachedFileName
(
taskKey
);
String
reportLocalAttachedFileName
=
mTaskReportDao
.
getTaskReportAttachedFileName
(
taskKey
);
int
count
=
0
;
int
count
=
0
;
boolean
getDirectionsFileFlg
=
directionsAttachedFileName
!=
null
&&
!
directionsAttachedFileName
.
equals
(
directionsLocalAttachedFileName
);
boolean
getDirectionsFileFlg
=
directionsAttachedFileName
!=
null
&&
!
directionsAttachedFileName
.
equals
(
directionsLocalAttachedFileName
);
...
...
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/helper/ABookCheckWebViewHelper.java
View file @
b365f57a
This diff is collapsed.
Click to expand it.
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/viewer/activity/ContentViewActivity.java
View file @
b365f57a
...
@@ -89,6 +89,7 @@ import jp.agentec.abook.abv.bl.acms.client.json.content.PageInfoJSON;
...
@@ -89,6 +89,7 @@ import jp.agentec.abook.abv.bl.acms.client.json.content.PageInfoJSON;
import
jp.agentec.abook.abv.bl.acms.client.json.content.PageInfoJSON.PageInfoJSONData
;
import
jp.agentec.abook.abv.bl.acms.client.json.content.PageInfoJSON.PageInfoJSONData
;
import
jp.agentec.abook.abv.bl.acms.client.json.content.PageObjectJSON
;
import
jp.agentec.abook.abv.bl.acms.client.json.content.PageObjectJSON
;
import
jp.agentec.abook.abv.bl.acms.client.json.content.TaskHotspotJSON
;
import
jp.agentec.abook.abv.bl.acms.client.json.content.TaskHotspotJSON
;
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.CommonExecutor
;
import
jp.agentec.abook.abv.bl.common.CommonExecutor
;
...
@@ -5184,25 +5185,30 @@ public class ContentViewActivity extends ABVContentViewActivity {
...
@@ -5184,25 +5185,30 @@ public class ContentViewActivity extends ABVContentViewActivity {
switch
(
cmd
){
switch
(
cmd
){
case
ABookKeys
.
CMD_INSERT_TASK_DIRECTIONS
:
case
ABookKeys
.
CMD_INSERT_TASK_DIRECTIONS
:
case
ABookKeys
.
CMD_UPDATE_TASK_DIRECTIONS
:
case
ABookKeys
.
CMD_UPDATE_TASK_DIRECTIONS
:
JSONObject
hotspot
=
new
JSONObject
(
checkParam
.
get
(
ABookKeys
.
HOT_SPOT
));
// #32782 指示者テーブル関連削除 start
taskCode
=
hotspot
.
getString
(
ABookKeys
.
TASK_CODE
);
case
ABookKeys
.
CMD_INSERT_TASK_REPORT
:
case
ABookKeys
.
CMD_UPDATE_TASK_REPORT
:
operationTaskLayout
.
setIconStatus
(
taskKey
,
true
);
case
ABookKeys
.
CMD_DELETE_TASK_REPORT
:
operationTaskLayout
.
currentTaskDto
.
taskKey
=
taskKey
;
if
(
ABVDataCache
.
getInstance
().
getMemberInfo
().
operationAuthLevel
==
OperationAuthLevel
.
OPERATION_INSTRUCTOR
)
{
operationTaskLayout
.
currentTaskDto
.
taskCode
=
taskCode
;
JSONObject
hotspot
=
new
JSONObject
(
checkParam
.
get
(
ABookKeys
.
HOT_SPOT
));
operationTaskLayout
.
addOperationTaskIcon
(
operationTaskLayout
.
currentLayout
,
operationTaskLayout
.
currentTaskDto
);
//hideOperationTaskLayout();
taskCode
=
hotspot
.
getString
(
ABookKeys
.
TASK_CODE
);
operationTaskLayout
.
setIconStatus
(
taskKey
,
true
);
operationTaskLayout
.
currentTaskDto
.
taskKey
=
taskKey
;
operationTaskLayout
.
currentTaskDto
.
taskCode
=
taskCode
;
operationTaskLayout
.
addOperationTaskIcon
(
operationTaskLayout
.
currentLayout
,
operationTaskLayout
.
currentTaskDto
);
//hideOperationTaskLayout();
}
else
{
operationTaskLayout
.
setIconStatus
(
taskKey
,
false
);
}
// #32782 指示者テーブル関連削除 end
break
;
break
;
case
ABookKeys
.
CMD_DELETE_TASK_DIRECTIONS
:
case
ABookKeys
.
CMD_DELETE_TASK_DIRECTIONS
:
operationTaskLayout
.
setIconStatus
(
taskKey
,
true
);
operationTaskLayout
.
setIconStatus
(
taskKey
,
true
);
//hideOperationTaskLayout();
//hideOperationTaskLayout();
break
;
break
;
case
ABookKeys
.
CMD_INSERT_TASK_REPORT
:
case
ABookKeys
.
CMD_UPDATE_TASK_REPORT
:
case
ABookKeys
.
CMD_DELETE_TASK_REPORT
:
operationTaskLayout
.
setIconStatus
(
taskKey
,
false
);
//hideOperationTaskLayout();
break
;
default
:
default
:
operationTaskLayout
.
setIconStatus
(
taskKey
,
false
);
operationTaskLayout
.
setIconStatus
(
taskKey
,
false
);
break
;
break
;
...
...
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