Remove inventory, delete transactions
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
(function() {
|
||||
"use strict";
|
||||
|
||||
window.app.directive('inventoryInfo', inventoryInfo);
|
||||
|
||||
function inventoryInfo() {
|
||||
return {
|
||||
scope: { "inventory": "=" },
|
||||
templateUrl: '/inventory/template/inventoryInfo.tmpl.cshtml',
|
||||
controller: controller,
|
||||
controllerAs: 'vm'
|
||||
}
|
||||
}
|
||||
|
||||
controller.$inject = ['$scope'];
|
||||
function controller($scope) {
|
||||
var vm = this;
|
||||
vm.inventory = $scope.inventory;
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user