Intial
This commit is contained in:
@@ -0,0 +1,54 @@
|
||||
(function() {
|
||||
'use strict';
|
||||
|
||||
window.app.directive('customerDetails', customerDetails);
|
||||
function customerDetails() {
|
||||
return {
|
||||
scope: {
|
||||
customer: '='
|
||||
},
|
||||
templateUrl: '/customer/template/customerDetails.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
}
|
||||
|
||||
controller.$inject = ['$scope', '$uibModal'];
|
||||
function controller($scope, $uibModal) {
|
||||
var vm = this;
|
||||
|
||||
vm.customer = $scope.customer;
|
||||
vm.selectedView = 'details';
|
||||
vm.setView = setView;
|
||||
vm.edit = edit;
|
||||
vm.addOpportunity = addOpportunity;
|
||||
vm.addRisk = addRisk;
|
||||
vm.customer = $scope.customer;
|
||||
|
||||
function setView(view) {
|
||||
vm.selectedView = view;
|
||||
}
|
||||
|
||||
|
||||
function edit() {
|
||||
$uibModal.open({
|
||||
template: '<edit-customer customer="customer" />',
|
||||
scope: angular.extend($scope.$new(true), { customer: vm.customer })
|
||||
});
|
||||
}
|
||||
|
||||
function addOpportunity() {
|
||||
$uibModal.open({
|
||||
template: '<add-opportunity customer="customer" />',
|
||||
scope: angular.extend($scope.$new(true), { customer: vm.customer })
|
||||
});
|
||||
}
|
||||
|
||||
function addRisk() {
|
||||
$uibModal.open({
|
||||
template: '<add-risk customer="customer" />',
|
||||
scope: angular.extend($scope.$new(true), { customer: vm.customer })
|
||||
});
|
||||
}
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user