Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mytime
Project
Project
Details
Activity
Releases
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Narendar Vakiti
mytime
Commits
7014788f
Unverified
Commit
7014788f
authored
Jul 31, 2018
by
rsayannagari-nisum-com
Committed by
GitHub
Jul 31, 2018
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #92 from nisum-inc/Issues_Domains_controller
issues in domain module
parents
393c6ba3
3d3c7609
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
28 deletions
+18
-28
DomainServiceImpl.java
...main/java/com/nisum/mytime/service/DomainServiceImpl.java
+0
-5
DomainController.js
src/main/webapp/WEB-INF/controllers/DomainController.js
+6
-13
newRoleTemplate.html
src/main/webapp/WEB-INF/templates/newRoleTemplate.html
+12
-10
No files found.
src/main/java/com/nisum/mytime/service/DomainServiceImpl.java
View file @
7014788f
...
@@ -211,11 +211,6 @@ public class DomainServiceImpl implements DomainService {
...
@@ -211,11 +211,6 @@ public class DomainServiceImpl implements DomainService {
boolean
check
=
false
;
boolean
check
=
false
;
int
count
=
0
;
int
count
=
0
;
List
<
Domains
>
domainListbyAccountId
=
domainRepo
.
findByAccountId
(
accountId
);
List
<
Domains
>
domainListbyAccountId
=
domainRepo
.
findByAccountId
(
accountId
);
for
(
Domains
domains:
domainListbyAccountId
)
{
if
(
domains
.
getDomainName
().
equalsIgnoreCase
(
domainName
))
count
++;
}
boolean
deleveryManagersCheck
=
fromDB
.
toString
().
contentEquals
(
fromUser
.
toString
());
boolean
deleveryManagersCheck
=
fromDB
.
toString
().
contentEquals
(
fromUser
.
toString
());
List
<
Domains
>
domainList
=
domainRepo
.
findByDomainNameAndAccountId
(
domainName
,
accountId
);
List
<
Domains
>
domainList
=
domainRepo
.
findByDomainNameAndAccountId
(
domainName
,
accountId
);
for
(
Domains
domains:
domainListbyAccountId
)
for
(
Domains
domains:
domainListbyAccountId
)
...
...
src/main/webapp/WEB-INF/controllers/DomainController.js
View file @
7014788f
...
@@ -12,7 +12,7 @@ myApp.controller("domainController",
...
@@ -12,7 +12,7 @@ myApp.controller("domainController",
});
});
var
getCellTemplate
=
'<p class="col-lg-12"><p class="col-lg-4"><i class="fa fa-pencil-square-o fa-2x" ng-show="row.entity.status ==
\'
Active
\'
" aria-hidden="true" id="UpdateBtnVisible" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="center" title="Edit" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Update
\'
)"></i></p>'
+
var
getCellTemplate
=
'<p class="col-lg-12"><p class="col-lg-4"><i class="fa fa-pencil-square-o fa-2x" ng-show="row.entity.status ==
\'
Active
\'
" aria-hidden="true" id="UpdateBtnVisible" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="center" title="Edit" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Update
\'
)"></i></p>'
+
'<p class="col-lg-4"><i class="fa fa-minus-circle fa-2x" aria-hidden="true" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="left" title="Delete" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Delete
\'
)"></i></p></p>'
;
'<p class="col-lg-4"><i class="fa fa-minus-circle fa-2x" aria-hidden="true" style="font-size:1.5em;margin-top:3px;cursor:pointer;" data-placement="left" title="Delete" onmouseenter="$(this).tooltip(
\'
show
\'
)" ng-click="grid.appScope.getRowData(row,
\'
Delete
\'
)"></i></p></p>'
;
$scope
.
gridOptions
=
{
$scope
.
gridOptions
=
{
...
@@ -264,14 +264,14 @@ myApp.controller("domainController",
...
@@ -264,14 +264,14 @@ myApp.controller("domainController",
$scope
.
cancel
=
function
()
{
$scope
.
cancel
=
function
()
{
var
showConfirmDialog
=
false
;
var
showConfirmDialog
=
false
;
var
totalFields
=
$scope
.
myForm
.
$$controls
;
var
totalFields
=
$scope
.
myForm
.
$$controls
;
for
(
key
in
totalFields
)
{
for
(
key
in
totalFields
)
{
console
.
log
(
"Model value of"
+
key
+
" ==>"
+
totalFields
[
key
].
$modelValue
)
console
.
log
(
"Model value of"
+
key
+
" ==>"
+
totalFields
[
key
].
$modelValue
)
if
(
totalFields
[
key
].
$modelValue
!==
''
&&
totalFields
[
key
].
$modelValue
!==
undefined
&&
totalFields
[
key
].
$modelValue
.
length
!==
0
)
{
if
(
totalFields
[
key
].
$modelValue
!==
''
&&
totalFields
[
key
].
$modelValue
!==
undefined
&&
totalFields
[
key
].
$modelValue
.
length
!==
0
)
{
console
.
log
(
"Came here!"
);
console
.
log
(
"Came here!"
);
showConfirmDialog
=
true
;
showConfirmDialog
=
true
;
}
}
}
}
if
(
showConfirmDialog
){
if
(
showConfirmDialog
){
$mdDialog
.
show
(
$mdDialog
.
confirm
({
$mdDialog
.
show
(
$mdDialog
.
confirm
({
skipHide
:
true
,
skipHide
:
true
,
...
@@ -365,8 +365,6 @@ myApp.controller("domainController",
...
@@ -365,8 +365,6 @@ myApp.controller("domainController",
}
}
}
}
$scope
.
ifEmployeeNameExists
=
function
(
empName
)
{
$scope
.
ifEmployeeNameExists
=
function
(
empName
)
{
$scope
.
selectedEmployeeNames
.
push
(
manager
.
employeeName
);
removeDuplicates
(
$scope
.
selectedEmployeeNames
);
return
$scope
.
selectedEmployeeNames
.
includes
(
empName
);
return
$scope
.
selectedEmployeeNames
.
includes
(
empName
);
}
}
$scope
.
validateFields
=
function
(
action
){
$scope
.
validateFields
=
function
(
action
){
...
@@ -424,11 +422,6 @@ myApp.controller("domainController",
...
@@ -424,11 +422,6 @@ myApp.controller("domainController",
};
};
function
removeDuplicates
(
arr
){
return
arr
.
filter
(
function
(
item
,
pos
)
{
return
arr
.
indexOf
(
item
)
==
pos
;
})
}
}
}
});
});
\ No newline at end of file
src/main/webapp/WEB-INF/templates/newRoleTemplate.html
View file @
7014788f
...
@@ -91,7 +91,18 @@
...
@@ -91,7 +91,18 @@
<h4>
Organization Info
</h4>
<h4>
Organization Info
</h4>
<div
class=
"form-group"
>
<div
class=
"form-group"
>
<table>
<table>
<tr>
<tr>
<td
colspan=
"4"
><b>
Functional Group:
</b><span
class=
"mandatory"
></span></td>
<td
colspan=
"8"
><md-select
ng-model=
"functionalGroup"
md-selected-text=
"getSelectedFunctionalGroup()"
id=
"functionalGroup"
>
<md-optgroup
label=
"Functional Org"
>
<md-option
ng-value=
"functionalGroup"
ng-repeat=
"functionalGroup in functionalGroups"
>
{{functionalGroup}}
</md-option>
</md-optgroup>
</md-select></td>
</tr>
<tr>
<td
colspan=
"4"
><b>
Role:
</b></td>
<td
colspan=
"4"
><b>
Role:
</b></td>
<td
colspan=
"8"
><md-select
ng-model=
"empRole"
<td
colspan=
"8"
><md-select
ng-model=
"empRole"
md-selected-text=
"getSelectedRole()"
id=
"empRole"
>
<md-optgroup
md-selected-text=
"getSelectedRole()"
id=
"empRole"
>
<md-optgroup
...
@@ -146,16 +157,7 @@
...
@@ -146,16 +157,7 @@
</md-optgroup> </md-select></td>
</md-optgroup> </md-select></td>
</tr> -->
</tr> -->
<tr>
<td
colspan=
"4"
><b>
Functional Group:
</b><span
class=
"mandatory"
></span></td>
<td
colspan=
"8"
><md-select
ng-model=
"functionalGroup"
md-selected-text=
"getSelectedFunctionalGroup()"
id=
"functionalGroup"
>
<md-optgroup
label=
"Functional Org"
>
<md-option
ng-value=
"functionalGroup"
ng-repeat=
"functionalGroup in functionalGroups"
>
{{functionalGroup}}
</md-option>
</md-optgroup>
</md-select></td>
</tr>
<tr>
<tr>
<td
colspan=
"1"
><b>
HasPassport:
</b><span
class=
"mandatory"
></span></td>
<td
colspan=
"1"
><b>
HasPassport:
</b><span
class=
"mandatory"
></span></td>
...
...
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