Index: src/stock-issue-mobile/issue-mobile.wrapper.jsx =================================================================== diff -u -N -rb75bddaa910e1b598b72840752019a32290d1089 -r6f147b6cc323ac8dee2538777d4a055e98bf5a21 --- src/stock-issue-mobile/issue-mobile.wrapper.jsx (.../issue-mobile.wrapper.jsx) (revision b75bddaa910e1b598b72840752019a32290d1089) +++ src/stock-issue-mobile/issue-mobile.wrapper.jsx (.../issue-mobile.wrapper.jsx) (revision 6f147b6cc323ac8dee2538777d4a055e98bf5a21) @@ -17,7 +17,7 @@ import ReactDOM from 'react-dom'; import IssueApp from './issue-app'; import { Provider } from "react-redux"; -import store from "./store"; +import store from '../stock-adjustment-mobile/store'; import MetaTags from 'react-meta-tags'; (function () { @@ -28,10 +28,10 @@ .directive('stockIssueMobile', stockIssueMobile); stockIssueMobile.$inject = ['facilityFactory', 'stockAdjustmentCreationService', - 'orderableGroupService', 'offlineService', 'existingStockOrderableGroupsFactory', 'stockReasonsFactory']; + 'orderableGroupService', 'offlineService', 'existingStockOrderableGroupsFactory', 'stockReasonsFactory', 'sourceDestinationService']; function stockIssueMobile(facilityFactory, stockAdjustmentCreationService, - orderableGroupService, offlineService, existingStockOrderableGroupsFactory, stockReasonsFactory) { + orderableGroupService, offlineService, existingStockOrderableGroupsFactory, stockReasonsFactory, sourceDestinationService) { return { template: '
', replace: true, @@ -48,6 +48,7 @@ facilityFactory={facilityFactory} existingStockOrderableGroupsFactory={existingStockOrderableGroupsFactory} stockReasonsFactory={stockReasonsFactory} + sourceDestinationService={sourceDestinationService} offlineService={offlineService} /> ,