12 lines
399 B
JavaScript
12 lines
399 B
JavaScript
(function () {
|
|
'use strict';
|
|
|
|
window.app.controller('MonthlyInventoryReportController', MonthlyInventoryReportController);
|
|
|
|
MonthlyInventoryReportController.$inject = ['$scope', 'reportSvc'];
|
|
function MonthlyInventoryReportController($scope, reportSvc) {
|
|
var vm = this;
|
|
vm.loadData = reportSvc.loadMonthlyInventoryData;
|
|
vm.monthlyInventoryData = reportSvc.monthlyInventoryData;
|
|
}
|
|
})(); |