Commit d3547db3 authored by Prayas Jain's avatar Prayas Jain

Updated_ACCOUNTS_PAGE

parent f04bcb2a
...@@ -11,7 +11,7 @@ server.context-path=/myTeam/ ...@@ -11,7 +11,7 @@ server.context-path=/myTeam/
#Local Database configuration #Local Database configuration
spring.data.mongodb.host=localhost spring.data.mongodb.host=localhost
spring.data.mongodb.port=27017 spring.data.mongodb.port=27017
spring.data.mongodb.database=myTeamDB spring.data.mongodb.database=mytime
quartz.enabled=true quartz.enabled=true
cron.expression=0 45 10/3 1/1 * ? * cron.expression=0 45 10/3 1/1 * ? *
......
...@@ -204,7 +204,7 @@ myApp.controller("dashboardController", function($scope, $http, myFactory,export ...@@ -204,7 +204,7 @@ myApp.controller("dashboardController", function($scope, $http, myFactory,export
columnDefs : [ columnDefs : [
{field : 'projectName',displayName: 'Project', enableColumnMenu: true, enableSorting: true,minWidth : 100,width: 150}, {field : 'projectName',displayName: 'Project', enableColumnMenu: true, enableSorting: true,minWidth : 100,width: 150},
{field : 'accountName',displayName: 'Account', enableColumnMenu: false, enableSorting: false,minWidth : 100,width: 150}, {field : 'accountName',displayName: 'Account', enableColumnMenu: false, enableSorting: false,minWidth : 100,width: 150},
{field : 'managerName',displayName: 'Manager Name', enableColumnMenu: false, enableSorting: false,minWidth : 100,width: 150}, {field : 'deliveryLeadIds[0].employeeName',displayName: 'Delivery Lead',minWidth : 100,width: 150},
{field : 'billableStatus',displayName: 'Billability', enableColumnMenu: false, enableSorting: false,minWidth : 100,width: 150}, {field : 'billableStatus',displayName: 'Billability', enableColumnMenu: false, enableSorting: false,minWidth : 100,width: 150},
{field : 'projectStartDate',displayName: 'Start Date', enableColumnMenu: false, enableSorting: false, cellFilter: 'date:"dd-MMM-yyyy"',minWidth : 100,width: 150}, {field : 'projectStartDate',displayName: 'Start Date', enableColumnMenu: false, enableSorting: false, cellFilter: 'date:"dd-MMM-yyyy"',minWidth : 100,width: 150},
{field : 'projectEndDate',displayName: 'End Date', enableColumnMenu: false, enableSorting: false, cellFilter: 'date:"dd-MMM-yyyy"' ,minWidth : 100,width: 150}, {field : 'projectEndDate',displayName: 'End Date', enableColumnMenu: false, enableSorting: false, cellFilter: 'date:"dd-MMM-yyyy"' ,minWidth : 100,width: 150},
...@@ -248,7 +248,7 @@ myApp.controller("dashboardController", function($scope, $http, myFactory,export ...@@ -248,7 +248,7 @@ myApp.controller("dashboardController", function($scope, $http, myFactory,export
] ]
}; };
var getCellActiveTemplateBilling='<div ng-show="COL_FIELD==true"><p class="col-lg-12">Y</P></div><div ng-show="COL_FIELD==false"><p class="col-lg-12">N</p></div>'; // var getCellActiveTemplateBilling='<div ng-show="COL_FIELD==true"><p class="col-lg-12">Y</P></div><div ng-show="COL_FIELD==false"><p class="col-lg-12">N</p></div>';
$scope.gridOptionsEmpBillability= { $scope.gridOptionsEmpBillability= {
paginationPageSizes : [ 10, 20, 30, 40, 50, 100], paginationPageSizes : [ 10, 20, 30, 40, 50, 100],
...@@ -268,7 +268,7 @@ myApp.controller("dashboardController", function($scope, $http, myFactory,export ...@@ -268,7 +268,7 @@ myApp.controller("dashboardController", function($scope, $http, myFactory,export
cellFilter: 'date:"dd-MMM-yyyy"',minWidth : 100,width: 150 cellFilter: 'date:"dd-MMM-yyyy"',minWidth : 100,width: 150
}, },
{field : 'comments',displayName: 'Comments', enableColumnMenu: false, enableSorting: false,minWidth : 100,width: 150}, {field : 'comments',displayName: 'Comments', enableColumnMenu: false, enableSorting: false,minWidth : 100,width: 150},
{field : 'resourceStatus',displayName: 'Status',enableColumnMenu: false, enableSorting: false,cellTemplate:getCellActiveTemplateBilling,enableCellEdit: false,minWidth : 100,width: 150} {field : 'resourceStatus',displayName: 'Status',enableColumnMenu: false, enableSorting: false,enableCellEdit: false,minWidth : 100,width: 150}
] ]
}; };
......
...@@ -476,7 +476,7 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS ...@@ -476,7 +476,7 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS
$('.md-select-value')[0].childNodes[0].innerHTML = null $('.md-select-value')[0].childNodes[0].innerHTML = null
$('.md-select-value')[1].childNodes[0].innerHTML = null $('.md-select-value')[1].childNodes[0].innerHTML = null
$('.md-select-value')[2].childNodes[0].innerHTML = null $('.md-select-value')[2].childNodes[0].innerHTML = null
$('.md-select-value')[3].childNodes[0].innerHTML = null // $('.md-select-value')[3].childNodes[0].innerHTML = null
$('.md-datepicker-input')[0].value = null; $('.md-datepicker-input')[0].value = null;
$('.md-datepicker-input')[1].value = null; $('.md-datepicker-input')[1].value = null;
$('.md-datepicker-input')[2].value = null; $('.md-datepicker-input')[2].value = null;
...@@ -764,6 +764,7 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS ...@@ -764,6 +764,7 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS
}else{ }else{
$scope.employeeRole = "Lead"; $scope.employeeRole = "Lead";
} }
console.log($scope.employeeRole)
//$scope.employeeRole = userData.role; //$scope.employeeRole = userData.role;
//$scope.employeeShift = userData.shift; //$scope.employeeShift = userData.shift;
$scope.newBillingStartDate = new Date(userData.newBillingStartDate); $scope.newBillingStartDate = new Date(userData.newBillingStartDate);
...@@ -921,12 +922,14 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS ...@@ -921,12 +922,14 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS
} }
}; };
$scope.changeEmpBillableStatus = function(){ $scope.changeEmpBillableStatus = function(){
$scope.newBillingStartDate = null; //$scope.newBillingStartDate = null;
if($scope.templateTitle == "Add"){ if($scope.templateTitle == "Add"){
$('.md-datepicker-input')[0].value = null; $('.md-datepicker-input')[0].value = null;
} }
else{ else{
$('.md-datepicker-input')[3].value = new Date($scope.projectEndDate).toISOString().slice(0,10); $scope.endDate = new Date(dataToPass.projectEndDate);
$('.md-datepicker-input')[3].value = new Date(dataToPass.projectEndDate);
} }
} }
...@@ -1170,8 +1173,6 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS ...@@ -1170,8 +1173,6 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS
} }
$scope.validateFields = function (action) { $scope.validateFields = function (action) {
console.log(new Date($scope.parentData.newBillingStartDate));
console.log($scope.newBillingStartDate);
var project = $scope.projectId; var project = $scope.projectId;
var projectName = $scope.projectName; var projectName = $scope.projectName;
var account = $scope.account; var account = $scope.account;
...@@ -1448,13 +1449,13 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS ...@@ -1448,13 +1449,13 @@ myApp.controller("projectController", function ($scope, myFactory, exportUiGridS
return "Please select a employee role"; return "Please select a employee role";
} }
} }
$scope.getSelectedEmpShift = function(){ // $scope.getSelectedEmpShift = function(){
if ($scope.employeeShift != undefined ) { // if ($scope.employeeShift != undefined ) {
return $scope.employeeShift; // return $scope.employeeShift;
} else { // } else {
return "Please select a employee shift"; // return "Please select a employee shift";
} // }
} // }
// $scope.getProjectSelected = function(){ // $scope.getProjectSelected = function(){
// if ($scope.projectModel !== undefined) { // if ($scope.projectModel !== undefined) {
......
...@@ -18,6 +18,8 @@ myApp.constant('appConfig', { ...@@ -18,6 +18,8 @@ myApp.constant('appConfig', {
appName: "MyTime", appName: "MyTime",
//appUri: "http://10.3.45.11:8080/myTeam/", //appUri: "http://10.3.45.11:8080/myTeam/",
appUri: "http://localhost:8080/myTeam/", appUri: "http://localhost:8080/myTeam/",
version:"1.0", version:"1.0",
empStartId:16001, empStartId:16001,
......
...@@ -19,7 +19,7 @@ ...@@ -19,7 +19,7 @@
<div class="row col-lg-12"> <div class="row col-lg-12">
<div id="gridTest" ui-grid="gridOptions" ui-grid-pagination <div id="gridTest" ui-grid="gridOptions" ui-grid-pagination
class="myGrid manage-accounts"> class="myGrid grid-full-view">
<div class="watermark" ng-show="!gridOptions.data.length">No <div class="watermark" ng-show="!gridOptions.data.length">No
data available</div> data available</div>
</div> </div>
......
...@@ -171,7 +171,7 @@ ...@@ -171,7 +171,7 @@
</table> </table>
<div role="alert"> <div role="alert">
<span class="alert alert alert-danger" style="color: red; ">{{alertMsg}}</span> <span style="color: red; ">{{alertMsg}}</span>
</div> </div>
</div> </div>
</div> </div>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment