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

14 lines
374 B
JavaScript

(function () {
'use strict';
window.app.controller('MovementReportController',
function($scope, reportSvc, downloadSvc) {
var vm = this;
vm.loadData = reportSvc.loadMovementData;
vm.movementData = reportSvc.movementData;
vm.export = function(month) {
reportSvc.exportMovementData({ month: month })
.success(downloadSvc.success);
}
});
})();