Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
design
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
abookCheck
design
Commits
c44f3f61
Commit
c44f3f61
authored
2 years ago
by
NGO THI HONG
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#49123 fix bug direct phase no
parent
7ecc74c7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
2 deletions
+3
-2
app/script/check-list.js
+2
-1
app/script/check_pu.js
+1
-1
No files found.
app/script/check-list.js
View file @
c44f3f61
...
...
@@ -243,7 +243,7 @@ CHK_L.updateList = function() {
* アプリにコマンド送信
* @param {any} command
*/
CHK_L
.
sendAppCommand
=
function
(
command
,
operationId
,
contentId
,
operationGroupMasterId
,
directPage
,
backPage
,
directTaskKey
)
{
CHK_L
.
sendAppCommand
=
function
(
command
,
operationId
,
contentId
,
operationGroupMasterId
,
directPage
,
backPage
,
directTaskKey
,
directPhaseNo
)
{
var
param
=
{};
param
.
cmd
=
CHK
.
getCommand
(
command
);
param
.
operationId
=
operationId
;
...
...
@@ -252,6 +252,7 @@ CHK_L.sendAppCommand = function (command, operationId, contentId, operationGroup
param
.
directPage
=
directPage
;
param
.
backPage
=
backPage
;
param
.
directTaskKey
=
directTaskKey
;
param
.
directPhaseNo
=
directPhaseNo
;
console
.
log
(
"CHK_L.sendAppCommand "
+
JSON
.
stringify
(
param
));
CHK
.
sendABookCheckApi
(
param
);
}
...
...
This diff is collapsed.
Click to expand it.
app/script/check_pu.js
View file @
c44f3f61
...
...
@@ -215,7 +215,7 @@ CHK_pu.createContinousWorkList = function(operationList, isSearched = false) {
else
{
ahrefRequiredFlg
=
$
(
"<a href=
\"
javascript:CHK_L.sendAppCommand('goOperation', '"
+
operationList
[
i
].
operationId
+
"', '"
+
operationList
[
i
].
contentId
+
" ', null ,'DETAIL_FORM_INPUT' ,'CONTINOUS_WORK','"
+
operationList
[
i
].
processList
[
j
].
processKey
+
"');
\"
class='d-block px-3 py-2 text-decoration-none text-dark'></a>"
);
+
" ', null ,'DETAIL_FORM_INPUT' ,'CONTINOUS_WORK','"
+
operationList
[
i
].
processList
[
j
].
processKey
+
"'
,'"
+
operationList
[
i
].
processList
[
j
].
phaseList
[
g
].
phaseNo
+
"'
);
\"
class='d-block px-3 py-2 text-decoration-none text-dark'></a>"
);
}
var
divTitle
=
$
(
"<div class='title'>"
+
operationList
[
i
].
operationName
+
"</div>"
);
var
divSubTitleWrap
=
$
(
"<div class='sub-title-wrap'> </div>"
);
...
...
This diff is collapsed.
Click to expand it.
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