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
d1b1ada7
Commit
d1b1ada7
authored
Jun 29, 2021
by
Lee Munkyeong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
カテゴリー検索対応
parent
d31080fc
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
5 deletions
+17
-5
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
+1
-0
ABVJE_Launcher_Android/assets/check
+1
-1
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
+15
-4
No files found.
ABVJE_BL/src/jp/agentec/abook/abv/bl/common/constant/ABookKeys.java
View file @
d1b1ada7
...
...
@@ -91,6 +91,7 @@ public class ABookKeys {
public
static
final
String
GO_COMMUNICATION
=
"goCommunication"
;
public
static
final
String
GO_PANORAMA_EDIT
=
"goPanoramaEdit"
;
public
static
final
String
REFRESH_CONTENT
=
"refreshContent"
;
public
static
final
String
CHANGE_OPERATION_GROUP_MASTER
=
"changeOperationGroupMaster"
;
}
...
...
check
@
50e2553c
Subproject commit
773ca169e71c85c4ee45eebd3d1256197d458863
Subproject commit
50e2553c744e549d2fbcfd683fd6b1dcf48d5434
ABVJE_UI_Android/src/jp/agentec/abook/abv/ui/home/activity/OperationListActivity.java
View file @
d1b1ada7
...
...
@@ -402,6 +402,12 @@ public class OperationListActivity extends ABVUIActivity {
}
});
break
;
case
ABookKeys
.
CMD_KEY
.
CHANGE_OPERATION_GROUP_MASTER
:
clearSearch
();
List
<
OperationDto
>
operationList
=
mOperationGroupMasterLogic
.
getOperationByOperationGroupMasterId
(
jsonParam
.
getInt
(
ABookKeys
.
OPERATION_GROUPMASTER_ID
),
null
);
mOperationLogic
.
createOperationListJson
(
operationList
,
null
);
break
;
}
}
}
...
...
@@ -412,11 +418,16 @@ public class OperationListActivity extends ABVUIActivity {
}
@JavascriptInterface
public
String
searchOperationList
(
String
searchKeyword
,
String
searchStartDate
,
String
searchEndDate
)
{
public
String
searchOperationList
(
String
searchKeyword
,
String
searchStartDate
,
String
searchEndDate
,
int
operationGroupMasterId
)
{
mSearchWord
=
searchKeyword
;
mStartDateStr
=
searchStartDate
;
mEndDateStr
=
searchEndDate
;
List
<
OperationDto
>
operationList
=
mListHelper
.
filterOperationList
();
List
<
OperationDto
>
operationList
;
if
(
operationGroupMasterId
!=
0
)
{
operationList
=
mOperationGroupMasterLogic
.
getOperationByOperationGroupMasterId
(
operationGroupMasterId
,
null
);
}
else
{
operationList
=
mListHelper
.
filterOperationList
();
}
String
searchOperationListStr
=
mOperationLogic
.
createOperationListJson
(
operationList
,
null
);
return
searchOperationListStr
;
}
...
...
@@ -1960,10 +1971,10 @@ public class OperationListActivity extends ABVUIActivity {
setOperationListView
();
}
if
(
getABVUIDataCache
().
getOperationGroupMasterMode
()
==
OperationLocationType
.
CATEGORY
)
{
/*
if (getABVUIDataCache().getOperationGroupMasterMode() == OperationLocationType.CATEGORY) {
//作業種別モードの場合は、作業種別選択ダイアログ画面を表示
showOperationGroupMasterDialog(true);
}
}
*/
}
/**
...
...
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