Add user management
This commit is contained in:
@@ -1,17 +1,16 @@
|
||||
(function() {
|
||||
'use strict';
|
||||
|
||||
window.app.directive('movementReport', movementReport);
|
||||
function movementReport() {
|
||||
return {
|
||||
scope: { movementData: "=" },
|
||||
templateUrl: '/report/template/movementReport.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
}
|
||||
window.app.directive('movementReport',
|
||||
function() {
|
||||
return {
|
||||
scope: { movementData: "=" },
|
||||
templateUrl: '/report/template/movementReport.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
});
|
||||
|
||||
controller.$inject = ['$scope', '$uibModal', 'inventorySvc'];
|
||||
function controller($scope, $uibModal, inventorySvc) {
|
||||
var vm = this;
|
||||
vm.movementData = $scope.movementData;
|
||||
|
||||
Reference in New Issue
Block a user