Rename Monthly Inventory to Movement
This commit is contained in:
@@ -0,0 +1,12 @@
|
||||
(function () {
|
||||
'use strict';
|
||||
|
||||
window.app.controller('MovementReportController', MovementReportController);
|
||||
|
||||
MovementReportController.$inject = ['$scope', 'reportSvc'];
|
||||
function MovementReportController($scope, reportSvc) {
|
||||
var vm = this;
|
||||
vm.loadData = reportSvc.loadMovementData;
|
||||
vm.movementData = reportSvc.movementData;
|
||||
}
|
||||
})();
|
||||
Reference in New Issue
Block a user