Files
InventoryTraker-Box/InventoryTraker.Web/js/report/DistributionReportController.js
T
2016-09-23 15:12:46 -04:00

15 lines
432 B
JavaScript

(function () {
'use strict';
window.app.controller('DistributionReportController',
function($scope, reportSvc, downloadSvc) {
var vm = this;
vm.loadData = reportSvc.loadDistributionReport;
vm.query = reportSvc.distributionQuery;
vm.distributionData = reportSvc.distributionData;
vm.export = function(params) {
reportSvc.exportDistributionReport(params)
.success(downloadSvc.success);
}
});
})();