Start adding MonthlyInventory

This commit is contained in:
2016-09-16 12:22:50 -04:00
parent 3bdd202e81
commit 679ef75152
6 changed files with 38 additions and 5 deletions
@@ -0,0 +1,11 @@
(function () {
'use strict';
window.app.controller('MonthlyInventoryReportController', MonthlyInventoryReportController);
MonthlyInventoryReportController.$inject = ['$scope', 'reportSvc'];
function MonthlyInventoryReportController($scope, reportSvc) {
var vm = this;
vm.monthlyInventoryData = reportSvc.monthlyInventoryData;
}
})();