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