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
dd46b3cc
Commit
dd46b3cc
authored
Nov 08, 2022
by
NGO THI HONG
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing code
parent
a7b3962d
Hide whitespace changes
Inline
Side-by-side
Showing
14 changed files
with
186 additions
and
197 deletions
+186
-197
abweb/common/css/newdash/app.css
+6
-6
abweb/common/header.html
+1
-1
abweb/common/js/header.js
+80
-118
abweb/html/display-menu.html
+0
-10
abweb/html/index.html
+6
-5
abweb/html/main-footer.html
+1
-1
abweb/html/notification-content.html
+1
-1
abweb/html/pickup.html
+6
-2
abweb/js/dashboard/dashboard.js
+2
-2
abweb/js/notification-content/notification-content.js
+44
-8
abweb/js/operationSelect/operation-select.js
+9
-8
abweb/js/pickup/pickup.js
+28
-27
abweb/js/template/template.js
+0
-7
abweb/js/topPage/topPage.js
+2
-1
No files found.
abweb/common/css/newdash/app.css
View file @
dd46b3cc
...
...
@@ -11038,7 +11038,7 @@ ul.card-list > li:not(.selected):not(.not-found):hover{
}
.select-card-list .arrow-icon {
background-image: url("
..
/common/img/icon_arrow_down.svg");
background-image: url("
/abweb
/common/img/icon_arrow_down.svg");
background-size: contain;
background-repeat: no-repeat;
width: 14px;
...
...
@@ -20590,7 +20590,7 @@ button {
list-style: none;
}
.list-menu button .arrow-icon{
background-image: url("
..
/common/img/icon_arrow_right.svg");
background-image: url("
/abweb
/common/img/icon_arrow_right.svg");
background-size: contain;
width: 17px;
height: 17px;
...
...
@@ -20689,7 +20689,7 @@ button {
.type-icon .report:before{
content: '';
background-image: url("
..
/common/img/type_icon_report.svg");
background-image: url("
/abweb
/common/img/type_icon_report.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
...
...
@@ -20699,7 +20699,7 @@ button {
}
.type-icon .questionary:before{
content: '';
background-image: url("
..
/common/img/type_icon_questionary.svg");
background-image: url("
/abweb
/common/img/type_icon_questionary.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
...
...
@@ -20709,7 +20709,7 @@ button {
}
.type-icon .inspection:before{
content: '';
background-image: url("
..
/common/img/type_icon_inspection.svg");
background-image: url("
/abweb
/common/img/type_icon_inspection.svg");
background-size: contain;
background-repeat: no-repeat;
background-position: center;
...
...
@@ -20719,7 +20719,7 @@ button {
}
.type-icon .proccess:before{
content: '
'
;
background-image
:
url("
..
/common/img/type_icon_proccess.svg")
;
background-image
:
url("
/abweb
/common/img/type_icon_proccess.svg")
;
background-size
:
contain
;
background-repeat
:
no-repeat
;
background-position
:
center
;
...
...
abweb/common/header.html
View file @
dd46b3cc
...
...
@@ -29,7 +29,7 @@
<img
src=
"../common/img/menu_icon_account_setting.svg"
type=
"image"
alt=
""
class=
"navbar-dropdown-icon lang"
lang=
"account_setting"
>
<span
class=
"lang"
style=
" color: #6c757d;"
lang=
"account_setting"
></span>
</a>
<a
class=
"dropdown-item "
href=
"
#"
data-toggle=
"modal"
data-target=
"#confirm-modal"
>
<a
class=
"dropdown-item "
href=
"
login.html"
>
<img
src=
"../common/img/menu_icon_logout.svg"
type=
"image"
alt=
""
class=
"navbar-dropdown-icon lang"
lang=
"dspLogout"
>
<span
class=
"lang"
style=
" color: #6c757d;"
lang=
"dspLogout"
></span>
</a>
...
...
abweb/common/js/
foot
er.js
→
abweb/common/js/
head
er.js
View file @
dd46b3cc
/**
*
Common js for footer
.
*
header js for index
.
* ※Code is written mainly for dashboard and operationList.
*
* @since cms:1.4.3.2&1.4.3.3 web:1.0
*/
var
FOOT
ER
=
{};
var
HEAD
ER
=
{};
/**
* Change specific footer bottom to active.
*
* @param {String} bottomNavId
*/
FOOTER
.
activeBottomNav
=
function
(
bottomNavId
)
{
let
elm
=
$
(
'#'
+
bottomNavId
);
if
(
typeof
elm
!==
'object'
)
{
console
.
log
(
'FOOTER.activeBottomNav:elm !== object:'
+
bottomNavId
);
return
;
}
elm
.
removeClass
(
'text-secondary'
);
elm
.
addClass
(
'text-primary'
);
let
img
=
elm
.
find
(
'img'
)[
0
];
if
(
img
&&
img
.
getAttribute
(
'data-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-src'
);
}
};
/**
* change inactive all footer bottom
*/
FOOTER
.
inactiveAllBottomNav
=
function
()
{
let
navs
=
document
.
getElementsByClassName
(
'bottom-nav'
);
for
(
i
=
0
;
i
<
navs
.
length
;
i
++
)
{
navs
[
i
].
className
=
navs
[
i
].
className
.
replace
(
'text-primary'
,
'text-secondary'
);
let
img
=
navs
[
i
].
querySelector
(
'img'
);
if
(
img
&&
img
.
getAttribute
(
'data-inactive-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-inactive-src'
);
}
}
};
/**
* Go page of index.html.
* Store tab id in session for want to show display.
*
* @param {String} tabId
*/
FOOTER
.
goIndexPage
=
function
(
tabId
)
{
sessionStorage
.
activeTab
=
tabId
;
COMMON
.
goUrlWithCurrentParams
(
DAFAULT_PAGE
);
};
/**
* is the url index.html?
*/
FOOTER
.
isIndexPage
=
function
()
{
if
(
typeof
location
===
'object'
&&
typeof
location
.
pathname
===
'string'
)
{
if
(
location
.
pathname
.
includes
(
CONSTANT
.
PAGE_NAME
.
DEFAULT
)
==
true
)
{
return
true
;
}
}
return
false
;
};
/**
* Initialize with any navigation
*
* @param {String} bottomNav
*/
FOOTER
.
activeInitBottomNav
=
function
(
bottomNav
)
{
FOOTER
.
inactiveAllBottomNav
();
FOOTER
.
activeBottomNav
(
bottomNav
);
};
/**
* Go page of dashboard
*/
FOOTER
.
goDashboard
=
function
()
{
sessionStorage
.
activeTab
=
CONSTANT
.
PAGE_TAB
.
DASHBOARD
;
FOOTER
.
activeInitBottomNav
(
'dashboardBottomNav'
);
if
(
FOOTER
.
isIndexPage
())
{
TOP
.
showPage
(
CONSTANT
.
PAGE_NAME
.
DASHBOARD
);
return
;
}
FOOTER
.
goIndexPage
(
CONSTANT
.
PAGE_NAME
.
DASHBOARD
);
};
/**
* Go page of operationList
*/
FOOTER
.
goOperationList
=
function
()
{
sessionStorage
.
activeTab
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
FOOTER
.
activeInitBottomNav
(
'operationListBottomNav'
);
if
(
FOOTER
.
isIndexPage
())
{
TOP
.
showPage
(
CONSTANT
.
PAGE_NAME
.
OPERATION_LIST
);
return
;
}
FOOTER
.
goIndexPage
(
CONSTANT
.
PAGE_NAME
.
OPERATION_LIST
);
};
/**
* Go to active tab when footer was loaded.
* If it is no active tab, go to page in settings.
*/
FOOTER
.
initFooter
=
function
()
{
$
(
'#footer'
).
load
(
CONSTANT
.
PAGE_NAME
.
FOOTER
,
function
()
{
if
(
typeof
sessionStorage
!=
'undefined'
&&
typeof
sessionStorage
.
activeTab
!=
'undefined'
)
{
if
(
sessionStorage
.
activeTab
==
CONSTANT
.
PAGE_TAB
.
DASHBOARD
)
{
FOOTER
.
goDashboard
();
}
else
{
FOOTER
.
goOperationList
();
}
return
;
}
FOOTER
.
goOperationList
();
// CHK.loadDashboardSetting(function() {
// if (CHK.dashboardSetting.dashboardHome) {
// FOOTER.goDashboard();
// } else {
// FOOTER.goOperationList();
// }
// });
});
};
/** Direct home page setting */
HEADER
.
goToHomePage
=
function
(
pageId
)
{
DashboardSetting
.
getSettingData
(
function
(
settings
)
{
if
(
settings
.
dashboardHome
==
1
)
{
HEADER
.
goDashboard
();
}
else
{
HEADER
.
goOperationList
();
}
});
}
/**
* Go page of operationList
*/
HEADER
.
goOperationList
=
function
()
{
$
(
'#footer'
).
load
(
CONSTANT
.
PAGE_NAME
.
FOOTER
,
function
()
{
sessionStorage
.
activeTab
=
CONSTANT
.
PAGE_TAB
.
OPERATION_LIST
;
HEADER
.
activeInitBottomNav
(
'operationListBottomNav'
);
TOP
.
showPage
(
CONSTANT
.
PAGE_NAME
.
OPERATION_LIST
);
});
};
/**
* Go page of dashboard
*/
HEADER
.
goDashboard
=
function
()
{
COMMON
.
avwScreenMove
(
"dashboard.html"
);
};
/**
* Initialize with any navigation
*
* @param {String} bottomNav
*/
HEADER
.
activeInitBottomNav
=
function
(
bottomNav
)
{
HEADER
.
inactiveAllBottomNav
();
HEADER
.
activeBottomNav
(
bottomNav
);
};
/**
* change inactive all footer bottom
*/
HEADER
.
inactiveAllBottomNav
=
function
()
{
let
navs
=
document
.
getElementsByClassName
(
'bottom-nav'
);
for
(
i
=
0
;
i
<
navs
.
length
;
i
++
)
{
navs
[
i
].
className
=
navs
[
i
].
className
.
replace
(
'text-primary'
,
'text-secondary'
);
let
img
=
navs
[
i
].
querySelector
(
'img'
);
if
(
img
&&
img
.
getAttribute
(
'data-inactive-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-inactive-src'
);
}
}
};
/**
* Change specific footer bottom to active.
*
* @param {String} bottomNavId
*/
HEADER
.
activeBottomNav
=
function
(
bottomNavId
)
{
let
elm
=
$
(
'#'
+
bottomNavId
);
if
(
typeof
elm
!==
'object'
)
{
console
.
log
(
'HEADER.activeBottomNav:elm !== object:'
+
bottomNavId
);
return
;
}
elm
.
removeClass
(
'text-secondary'
);
elm
.
addClass
(
'text-primary'
);
let
img
=
elm
.
find
(
'img'
)[
0
];
if
(
img
&&
img
.
getAttribute
(
'data-src'
))
{
img
.
src
=
img
.
getAttribute
(
'data-src'
);
}
};
\ No newline at end of file
abweb/html/display-menu.html
deleted
100644 → 0
View file @
a7b3962d
<!-- view display type menu -->
<div
class=
"view"
>
<a
href=
"#"
class=
"text-decoration-none view-btn view-list-btn"
>
<img
src=
"../common/img/icon_view_list.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"listDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
<a
href=
"#"
class=
"text-decoration-none view-btn view-block-btn active"
>
<img
src=
"../common/img/icon_view_block.svg"
alt=
""
class=
"list-block-icon mx-1 lang"
lang=
"gridDisplay"
type=
"image"
data-toggle=
"tooltip"
data-placement=
"bottom"
title=
""
>
</a>
</div>
\ No newline at end of file
abweb/html/index.html
View file @
dd46b3cc
...
...
@@ -21,15 +21,15 @@
<script
src=
"../common/js/constant.js?__UPDATEID__"
></script>
<script
src=
"../common/js/common.js?__UPDATEID__"
></script>
<script
src=
"../js/operationList/operationList.js?__UPDATEID__"
></script>
<script
src=
"../js/topPage/topPage.js?__UPDATEID__"
></script>
<script
src=
"../js/dashboardSetting/check-dashboard-setting.js?__UPDATEID__"
></script>
<script
src=
"/abweb/js/dashboardSetting/dashboard-setting.js?__UPDATEID__"
></script>
<script
src=
"../js/dashboard/dashboard.js?__UPDATEID__"
></script>
<script
src=
"../common/js/footer.js?__UPDATEID__"
></script>
<script
src=
"/abweb/common/js/header.js?__UPDATEID__"
></script>
<script
src=
"/abweb/js/topPage/topPage.js?__UPDATEID__"
></script>
<script
src=
"../common/js/app.js?__UPDATEID__"
defer
></script>
</head>
<body
onload=
"TOP.init();"
style=
"position: relative; margin-top: 53px;"
>
<body
style=
"position: relative; margin-top: 53px;"
>
<!--作業一覧画面-->
<section
id=
"operationList"
class=
"page-content"
style=
"display: none;"
>
...
...
@@ -197,7 +197,7 @@
<!--ローディング-->
<div
id=
"check_loading"
style=
"display:none; position: relative; overflow:hidden;"
>
<p
id=
"checkLoadingMessage"
></p>
<div
id=
"checkLoadingImage"
><img
src=
'
${check}images/transferLoading.gif
'
/></div>
<div
id=
"checkLoadingImage"
><img
src=
'
/abweb/img/loading.svg
'
/></div>
</div>
</body>
</html>
\ No newline at end of file
abweb/html/main-footer.html
View file @
dd46b3cc
...
...
@@ -2,7 +2,7 @@
<nav
class=
"d-flex justify-content-around"
>
<!--ダッシュボード-->
<a
id=
"dashboardBottomNav"
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary bottom-nav"
href=
"
javascript:FOOTER.goDashboard();
"
>
<a
id=
"dashboardBottomNav"
class=
"d-block w-100 text-center py-2 text-decoration-none text-secondary bottom-nav"
href=
"
dashboard.html
"
>
<img
src=
"../img/dashboard/icon_dashboard_inactive.svg"
data-inactive-src=
"../img/dashboard/icon_dashboard_inactive.svg"
data-src=
"../img/dashboard/icon_dashboard.svg"
alt=
"buttonDashboard"
class=
"p-1"
>
<div
class=
"fs-7 multi-lang"
data-msg=
"buttonDashboard"
></div>
</a>
...
...
abweb/html/notification-content.html
View file @
dd46b3cc
...
...
@@ -13,7 +13,7 @@
</ul>
</div>
<div
class=
"modal-footer"
>
<button
type=
"button"
class=
"btn btn-primary lang"
lang=
"selection
"
></button>
<button
type=
"button"
class=
"btn btn-primary lang"
lang=
"selection"
onclick=
"NotificationSelect.onClickTempalte();
"
></button>
<button
type=
"button"
class=
"btn btn-tertiary lang"
lang=
"dspCancel"
data-dismiss=
"modal"
></button>
</div>
</div>
...
...
abweb/html/pickup.html
View file @
dd46b3cc
...
...
@@ -29,10 +29,14 @@
<script
type=
"text/javascript"
src=
"../js/dashboard/dashboard.js"
></script>
<script
type=
"text/javascript"
src=
"../js/template/template.js"
></script>
<script
type=
"text/javascript"
src=
"../js/pickup/pickup.js"
></script>
<script
type=
"text/javascript"
>
$
(
document
).
ready
(
function
(){
PICKUP
.
init
();
});
</script>
</head>
<body
onload=
"PICKUP.init();"
>
<body
>
<!-- header -->
<div
id=
"includedHeader"
></div>
...
...
abweb/js/dashboard/dashboard.js
View file @
dd46b3cc
...
...
@@ -147,8 +147,8 @@ DASHBOARD.updateDataPickups = function (settings, dataDashboard) {
item
.
enabled
=
enabled
;
}
item
.
count
=
0
;
if
(
dataDashboard
[
item
.
id
])
{
item
.
count
=
dataDashboard
[
item
.
id
];
if
(
dataDashboard
.
dashboard
[
item
.
id
])
{
item
.
count
=
dataDashboard
.
dashboard
[
item
.
id
];
}
});
};
...
...
abweb/js/notification-content/notification-content.js
View file @
dd46b3cc
...
...
@@ -48,24 +48,26 @@ NotificationSelect.selectOperationClick = function () {
/**
* init data, action when screen onload
*/
NotificationSelect
.
init
=
function
(
)
{
NotificationSelect
.
init
=
function
(
selectedCallback
)
{
NotificationSelect
.
getNotificationSelectData
(
function
(
data
)
{
NotificationSelect
.
createNotificationSelectList
(
data
);
if
(
typeof
data
===
'undefined'
||
data
==
null
)
return
;
NotificationSelect
.
createNotificationSelectList
(
data
.
pushMessageTemplate
);
});
NotificationSelect
.
selectOperationClick
();
NotificationSelect
.
changeSelectCallback
=
selectedCallback
;
};
/**
* Implement notification select html
* @returns
*/
NotificationSelect
.
createNotificationSelectList
=
function
(
data
)
{
$
(
"#notificationSelectList"
).
empty
();
if
(
typeof
data
===
'undefined'
||
data
.
length
<
1
)
return
;
NotificationSelect
.
createNotificationSelectList
=
function
(
pushMessageTemplate
)
{
$
(
"#notificationSelectList"
).
empty
();
if
(
typeof
pushMessageTemplate
===
'undefined'
||
pushMessageTemplate
.
length
<
1
)
return
;
let
classSelected
=
"selected"
;
for
(
let
i
=
0
;
i
<
data
.
length
;
i
++
)
{
for
(
let
i
=
0
;
i
<
pushMessageTemplate
.
length
;
i
++
)
{
let
divName
=
$
(
"<div class='pl-5 py-3 h-100 w-100 align-self-center select-label'>"
+
data
[
i
].
name
+
"</div>"
);
let
divName
=
$
(
"<div class='pl-5 py-3 h-100 w-100 align-self-center select-label'>"
+
pushMessageTemplate
[
i
].
name
+
"</div>"
);
let
divIcon
=
$
(
"<div class='flex-shrink-1 mx-3 align-self-center'>"
+
"<button class='btn btn-link border collapsed' type='button' data-toggle='collapse' data-target='#collapse"
+
i
+
"' aria-expanded='true' aria-controls='collapse"
+
i
+
"'>"
+
"<div class='arrow-icon'></div>"
...
...
@@ -76,7 +78,7 @@ NotificationSelect.init = function () {
classSelected
=
""
;
let
divValue
=
$
(
"<div id='collapse"
+
i
+
"' class='collapse' aria-labelledby='heading"
+
i
+
"' data-parent='#accordion"
+
i
+
"'></div>"
);
let
divBodyValue
=
$
(
"<div class='card-body'>"
+
data
[
i
].
value
+
"</div>"
);
let
divBodyValue
=
$
(
"<div class='card-body'>"
+
pushMessageTemplate
[
i
].
value
+
"</div>"
);
let
messageli
=
$
(
"<li class='accordion' id='accordion"
+
i
+
"'></li>"
);
...
...
@@ -86,7 +88,40 @@ NotificationSelect.init = function () {
divValue
.
append
(
divBodyValue
);
messageli
.
append
(
divParentName
);
messageli
.
append
(
divValue
);
if
(
i
==
0
)
{
NotificationSelect
.
nameSelected
=
pushMessageTemplate
[
i
].
name
;
NotificationSelect
.
valueSelected
=
pushMessageTemplate
[
i
].
value
;
}
$
(
"#notificationSelectList"
).
append
(
messageli
);
}
}
/**
* handle click event of select button
*/
NotificationSelect
.
onClickTempalte
=
function
()
{
NotificationSelect
.
chooseTemplate
();
};
/**
* Get operation select and call back function in main page
*/
NotificationSelect
.
chooseTemplate
=
function
()
{
let
param
=
{};
param
.
nameSelected
=
NotificationSelect
.
nameSelected
;
param
.
valueSelected
=
NotificationSelect
.
valueSelected
;
NotificationSelect
.
closeModal
();
if
(
NotificationSelect
.
changeSelectCallback
&&
typeof
NotificationSelect
.
changeSelectCallback
===
'function'
)
{
NotificationSelect
.
changeSelectCallback
(
param
.
valueSelected
);
}
};
/**
* close setting dialog
*/
NotificationSelect
.
closeModal
=
function
()
{
$
(
'#select-template-modal .close'
).
click
();
};
\ No newline at end of file
abweb/js/operationSelect/operation-select.js
View file @
dd46b3cc
...
...
@@ -52,7 +52,8 @@ OperationSelect.selectOperationClick = function () {
*/
OperationSelect
.
init
=
function
(
selectedCallback
)
{
OperationSelect
.
getOperationSelectData
(
function
(
data
)
{
OperationSelect
.
createOperationSelectList
(
data
);
if
(
typeof
data
===
'undefined'
||
data
==
null
)
return
;
OperationSelect
.
createOperationSelectList
(
data
.
operationList
);
});
OperationSelect
.
selectOperationClick
();
OperationSelect
.
changeSelectCallback
=
selectedCallback
;
...
...
@@ -62,14 +63,14 @@ OperationSelect.init = function (selectedCallback) {
* Implement operation select html
* @returns
*/
OperationSelect
.
createOperationSelectList
=
function
(
data
)
{
OperationSelect
.
createOperationSelectList
=
function
(
operationList
)
{
$
(
"#operationSelectList"
).
empty
();
if
(
typeof
data
===
'undefined'
||
data
.
length
<
1
)
return
;
for
(
let
i
=
0
;
i
<
data
.
length
;
i
++
)
{
if
(
typeof
operationList
===
'undefined'
||
operationList
.
length
<
1
)
return
;
for
(
let
i
=
0
;
i
<
operationList
.
length
;
i
++
)
{
let
messageli
=
$
(
"<li class='card mb-2' name = 'operationId_"
+
data
[
i
].
operationId
+
"' ></li>"
);
let
ahrefRequiredFlg
=
$
(
"<a href='#' class='d-block px-5 py-3 text-decoration-none select-label' data-key='"
+
data
[
i
].
operationId
+
"' data-name='"
+
data
[
i
].
operationName
+
"' ></a>"
);
let
divText
=
$
(
"<div class='fs-12 text-truncate d-block'>"
+
data
[
i
].
operationName
+
"</div>"
);
let
messageli
=
$
(
"<li class='card mb-2' name = 'operationId_"
+
operationList
[
i
].
operationId
+
"' ></li>"
);
let
ahrefRequiredFlg
=
$
(
"<a href='#' class='d-block px-5 py-3 text-decoration-none select-label' data-key='"
+
operationList
[
i
].
operationId
+
"' data-name='"
+
operationList
[
i
].
operationName
+
"' ></a>"
);
let
divText
=
$
(
"<div class='fs-12 text-truncate d-block'>"
+
operationList
[
i
].
operationName
+
"</div>"
);
ahrefRequiredFlg
.
append
(
divText
);
messageli
.
append
(
ahrefRequiredFlg
);
...
...
@@ -97,7 +98,7 @@ OperationSelect.init = function (selectedCallback) {
param
.
operationNameSelected
=
OperationSelect
.
operationNameSelected
;
OperationSelect
.
closeModal
();
if
(
OperationSelect
.
changeSelectCallback
&&
typeof
OperationSelect
.
changeSelectCallback
===
'function'
)
{
OperationSelect
.
changeSelectCallback
(
param
);
OperationSelect
.
changeSelectCallback
(
param
.
operationIdSelected
,
param
.
operationNameSelected
);
}
};
...
...
abweb/js/pickup/pickup.js
View file @
dd46b3cc
...
...
@@ -48,9 +48,9 @@ PICKUP.defaultPickupList = {
}
PICKUP
.
baseApiUrl
=
CONSTANT
.
URL
.
CMS
.
BASE
+
ClientData
.
userInfo_accountPath
()
+
CONSTANT
.
URL
.
CMS
.
API
.
BASE
;
PICKUP
.
getNewReportListApiUrl
=
PICKUP
.
baseApiUrl
+
'newReport'
;
PICKUP
.
getContinuousWorkListApiUrl
=
PICKUP
.
baseApiUrl
+
'workingFlow'
;
PICKUP
.
getReportWithWarningsListApiUrl
=
PICKUP
.
baseApiUrl
+
'warningWithReport'
;
PICKUP
.
getNewReportListApiUrl
=
PICKUP
.
baseApiUrl
+
'newReport
/
'
;
PICKUP
.
getContinuousWorkListApiUrl
=
PICKUP
.
baseApiUrl
+
'workingFlow
/
'
;
PICKUP
.
getReportWithWarningsListApiUrl
=
PICKUP
.
baseApiUrl
+
'warningWithReport
/
'
;
/**
* Call get new report list api get data
...
...
@@ -116,9 +116,6 @@ PICKUP.init = function() {
console
.
log
(
"PICKUP.init"
);
TEMPLATE
.
loadHearder
(
"#includedHeader"
);
TEMPLATE
.
loadConfirmModal
(
"#includedConfirmModal"
);
TEMPLATE
.
loadDisplaymenu
(
"#includedNewReportMenuDisplay"
);
TEMPLATE
.
loadDisplaymenu
(
"#includedContinuousWorkMenuDisplay"
);
TEMPLATE
.
loadDisplaymenu
(
"#includedReportWithWarningsMenuDisplay"
);
PICKUP
.
initSettingActivePickup
();
PICKUP
.
settingPickup
();
...
...
@@ -139,12 +136,12 @@ PICKUP.settingPickup = function() {
if
(
settings
.
continousWork
)
{
$
(
"#liTabContinousWork"
).
removeClass
(
'd-none'
);
//
PICKUP.initContinuosWorkTab();
PICKUP
.
initContinuosWorkTab
();
}
if
(
settings
.
reportWarning
)
if
(
settings
.
warningReport
)
{
$
(
"#liTabReportWithWarning"
).
removeClass
(
'd-none'
);
//
PICKUP.initReportWithWarningsTab();
PICKUP
.
initReportWithWarningsTab
();
}
});
}
...
...
@@ -272,16 +269,17 @@ PICKUP.sortNewReportList = function(operationList) {
* @returns
*/
PICKUP
.
createNewReportList
=
function
(
operationListOld
)
{
if
(
typeof
operationListOld
===
'undefined'
||
operationListOld
.
length
<
1
)
{
PICKUP
.
showNotFoundPickupItem
(
"#newReport-list"
);
$
(
'#viewMenuNewReport'
).
addClass
(
'd-none'
);
return
;
}
let
operationList
=
PICKUP
.
sortNewReportList
(
operationListOld
);
$
(
'#viewMenuNewReport'
).
removeClass
(
'd-none'
);
$
(
"#newReport-list"
).
empty
();
PICKUP
.
countNewReportList
=
0
;
if
(
typeof
operationList
===
'undefined'
||
operationList
.
length
<
1
)
{
PICKUP
.
showNotFoundPickupItem
(
"#newReport-list"
);
$
(
'#viewMenuNewReport'
).
addClass
(
'd-none'
);
return
;
}
$
(
'#newReport-list'
).
addClass
(
'task-list view-content view-block'
);
let
classIcon
;
for
(
let
i
=
0
;
i
<
operationList
.
length
;
i
++
)
{
...
...
@@ -393,17 +391,18 @@ PICKUP.sortContinousWorkList = function(operationList) {
* @returns
*/
PICKUP
.
createContinousWorkList
=
function
(
operationListOld
)
{
let
operationList
=
PICKUP
.
sortContinousWorkList
(
operationListOld
);
$
(
'#viewMenuContinuousWork'
).
removeClass
(
'd-none'
);
$
(
"#continousWork-list"
).
empty
();
PICKUP
.
countContinousWorkReport
=
0
;
if
(
typeof
operationList
===
'undefined'
||
operationList
.
length
<
1
)
{
PICKUP
.
showNotFoundPickupItem
(
"#continousWork-list"
);
$
(
'#viewMenuContinuousWork'
).
addClass
(
'd-none'
);
if
(
typeof
operationListOld
===
'undefined'
||
operationListOld
.
length
<
1
)
{
PICKUP
.
showNotFoundPickupItem
(
"#continousWork-list"
);
$
(
'#viewMenuContinuousWork'
).
addClass
(
'd-none'
);
return
;
}
let
operationList
=
PICKUP
.
sortContinousWorkList
(
operationListOld
);
$
(
'#viewMenuContinuousWork'
).
removeClass
(
'd-none'
);
$
(
"#continousWork-list"
).
empty
();
PICKUP
.
countContinousWorkReport
=
0
;
$
(
'#continousWork-list'
).
addClass
(
'task-list view-content view-block'
);
for
(
let
i
=
0
;
i
<
operationList
.
length
;
i
++
)
{
...
...
@@ -603,16 +602,18 @@ PICKUP.initWarningReportWithContinuousReportType = function(report) {
* @returns
*/
PICKUP
.
createReportWithWarningList
=
function
(
operationListOld
)
{
if
(
typeof
operationListOld
===
'undefined'
||
operationListOld
.
length
<
1
)
{
PICKUP
.
showNotFoundPickupItem
(
"#reportWithWarnings-list"
);
$
(
'#viewMenuReportWithWarnings'
).
addClass
(
'd-none'
);
return
;
}
let
operationList
=
PICKUP
.
sortWarningList
(
operationListOld
);
$
(
'#viewMenuReportWithWarnings'
).
removeClass
(
'd-none'
);
$
(
"#reportWithWarnings-list"
).
empty
();
PICKUP
.
countReportWithWarning
=
0
;
if
(
typeof
operationList
===
'undefined'
||
operationList
.
length
<
1
)
{
PICKUP
.
showNotFoundPickupItem
(
"#reportWithWarnings-list"
);
$
(
'#viewMenuReportWithWarnings'
).
addClass
(
'd-none'
);
return
;
}
$
(
'#reportWithWarnings-list'
).
addClass
(
'task-list view-content view-block'
);
const
msgLevelReport
=
I18N
.
i18nText
(
'reportLevelReport'
);
...
...
abweb/js/template/template.js
View file @
dd46b3cc
...
...
@@ -38,13 +38,6 @@ TEMPLATE.loadOperationSelect = function(elmentId, selectCallback) {
});
}
/** Template load display menu */
TEMPLATE
.
loadDisplaymenu
=
function
(
elmentId
)
{
$
(
elmentId
).
load
(
"display-menu.html"
,
function
()
{
I18N
.
initi18n
();
});
}
/**
* show confirm model
*/
...
...
abweb/js/topPage/topPage.js
View file @
dd46b3cc
...
...
@@ -16,6 +16,7 @@ $(document).ready(function () {
//setting msg of html
COMMON
.
updateLang
();
TOP
.
init
();
});
/**
...
...
@@ -23,7 +24,7 @@ $(document).ready(function () {
*/
TOP
.
init
=
function
()
{
COMMON
.
showLoading
();
FOOTER
.
initFooter
();
//app should get data after initFooter
HEADER
.
goToHomePage
();
COMMON
.
closeLoading
();
};
...
...
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