Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
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_web
check
Commits
d973cbea
Commit
d973cbea
authored
Nov 16, 2022
by
Takumi Imai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
作業一覧の日付エラー
parent
e511043b
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
15 additions
and
11 deletions
+15
-11
abweb/common/json/lang/lang-en.json
+3
-1
abweb/common/json/lang/lang-ja.json
+3
-1
abweb/common/json/lang/lang-ko.json
+3
-1
abweb/js/operationList/operationList.js
+6
-8
No files found.
abweb/common/json/lang/lang-en.json
View file @
d973cbea
...
...
@@ -119,5 +119,6 @@
"msgSendPushMessageSuccess"
:
"we sent a push message"
,
"error"
:
"Error"
,
"msgSendPushMessageConfirm"
:
"Do you want to send message?"
,
"close"
:
"Close"
"close"
:
"Close"
,
"dateError"
:
"Set the start date before the end date."
}
\ No newline at end of file
abweb/common/json/lang/lang-ja.json
View file @
d973cbea
...
...
@@ -117,5 +117,6 @@
"msgSendPushMessageSuccess"
:
"プッシュメッセージ送信しました。"
,
"error"
:
"エラー"
,
"msgSendPushMessageConfirm"
:
"プッシュメッセージを送信しますか?"
,
"close"
:
"閉じる"
"close"
:
"閉じる"
,
"dateError"
:
"開始日は終了日の前に設定してください。"
}
\ No newline at end of file
abweb/common/json/lang/lang-ko.json
View file @
d973cbea
...
...
@@ -116,5 +116,6 @@
"msgSendPushMessageSuccess"
:
"푸시메시지를 보냈습니다."
,
"error"
:
"에러"
,
"msgSendPushMessageConfirm"
:
"Do you want to send message?"
,
"close"
:
"Close"
"close"
:
"Close"
,
"dateError"
:
"시작일은 종료일 이전에 설정하십시오."
}
\ No newline at end of file
abweb/js/operationList/operationList.js
View file @
d973cbea
...
...
@@ -23,10 +23,10 @@ OL.operationGroupMasterId;
OL
.
init
=
function
()
{
console
.
log
(
'OperationList start'
);
sessionStorage
.
activeHomePage
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
sessionStorage
.
removeItem
(
"operationId"
);
sessionStorage
.
removeItem
(
"RL_searchWord"
);
sessionStorage
.
removeItem
(
'operationId'
);
sessionStorage
.
removeItem
(
'RL_searchWord'
);
TEMPLATE
.
loadHeader
(
'#includedHeader'
);
TEMPLATE
.
loadMainNavsTitle
(
'#includedMainTitle'
,
'workList'
,
true
,
null
);
TEMPLATE
.
loadConfirmModal
(
'#includedConfirmModal'
);
//get all data of operation list scene
...
...
@@ -311,9 +311,7 @@ OL.createCategoryList = function () {
if
(
typeof
OL
.
operationGroupMasterId
===
'undefined'
||
OL
.
operationGroupMasterId
==
0
)
{
allChecked
=
' checked'
;
}
const
allCategory
=
$
(
'<ul><li><label><input type="radio" name="category" value="0"'
+
allChecked
+
'> <span>'
+
I18N
.
i18nText
(
'categoryAll'
)
+
'</span></label></li></ul>'
,
);
const
allCategory
=
$
(
'<ul><li><label><input type="radio" name="category" value="0"'
+
allChecked
+
'> <span>'
+
I18N
.
i18nText
(
'categoryAll'
)
+
'</span></label></li></ul>'
);
categoryListElement
.
append
(
allCategory
);
//create category(operationGroupMaster) structure
for
(
let
i
=
0
;
i
<
OL
.
operationGroupMaster
.
length
;
i
++
)
{
...
...
@@ -329,7 +327,7 @@ OL.createCategoryList = function () {
inputLabel
.
append
(
inputRadio
);
inputLabel
.
append
(
' '
);
inputLabel
.
append
(
groupSpan
);
const
isParent
=
OL
.
operationGroupMaster
.
find
(
function
(
child
)
{
const
isParent
=
OL
.
operationGroupMaster
.
find
(
function
(
child
)
{
return
item
.
operationGroupMasterId
==
child
.
parentOperationGroupMasterId
;
});
let
parentElement
=
categoryListElement
;
...
...
@@ -453,7 +451,6 @@ OL.sortOperationList = function (sortNumber) {
* search operarionList
*/
OL
.
search
=
function
()
{
COMMON
.
showLoading
();
const
searchKeyword
=
$
(
'#searchTaskName'
).
val
();
const
searchStartDate
=
$
(
'#searchStartDate'
).
val
();
const
searchEndDate
=
$
(
'#searchEndDate'
).
val
();
...
...
@@ -464,6 +461,7 @@ OL.search = function () {
return
;
}
COMMON
.
showLoading
();
OL
.
getAllDataWeb
(
searchKeyword
,
OL
.
sortIndex
,
searchStartDate
,
searchEndDate
,
OL
.
operationGroupMasterId
);
OL
.
createOperationList
(
OL
.
operationList
);
OL
.
createCategory
();
...
...
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