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
8db9a166
Commit
8db9a166
authored
Oct 16, 2020
by
Kim Jinsung
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#39910 連続作業機能
①タスク削除時に承認情報削除されない問題対応 ②phaseStatusのデフォルト値がnullの影響でネットワーク非接続時に報告したら、編集できない問題対応
parent
2324d341
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskDao.java
+4
-0
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/TaskDto.java
+2
-2
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/data/dao/TaskDao.java
View file @
8db9a166
...
...
@@ -190,5 +190,8 @@ public class TaskDao extends AbstractDao {
delete
(
"t_task_report"
,
"task_key=?"
,
dto
.
getKeyValues
());
delete
(
"t_task_report_items"
,
"task_key=?"
,
dto
.
getKeyValues
());
delete
(
"t_task_report_send"
,
"task_key=?"
,
dto
.
getKeyValues
());
if
(
dto
.
processKey
!=
null
)
{
//連続作業の承認情報
delete
(
"t_task_report_approval"
,
"process_key=?"
,
new
String
[]{
dto
.
processKey
});
}
}
}
\ No newline at end of file
ABVJE_BL/src/jp/agentec/abook/abv/bl/dto/TaskDto.java
View file @
8db9a166
...
...
@@ -16,8 +16,8 @@ public class TaskDto extends AbstractDto {
public
String
taskHotSpotInfo
;
public
String
taskName
;
public
Integer
phaseNo
;
public
Integer
phaseStatus
;
public
Integer
processStatus
;
public
Integer
phaseStatus
=
1
;
//デフォルト値1 (ネットワーク非接続時に報告した場合、1では無い時に編集できないため)
public
Integer
processStatus
=
0
;
//デフォルト値0
public
String
processKey
;
public
List
<
TaskReportDto
>
taskReportDtoList
;
public
List
<
TaskReportApprovalDto
>
taskReportApprovalDtoList
;
...
...
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