@argusoft/medplat-app-shell 1.0.6 → 1.0.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (264) hide show
  1. package/package.json +139 -141
  2. package/src/GlobalErrorBoundary.jsx +31 -0
  3. package/src/SilentErrorFallback.jsx +68 -0
  4. package/src/TrackingProviderWrapper.jsx +40 -0
  5. package/src/_tests_/__mocks__/MockTranslationProvider.jsx +21 -0
  6. package/src/_tests_/__mocks__/ckeditor.js +45 -0
  7. package/src/_tests_/__mocks__/fileMock.js +1 -0
  8. package/src/_tests_/__mocks__/useranalytics.js +5 -0
  9. package/src/_tests_/views/components/Dashboard/DashboardUI.test.jsx +137 -0
  10. package/src/_tests_/views/components/Dashboard/DashboardUIMock.js +877 -0
  11. package/src/_tests_/views/components/ForgotPassword/ForgotPassword.test.jsx +314 -0
  12. package/src/_tests_/views/components/LocationDirective/LocationDirective.test.jsx.disable +229 -0
  13. package/src/_tests_/views/components/LocationDirective/mockLocationDirective.js +810 -0
  14. package/src/_tests_/views/components/LocationType/MockLocationType.js +42259 -0
  15. package/src/_tests_/views/components/LocationType/addlocationtype.test.jsx.disable +276 -0
  16. package/src/_tests_/views/components/LocationType/editlocationtype.test.jsx.disable +262 -0
  17. package/src/_tests_/views/components/LocationType/locationtype.test.jsx.disable +148 -0
  18. package/src/_tests_/views/components/Profile/UpdateProfileModalData.js +4396 -0
  19. package/src/_tests_/views/components/Profile/updateprofilemodal.test.jsx +282 -0
  20. package/src/_tests_/views/components/SideBar/MockSideBar.js +1379 -0
  21. package/src/_tests_/views/components/SideBar/SideBar.test.jsx +98 -0
  22. package/src/_tests_/views/components/SystemConfig/ManageSystemConfig/AddManageSystemConfig.test.jsx.disable +164 -0
  23. package/src/_tests_/views/components/SystemConfig/ManageSystemConfig/UpdateManageSystemConfig.test.jsx.disable +157 -0
  24. package/src/_tests_/views/components/SystemConfig/MockSystemConfig.js +1280 -0
  25. package/src/_tests_/views/components/SystemConfig/SystemConfig.test.jsx.disable +165 -0
  26. package/src/_tests_/views/components/login/Login.test.jsx +276 -0
  27. package/src/_tests_/views/components/login/MockAuthorise.js +2414 -0
  28. package/src/_tests_/views/components/login/ServiceResponse.js +595 -0
  29. package/src/_tests_/views/components/user/MockManageUser.js +7965 -0
  30. package/src/_tests_/views/components/user/manageuser.test.jsx.disable +989 -0
  31. package/src/_tests_/views/components/user/mockUsersData.js +582 -0
  32. package/src/assets/img/OASISLogin.png +0 -0
  33. package/src/assets/img/bahaarNew.png +0 -0
  34. package/src/assets/img/dnhdd4K.png +0 -0
  35. package/src/assets/img/govtofup.png +0 -0
  36. package/src/assets/img/sewarural4K.png +0 -0
  37. package/src/assets/img/techo4K.png +0 -0
  38. package/src/assets/img/up4K.png +0 -0
  39. package/src/common/HolidayList.jsx +573 -0
  40. package/src/common/MalaciaousInputUtil.js +23 -0
  41. package/src/common/SafeHtml.jsx +17 -0
  42. package/src/common/VersionManager.jsx +109 -0
  43. package/src/common/constants/PerformanceDashboard.js +514 -0
  44. package/src/common/constants/app.constant.js +781 -0
  45. package/src/common/constants/cccVerificationConstants.js +18 -0
  46. package/src/common/constants/fhsrConstant.js +33 -0
  47. package/src/common/constants/gvk-verification.constant.js +76 -0
  48. package/src/common/constants/search.constant.js +23 -0
  49. package/src/common/constants/teleconsulatationConstant.jsx +1339 -0
  50. package/src/common/directives/SearchTemplate.jsx +784 -0
  51. package/src/common/directives/SearchTemplate.scss +14 -0
  52. package/src/common/dynamicView/DynamicView.jsx +353 -0
  53. package/src/common/dynamicView/InputFieldComponent.jsx +1501 -0
  54. package/src/common/dynamicView/InputViewComponent.jsx +298 -0
  55. package/src/common/dynamicView/InputViewComponent.scss +15 -0
  56. package/src/common/env.js +5 -0
  57. package/src/common/filters/locationNameFilter.js +26 -0
  58. package/src/common/fontAwesomeIcons/FontAwesomeIcons.jsx +27 -0
  59. package/src/common/fontAwesomeIcons/FontAwesomeIconsNames.js +1968 -0
  60. package/src/common/fontPreferences/fontSizeProvider.jsx +34 -0
  61. package/src/common/fontPreferences/fontSizeSelector.jsx +116 -0
  62. package/src/common/getAssignedFeature/getAssignedFeature.js +32 -0
  63. package/src/common/interceptors/AxiosInterceptor.js +216 -0
  64. package/src/common/languageTranslator/TranslationContext.js +5 -0
  65. package/src/common/languageTranslator/TranslationProvider.jsx +24 -0
  66. package/src/common/languageTranslator/i18n.js +49 -0
  67. package/src/common/services/AuthenticateService.js +116 -0
  68. package/src/common/services/DownloadFile.js +35 -0
  69. package/src/common/services/ForgotPassword.js +18 -0
  70. package/src/common/services/FormConfiguratorService.js +195 -0
  71. package/src/common/services/GlobalApis.js +84 -0
  72. package/src/common/services/InterceptorNavigationService.js +17 -0
  73. package/src/common/services/LocationService.js +65 -0
  74. package/src/common/services/LocationType.js +11 -0
  75. package/src/common/services/QueryBuilder.js +36 -0
  76. package/src/common/services/Roles.js +28 -0
  77. package/src/common/services/SyncWithServer.js +15 -0
  78. package/src/common/services/SystemConfig.js +15 -0
  79. package/src/common/services/TranslationService.js +70 -0
  80. package/src/common/services/TwoFactorService.js +7 -0
  81. package/src/common/services/Users.js +91 -0
  82. package/src/common/services/Webtasks.js +27 -0
  83. package/src/common/services/util/Convert-pad-data-to-API-format.jsx +167 -0
  84. package/src/common/services/util/Convert-to-UI-format.jsx +82 -0
  85. package/src/common/services/util/EmptyPrescriptionPadData.jsx +11 -0
  86. package/src/common/services/util/GeneralUtil.js +456 -0
  87. package/src/common/services/util/Prescription-pad-util.js +339 -0
  88. package/src/common/services/util/PrescriptionPadData.js +67 -0
  89. package/src/common/services/util/PrescriptionpadCommonUtil.js +96 -0
  90. package/src/common/services/util/ReportFieldUtil.jsx +398 -0
  91. package/src/common/services/util/WebSocketContext.jsx +261 -0
  92. package/src/common/syncWithServer/SyncWithServerDialog.jsx +170 -0
  93. package/src/common/syncWithServer/SyncWithServerDialogSkeleton.jsx +67 -0
  94. package/src/common/tests/CustomWrapper.jsx +49 -0
  95. package/src/common/tests/TranslationWrapper.jsx +38 -0
  96. package/src/common/themeProvider/ColorInputs.jsx +97 -0
  97. package/src/common/themeProvider/EditableColorInput.jsx +128 -0
  98. package/src/common/themeProvider/ThemeEditor.jsx +319 -0
  99. package/src/common/themeProvider/ThemeProvider.jsx +210 -0
  100. package/src/common/themeProvider/themeConfig.js +558 -0
  101. package/src/common/toaster/toaster.jsx +30 -0
  102. package/src/firebaseConfig.js +24 -0
  103. package/src/global.scss +221 -0
  104. package/src/hooks/.gitkeep +0 -0
  105. package/src/hooks/useAESEncryption.js +56 -0
  106. package/src/hooks/useCaching.js +43 -0
  107. package/src/hooks/useDebounce.js +34 -0
  108. package/src/hooks/useDebounceFn.js +50 -0
  109. package/src/hooks/useDownloadPdf.js +358 -0
  110. package/src/hooks/useDownloadXlsx.js +55 -0
  111. package/src/hooks/useListValueFieldValues.js +30 -0
  112. package/src/hooks/useLocationHierarchies.js +63 -0
  113. package/src/hooks/useLocationHierarchyTranslate.js +16 -0
  114. package/src/hooks/useOnline.js +27 -0
  115. package/src/hooks/usePagination.js +63 -0
  116. package/src/hooks/useRefreshToken.js +87 -0
  117. package/src/hooks/useScript.js +25 -0
  118. package/src/hooks/useStopwatch.js +75 -0
  119. package/src/hooks/useTrackEvent.js +22 -0
  120. package/src/hooks/useWebAudioRecorder.js +115 -0
  121. package/src/layout/LoaderComponet.jsx +22 -0
  122. package/src/layout/LoaderContext.jsx +29 -0
  123. package/src/layout/mainLayout/AdaptiveZoom.jsx +27 -0
  124. package/src/layout/mainLayout/Chatbot.jsx +243 -0
  125. package/src/layout/mainLayout/Layout.jsx +445 -0
  126. package/src/layout/mainLayout/Profile/UpdateProfileModal.jsx +684 -0
  127. package/src/layout/mainLayout/header/LogoutModal.jsx +131 -0
  128. package/src/layout/mainLayout/header/Navbar.jsx +1677 -0
  129. package/src/layout/mainLayout/header/Navbar.scss +4 -0
  130. package/src/layout/mainLayout/header/index.js +0 -0
  131. package/src/layout/mainLayout/sidebar/SideBar.jsx +1402 -0
  132. package/src/layout/mainLayout/sidebar/Sidebar.css +159 -0
  133. package/src/layout/mainLayout/sidebar/index.js +0 -0
  134. package/src/logo.svg +1 -0
  135. package/src/reportWebVitals.js +13 -0
  136. package/src/setupFirebaseMessaging.js +28 -0
  137. package/src/setupTests.js +8 -0
  138. package/src/store/actions/AuthenticationActions.js +0 -0
  139. package/src/store/actions/ReportsActions.js +0 -0
  140. package/src/store/actions/TranslationAction.js +0 -0
  141. package/src/store/index.js +8 -0
  142. package/src/store/reducer.js +46 -0
  143. package/src/store/reducers/AuthenticationReducer.js +50 -0
  144. package/src/store/reducers/CalendarEventReducer.js +41 -0
  145. package/src/store/reducers/ConditionClipboardReducer.js +45 -0
  146. package/src/store/reducers/FeatureReducer.js +27 -0
  147. package/src/store/reducers/FormConfiguratorReducer.js +38 -0
  148. package/src/store/reducers/LoadingReducer.js +20 -0
  149. package/src/store/reducers/MembersAuthenticationReducer.js +28 -0
  150. package/src/store/reducers/PrescriptionPadReducer.js +329 -0
  151. package/src/store/reducers/QuestionaireReducer.js +29 -0
  152. package/src/store/reducers/ReportsReducer.js +24 -0
  153. package/src/store/reducers/SkeletonReducer.js +20 -0
  154. package/src/store/reducers/ThemeReducer.js +106 -0
  155. package/src/store/reducers/TranslationReducer.js +126 -0
  156. package/src/store/reducers/dashboardEditorSlice.js +77 -0
  157. package/src/store/reducers/districtHealthDashboardSlice.js +58 -0
  158. package/src/store/reducers/immunizationSlice.js +234 -0
  159. package/src/store/slices/dashboardPagesSlice.js +51 -0
  160. package/src/store/slices/dashboardSlice.js +14 -0
  161. package/src/utils/.gitkeep +0 -0
  162. package/src/utils/FormConstants.js +2629 -0
  163. package/src/utils/GujaratTopoChart.jsx +483 -0
  164. package/src/utils/UUIDgenerator.js +8 -0
  165. package/src/utils/appointment-utils/appointment-utils.js +123 -0
  166. package/src/utils/feature.js +42 -0
  167. package/src/utils/getThemeColor.js +12 -0
  168. package/src/utils/localStorageHelper.js +11 -0
  169. package/src/utils/notifications/enable-push-notifications.js +27 -0
  170. package/src/utils/resolveAppliedStyle.js +11 -0
  171. package/src/utils/themeConfigs.js +1483 -0
  172. package/src/views/custom-components/.gitkeep +0 -0
  173. package/src/views/custom-components/AgIconButton/RIf.jsx +14 -0
  174. package/src/views/custom-components/AgIconButton/button.jsx +108 -0
  175. package/src/views/custom-components/AgIconButton/waterDrop.jsx +95 -0
  176. package/src/views/custom-components/AgIconButton/waterDrop.scss +37 -0
  177. package/src/views/custom-components/AlertPlaceholder.jsx +32 -0
  178. package/src/views/custom-components/AllFaIconsSelector.jsx +56 -0
  179. package/src/views/custom-components/CkEditor/CkEditor.js +102 -0
  180. package/src/views/custom-components/CustomAccordion.jsx +72 -0
  181. package/src/views/custom-components/CustomActionIcons.jsx +118 -0
  182. package/src/views/custom-components/CustomAutoComplete.jsx +188 -0
  183. package/src/views/custom-components/CustomCheckBox.jsx +60 -0
  184. package/src/views/custom-components/CustomConfirmationModal.jsx +118 -0
  185. package/src/views/custom-components/CustomCountrySelect.jsx +129 -0
  186. package/src/views/custom-components/CustomDatePicker.jsx +122 -0
  187. package/src/views/custom-components/CustomDropdown.jsx +191 -0
  188. package/src/views/custom-components/CustomFileUpload.jsx +387 -0
  189. package/src/views/custom-components/CustomFullCalendar.jsx +514 -0
  190. package/src/views/custom-components/CustomInfiniteScroll.jsx +126 -0
  191. package/src/views/custom-components/CustomRadioComponent.jsx +65 -0
  192. package/src/views/custom-components/CustomStatsComponent.jsx +114 -0
  193. package/src/views/custom-components/CustomSvgUpload.jsx +170 -0
  194. package/src/views/custom-components/CustomSwitch.jsx +37 -0
  195. package/src/views/custom-components/CustomTabPanel.jsx +19 -0
  196. package/src/views/custom-components/CustomTextArea.jsx +62 -0
  197. package/src/views/custom-components/CustomTextArea.scss +27 -0
  198. package/src/views/custom-components/CustomTextField.jsx +116 -0
  199. package/src/views/custom-components/CustomToggleSwitch.jsx +138 -0
  200. package/src/views/custom-components/CustomTooltip.jsx +51 -0
  201. package/src/views/custom-components/CustomZoomImage.jsx +134 -0
  202. package/src/views/custom-components/CustomizedTable/CustomizedTableV2.jsx +1407 -0
  203. package/src/views/custom-components/CustomizedTable/VirtualizeTableBody.jsx +295 -0
  204. package/src/views/custom-components/CustomizedTable/helper.jsx +159 -0
  205. package/src/views/custom-components/CustomizedTable.jsx +532 -0
  206. package/src/views/custom-components/EditInputField.jsx +174 -0
  207. package/src/views/custom-components/FieldDescription.jsx +22 -0
  208. package/src/views/custom-components/FileDisplayComponent.jsx +138 -0
  209. package/src/views/custom-components/FormItem.jsx +53 -0
  210. package/src/views/custom-components/GenericChart.jsx +80 -0
  211. package/src/views/custom-components/InfoBadge.jsx +60 -0
  212. package/src/views/custom-components/PostgresEditor.jsx +801 -0
  213. package/src/views/custom-components/ResizableEditAutocompleteField.jsx +249 -0
  214. package/src/views/custom-components/ResizableEditInputField.jsx +215 -0
  215. package/src/views/custom-components/ResizeableEditSelectField.jsx +197 -0
  216. package/src/views/custom-components/SideOverlay.jsx +113 -0
  217. package/src/views/custom-components/SideOverlay.scss +42 -0
  218. package/src/views/custom-components/calendar.scss +571 -0
  219. package/src/views/feature-components/.gitkeep +0 -0
  220. package/src/views/feature-components/Dashboard/DashboardUI.jsx +1043 -0
  221. package/src/views/feature-components/Dashboard/DhnddModal/AshaDataQualityVerificationModal.jsx +278 -0
  222. package/src/views/feature-components/Dashboard/PinFeatureModal.jsx +143 -0
  223. package/src/views/feature-components/Dashboard/QuickLinks.jsx +163 -0
  224. package/src/views/feature-components/Dashboard/Taskbar.jsx +56 -0
  225. package/src/views/feature-components/Dashboard/WebtasksFilterForm.jsx +109 -0
  226. package/src/views/feature-components/Dashboard/WidgetCard.jsx +161 -0
  227. package/src/views/feature-components/Dashboard/actionModal.jsx +263 -0
  228. package/src/views/feature-components/Dashboard/ekavachModal/HealthWorkerIncorrectDetailsModal.jsx +332 -0
  229. package/src/views/feature-components/Dashboard/ekavachModal/MoMaternalDeathVerifcationModal.jsx +275 -0
  230. package/src/views/feature-components/Dashboard/ekavachModal/MoVerficationForChildScreeningMoadal.jsx +566 -0
  231. package/src/views/feature-components/FeatureUsageAnalytics/FeatureUsageAnalytics.jsx +989 -0
  232. package/src/views/feature-components/Features/NewServerManagement.jsx +217 -0
  233. package/src/views/feature-components/Features/ServerManagement.scss +120 -0
  234. package/src/views/feature-components/ForgotPassword/ForgotPassword.jsx +226 -0
  235. package/src/views/feature-components/LocationDirective/LocationDirective.jsx +992 -0
  236. package/src/views/feature-components/LocationDirective/LocationDirectiveV2.jsx +909 -0
  237. package/src/views/feature-components/NotFound.jsx +66 -0
  238. package/src/views/feature-components/Onboarding/Onboarding.jsx +1400 -0
  239. package/src/views/feature-components/Skeletons.js +115 -0
  240. package/src/views/feature-components/Unauthorized.jsx +48 -0
  241. package/src/views/feature-components/VerifyRoute.jsx +88 -0
  242. package/src/views/feature-components/YearlyRecap/YearlyRecap.jsx +357 -0
  243. package/src/views/feature-components/YearlyRecap/components/RecapSlide.jsx +183 -0
  244. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationContext.js +5 -0
  245. package/src/views/feature-components/YearlyRecap/languageTranslator/TranslationProvider.jsx +26 -0
  246. package/src/views/feature-components/YearlyRecap/languageTranslator/i18n.js +46 -0
  247. package/src/views/feature-components/YearlyRecap/languageTranslator/translations.json +167 -0
  248. package/src/views/feature-components/YearlyRecap/slides/IntroSlide.jsx +233 -0
  249. package/src/views/feature-components/YearlyRecap/slides/MaternalHealthSlide.jsx +146 -0
  250. package/src/views/feature-components/YearlyRecap/slides/MetricSlide.jsx +227 -0
  251. package/src/views/feature-components/YearlyRecap/slides/OutroSlide.jsx +701 -0
  252. package/src/views/feature-components/YearlyRecap/slides/ReachSlide.jsx +273 -0
  253. package/src/views/feature-components/login/Login.jsx +840 -0
  254. package/src/views/feature-components/login/Login.scss +154 -0
  255. package/src/views/feature-components/login/LoginConfigurator.jsx +1149 -0
  256. package/src/views/feature-components/login/TwoFactorSetupModal.jsx +411 -0
  257. package/src/views/feature-components/login/simplifyMenu.js +45 -0
  258. package/src/views/feature-components/system-config/ManageSystemConfigs.jsx +284 -0
  259. package/src/views/feature-components/system-config/SystemConfig.jsx +299 -0
  260. package/src/views/feature-components/users/ChangePasswordModal.jsx +243 -0
  261. package/src/views/feature-components/users/PasswordField.jsx +56 -0
  262. package/dist/index.css +0 -1
  263. package/dist/index.js +0 -32001
  264. package/dist/index.js.map +0 -1
@@ -0,0 +1,2414 @@
1
+ export const mockedToken = {
2
+ access_token: '8b0609b2-2f27-4ae5-8647-4c941a2572df',
3
+ token_type: 'bearer',
4
+ refresh_token: '7ff4b3a2-497b-4007-b8d4-6259f6e7264b',
5
+ expires_in: 1799,
6
+ scope: 'write',
7
+ };
8
+
9
+ export const mockedMenuItems = {
10
+ 'techo.dashboard.cccverification': {
11
+ id: 199,
12
+ name: 'Command and Control Center',
13
+ navigationState: 'techo.dashboard.cccverification',
14
+ featureJson: '{"canFollowUpOverdueServices":true}',
15
+ },
16
+ 'techo.manage.moverification': {
17
+ id: 10,
18
+ name: 'MO Re-Verification - Level 2',
19
+ navigationState: 'techo.manage.moverification',
20
+ featureJson: '{}',
21
+ },
22
+ "techo.report.view({id:'8b437996-4334-473f-923e-47b43efe56ee'})": {
23
+ id: 263,
24
+ name: 'CFHC Report',
25
+ navigationState: "techo.report.view({id:'8b437996-4334-473f-923e-47b43efe56ee'})",
26
+ featureJson: '{"canDrillDown":true}',
27
+ isDynamicReport: true,
28
+ },
29
+ 'techo.manage.fhsrverification': {
30
+ id: 9,
31
+ name: 'MO CHFC Re-Verification',
32
+ navigationState: 'techo.manage.fhsrverification',
33
+ featureJson: '{}',
34
+ },
35
+ 'techo.dashboard.fhs': {
36
+ id: 5,
37
+ name: 'FHS Dashboard',
38
+ navigationState: 'techo.dashboard.fhs',
39
+ featureJson: '{}',
40
+ },
41
+ 'techo.dashboard.gvkverification': {
42
+ id: 12,
43
+ name: 'Call Center Verification',
44
+ navigationState: 'techo.dashboard.gvkverification',
45
+ featureJson:
46
+ '{"canAbsentVerification":false,"canFamilyVerification":false,"canGvkImmunisationVerification":false,"canHighriskFollowupVerification":false,"canPregnancyRegistrationsVerification":false,"canHighriskFollowupVerificationFowFhw":false,"canPregnancyRegistrationsPhoneNumberVerification":false,"canMemberMigrationOutVerification":false,"canMemberMigrationInVerification":false,"canDuplicateMemberVerification":true,"canPerformEligibleCoupleCounselling":false,"canBeneficiaryServiceVerification":false,"canAnc4Schedule":false,"canFamilyMigrationOutVerification":false}',
47
+ },
48
+ 'techo.manage.ancSearch': {
49
+ id: 152,
50
+ name: 'ANC Service Visit',
51
+ navigationState: 'techo.manage.ancSearch',
52
+ featureJson: '{"isShowHIPModal":true,"isShowConsentList":true,"isShowHealthIdModal":true}',
53
+ },
54
+ 'techo.manage.query': {
55
+ id: 19,
56
+ name: 'Query Builder',
57
+ navigationState: 'techo.manage.query',
58
+ featureJson: '{}',
59
+ },
60
+ 'techo.notification.all': {
61
+ id: 18,
62
+ name: 'Events Configured',
63
+ navigationState: 'techo.notification.all',
64
+ featureJson: '{}',
65
+ },
66
+ 'techo.manage.servermanage': {
67
+ id: 150,
68
+ name: 'Server Management',
69
+ navigationState: 'techo.manage.servermanage',
70
+ },
71
+ 'techo.manage.systemconfigs': {
72
+ id: 313,
73
+ name: 'Manage System Configurations',
74
+ navigationState: 'techo.manage.systemconfigs',
75
+ featureJson: '{"canAdd":false}',
76
+ },
77
+ 'techo.manage.syncServerManage': {
78
+ id: 325,
79
+ name: 'Sync Server Management',
80
+ navigationState: 'techo.manage.syncServerManage',
81
+ featureJson: '{}',
82
+ },
83
+ 'techo.manage.manage-widgets': {
84
+ id: 166,
85
+ name: 'Widgets management',
86
+ navigationState: 'techo.manage.manage-widgets',
87
+ featureJson: '{}',
88
+ },
89
+ 'techo.manage.queryexcelsheetgenerator': {
90
+ id: 228,
91
+ name: 'Query Excel Sheet Generator',
92
+ navigationState: 'techo.manage.queryexcelsheetgenerator',
93
+ },
94
+ 'techo.querymanagement': {
95
+ id: 285,
96
+ name: 'Query Management Tool',
97
+ navigationState: 'techo.querymanagement',
98
+ featureJson: '{}',
99
+ },
100
+ 'techo.admin.systemConstraints': {
101
+ id: 347,
102
+ name: 'Form Configurator',
103
+ navigationState: 'techo.admin.systemConstraints',
104
+ featureJson: '{}',
105
+ },
106
+ 'techo.manage.featureSync': {
107
+ id: 324,
108
+ name: 'Manage Feature Syncing',
109
+ navigationState: 'techo.manage.featureSync',
110
+ featureJson: '{}',
111
+ },
112
+ 'techo.manage.notification': {
113
+ id: 25,
114
+ name: 'Manage Notification',
115
+ navigationState: 'techo.manage.notification',
116
+ featureJson: '{}',
117
+ },
118
+ 'techo.manage.tipsoftheday': {
119
+ id: 231,
120
+ name: 'Tip Of The Day',
121
+ navigationState: 'techo.manage.tipsoftheday',
122
+ featureJson:
123
+ '{"canAddNewTipOfTheDay":true,"canManageEnglishTipOfTheDay":true,"canManageHindiTipOfTheDay":true,"canManageGujaratiTipOfTheDay":true}',
124
+ },
125
+ 'techo.manage.contentPreviewConfig': {
126
+ id: 236,
127
+ name: 'Content Preview Config',
128
+ navigationState: 'techo.manage.contentPreviewConfig',
129
+ },
130
+ 'techo.manage.faqs': {
131
+ id: 226,
132
+ name: 'Manage FAQ',
133
+ navigationState: 'techo.manage.faqs',
134
+ featureJson:
135
+ '{"canAddMasterQuestion":true, "canManageEnglishQuestion":true, "canManageHindiQuestion":true,\r\n "canManageGujaratiQuestion":true}',
136
+ },
137
+ 'techo.manage.timelineconfigs': {
138
+ id: 242,
139
+ name: 'Timeline Configuration',
140
+ navigationState: 'techo.manage.timelineconfigs',
141
+ featureJson:
142
+ '{"canAddNewTimeline":true,"canManageEnglishTimeline":true,"canManageHindiTimeline":true,"canManageGujaratiTimeline":true}',
143
+ },
144
+ 'techo.manage.cardconfigs': {
145
+ id: 225,
146
+ name: 'Card Configuration',
147
+ navigationState: 'techo.manage.cardconfigs',
148
+ featureJson:
149
+ '{"canAddMasterCard":true,"canModifyEnglishCard":true,"canModifyHindiCard":true,"canModifyGujaratiCard":true}',
150
+ },
151
+ 'techo.manage.valuesnmultimedia': {
152
+ id: 68,
153
+ name: 'Manage Values And Multimedia',
154
+ navigationState: 'techo.manage.valuesnmultimedia',
155
+ featureJson: '{}',
156
+ },
157
+ 'techo.manage.manageOpdLabTest': {
158
+ id: 272,
159
+ name: 'Manage OPD Lab Test',
160
+ navigationState: 'techo.manage.manageOpdLabTest',
161
+ featureJson: '{}',
162
+ },
163
+ 'techo.manage.menu': {
164
+ id: 4,
165
+ name: 'Features',
166
+ navigationState: 'techo.manage.menu',
167
+ featureJson: '{}',
168
+ },
169
+ 'techo.dashboard.callcenter': {
170
+ id: 232,
171
+ name: 'Call Center Dashboard',
172
+ navigationState: 'techo.dashboard.callcenter',
173
+ },
174
+ 'techo.manage.translator-label': {
175
+ id: 67,
176
+ name: 'Manage Translations',
177
+ navigationState: 'techo.manage.translator-label',
178
+ featureJson: '{}',
179
+ },
180
+ 'techo.manage.mobileMenuManagement': {
181
+ id: 359,
182
+ name: 'Mobile Menu Management',
183
+ navigationState: 'techo.manage.mobileMenuManagement',
184
+ featureJson: '{"canDrillDown":true}',
185
+ isDynamicReport: true,
186
+ },
187
+ 'techo.manage.drtechoUserApproval': {
188
+ id: 222,
189
+ name: 'Dr. Techo User Approval',
190
+ navigationState: 'techo.manage.drtechoUserApproval',
191
+ },
192
+ 'techo.manage.healthInfrastructureApproval': {
193
+ id: 221,
194
+ name: 'Health Infrastructure Approval',
195
+ navigationState: 'techo.manage.healthInfrastructureApproval',
196
+ },
197
+ 'techo.manage.dynamicform': {
198
+ id: 274,
199
+ name: 'Dynamic Form Builder',
200
+ navigationState: 'techo.manage.dynamicform',
201
+ featureJson: '{}',
202
+ },
203
+ 'techo.manage.featureUsage': {
204
+ id: 312,
205
+ name: 'Feature Usage Analytics',
206
+ navigationState: 'techo.manage.featureUsage',
207
+ featureJson: '{}',
208
+ },
209
+ 'techo.manage.sohElementConfiguration': {
210
+ id: 260,
211
+ name: 'Element Configuration',
212
+ navigationState: 'techo.manage.sohElementConfiguration',
213
+ featureJson: '{"normal":true,"advanced":true}',
214
+ },
215
+ 'techo.manage.sohApp': {
216
+ id: 309,
217
+ name: 'SoH Application',
218
+ navigationState: 'techo.manage.sohApp',
219
+ featureJson: '{}',
220
+ },
221
+ "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})": {
222
+ id: 233,
223
+ name: 'State Of Health - Elements',
224
+ navigationState: "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})",
225
+ featureJson: '{"canDrillDown":true}',
226
+ isDynamicReport: true,
227
+ },
228
+ 'techo.manage.mobileFeatureManagement': {
229
+ id: 351,
230
+ name: 'Mobile Feature Management',
231
+ navigationState: 'techo.manage.mobileFeatureManagement',
232
+ featureJson: '{"canDrillDown":true}',
233
+ isDynamicReport: true,
234
+ },
235
+ 'techo.manage.role': {
236
+ id: 6,
237
+ name: 'Role',
238
+ navigationState: 'techo.manage.role',
239
+ featureJson: '{}',
240
+ },
241
+ 'techo.manage.pushnotificationtype': {
242
+ id: 368,
243
+ name: 'Push Notification Type',
244
+ navigationState: 'techo.manage.pushnotificationtype',
245
+ },
246
+ 'techo.manage.configureRbskDefects': {
247
+ id: 256,
248
+ name: 'Configure RBSK defects',
249
+ navigationState: 'techo.manage.configureRbskDefects',
250
+ featureJson: '{}',
251
+ },
252
+ 'techo.manage.teamtypes': {
253
+ id: 316,
254
+ name: 'Team Type Config',
255
+ navigationState: 'techo.manage.teamtypes',
256
+ featureJson: '{}',
257
+ },
258
+ 'techo.report.all': {
259
+ id: 14,
260
+ name: 'Reports',
261
+ navigationState: 'techo.report.all',
262
+ featureJson: '{"basic":true,"advanced":true}',
263
+ },
264
+ 'techo.manage.lmsdashboard': {
265
+ id: 360,
266
+ name: 'LMS Dashboard',
267
+ navigationState: 'techo.manage.lmsdashboard',
268
+ },
269
+ 'techo.training.traineeStatus': {
270
+ id: 11,
271
+ name: 'Trainee Status',
272
+ navigationState: 'techo.training.traineeStatus',
273
+ featureJson: '{}',
274
+ },
275
+ 'techo.manage.courselist': {
276
+ id: 2,
277
+ name: 'Course',
278
+ navigationState: 'techo.manage.courselist',
279
+ featureJson: '{"canRefreshCourseSize": false}',
280
+ },
281
+ 'techo.training.dashboard': {
282
+ id: 8,
283
+ name: 'My Training Dashboard',
284
+ navigationState: 'techo.training.dashboard',
285
+ featureJson: '{}',
286
+ },
287
+ 'techo.training.questionsetlist': {
288
+ id: 344,
289
+ name: 'Question Set Configuration',
290
+ navigationState: 'techo.training.questionsetlist',
291
+ featureJson: '{}',
292
+ },
293
+ 'techo.training.scheduled': {
294
+ id: 7,
295
+ name: 'Training Schedule',
296
+ navigationState: 'techo.training.scheduled',
297
+ featureJson: '{"canMarkAttendance":false}',
298
+ },
299
+ 'techo.manage.lmsdashboardv2': {
300
+ id: 377,
301
+ name: 'LMS Dashboard V2',
302
+ navigationState: 'techo.manage.lmsdashboardv2',
303
+ },
304
+ 'techo.ncd.followupscreenlisting': {
305
+ id: 363,
306
+ name: 'Consultant Followup Screen members',
307
+ navigationState: 'techo.ncd.followupscreenlisting',
308
+ featureJson: '{}',
309
+ },
310
+ "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})": {
311
+ id: 142,
312
+ name: 'NCD Screening Status',
313
+ navigationState: "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
314
+ featureJson: '{"canDrillDown":true}',
315
+ isDynamicReport: true,
316
+ },
317
+ "techo.report.view({id:'04737cee-18b2-4d04-bb14-0d9ee73c67d1'})": {
318
+ id: 207,
319
+ name: 'NCD Progress tracking report',
320
+ navigationState: "techo.report.view({id:'04737cee-18b2-4d04-bb14-0d9ee73c67d1'})",
321
+ featureJson: '{"canDrillDown":true}',
322
+ isDynamicReport: true,
323
+ },
324
+ 'techo.ncd.members': {
325
+ id: 148,
326
+ name: 'Referred Patients',
327
+ navigationState: 'techo.ncd.members',
328
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false, "canExamine":true}',
329
+ },
330
+ 'techo.dashboard.ncdscreeningdashboard': {
331
+ id: 147,
332
+ name: 'NCD Screening Dashboard',
333
+ navigationState: 'techo.dashboard.ncdscreeningdashboard',
334
+ },
335
+ 'techo.ncd.druginventory': {
336
+ id: 362,
337
+ name: 'Drug Inventory',
338
+ navigationState: 'techo.ncd.druginventory',
339
+ featureJson: '{}',
340
+ },
341
+ 'techo.ncd.moreviewscreen': {
342
+ id: 364,
343
+ name: 'MBBS MO Review Screen',
344
+ navigationState: 'techo.ncd.moreviewscreen',
345
+ featureJson: '{}',
346
+ },
347
+ 'techo.ncd.familyqrcode': {
348
+ id: 370,
349
+ name: 'Family QR Code Generation',
350
+ navigationState: 'techo.ncd.familyqrcode',
351
+ featureJson: '{}',
352
+ },
353
+ 'techo.manage.districtperformancedashboard': {
354
+ id: 332,
355
+ name: 'District Factsheet',
356
+ navigationState: 'techo.manage.districtperformancedashboard',
357
+ },
358
+ "techo.report.view({id:'30361882-8b62-43d1-ac89-3465a522d258'})": {
359
+ id: 61,
360
+ name: '0-5 Years Child Survey Screened by ANM',
361
+ navigationState: "techo.report.view({id:'30361882-8b62-43d1-ac89-3465a522d258'})",
362
+ featureJson: '{"canDrillDown":true}',
363
+ isDynamicReport: true,
364
+ },
365
+ "techo.report.view({id:'070f118c-2d09-4a4f-9430-2cb5f1290997'})": {
366
+ id: 56,
367
+ name: 'Location Detail Report',
368
+ navigationState: "techo.report.view({id:'070f118c-2d09-4a4f-9430-2cb5f1290997'})",
369
+ featureJson: '{"canDrillDown":true}',
370
+ isDynamicReport: true,
371
+ },
372
+ "techo.report.view({id:'5e97d86e-23cd-4e22-8c64-351fcfc85b85'})": {
373
+ id: 198,
374
+ name: 'Login Rate(Location-wise)',
375
+ navigationState: "techo.report.view({id:'5e97d86e-23cd-4e22-8c64-351fcfc85b85'})",
376
+ featureJson: '{"canDrillDown":true}',
377
+ isDynamicReport: true,
378
+ },
379
+ "techo.report.view({id:'cbfd33e2-b399-45e8-b974-12edacb16e81'})": {
380
+ id: 317,
381
+ name: 'Age-Wise Detail Report',
382
+ navigationState: "techo.report.view({id:'cbfd33e2-b399-45e8-b974-12edacb16e81'})",
383
+ featureJson: '{"canDrillDown":true}',
384
+ isDynamicReport: true,
385
+ },
386
+ "techo.report.view({id:'74481c42-5a91-4ba0-990a-e77e3326a0a9'})": {
387
+ id: 333,
388
+ name: 'HMIS Report',
389
+ navigationState: "techo.report.view({id:'74481c42-5a91-4ba0-990a-e77e3326a0a9'})",
390
+ featureJson: '{"canDrillDown":true}',
391
+ isDynamicReport: true,
392
+ },
393
+ "techo.report.view({id:'e6a2a260-d703-4e9a-8433-303bbfeffe96'})": {
394
+ id: 337,
395
+ name: 'Age-Wise Detail Report - V2',
396
+ navigationState: "techo.report.view({id:'e6a2a260-d703-4e9a-8433-303bbfeffe96'})",
397
+ featureJson: '{"canDrillDown":true}',
398
+ isDynamicReport: true,
399
+ },
400
+ "techo.report.view({id:'35fd1c4f-8f60-4f06-a59a-5207bcaff76a'})": {
401
+ id: 329,
402
+ name: 'CMTC/NRC Facility Monitoring - V3',
403
+ navigationState: "techo.report.view({id:'35fd1c4f-8f60-4f06-a59a-5207bcaff76a'})",
404
+ featureJson: '{"canDrillDown":true}',
405
+ isDynamicReport: true,
406
+ },
407
+ "techo.report.view({id:'0b023663-e4e3-4687-b310-7a1316f40db9'})": {
408
+ id: 91,
409
+ name: 'MO Performance Report',
410
+ navigationState: "techo.report.view({id:'0b023663-e4e3-4687-b310-7a1316f40db9'})",
411
+ featureJson: '{"canDrillDown":true}',
412
+ isDynamicReport: true,
413
+ },
414
+ "techo.report.view({id:'075efd07-0e27-4b3e-8a41-384906b39b5f'})": {
415
+ id: 328,
416
+ name: 'Nutrition Screening Center wise Report - V2',
417
+ navigationState: "techo.report.view({id:'075efd07-0e27-4b3e-8a41-384906b39b5f'})",
418
+ featureJson: '{"canDrillDown":true}',
419
+ isDynamicReport: true,
420
+ },
421
+ "techo.report.view({id:'125d2193-e798-4baa-b074-de305e1e1854'})": {
422
+ id: 330,
423
+ name: 'CMTC/NRC Follow-up Visit - V3',
424
+ navigationState: "techo.report.view({id:'125d2193-e798-4baa-b074-de305e1e1854'})",
425
+ featureJson: '{"canDrillDown":true}',
426
+ isDynamicReport: true,
427
+ },
428
+ 'techo.manage.staffsmsconfigs': {
429
+ id: 258,
430
+ name: 'Staff Sms Configuration',
431
+ navigationState: 'techo.manage.staffsmsconfigs',
432
+ featureJson: '{"canManageAllSms":true}',
433
+ },
434
+ "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})": {
435
+ id: 115,
436
+ name: 'LBW Child Registered',
437
+ navigationState: "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
438
+ featureJson: '{"canDrillDown":true}',
439
+ isDynamicReport: true,
440
+ },
441
+ "techo.report.view({id:'bb544914-fe96-411d-8094-cf344da5506f'})": {
442
+ id: 138,
443
+ name: 'State Level Monthly Compilation Sheet for Screening of Birth Defects',
444
+ navigationState: "techo.report.view({id:'bb544914-fe96-411d-8094-cf344da5506f'})",
445
+ featureJson: '{"canDrillDown":true}',
446
+ isDynamicReport: true,
447
+ },
448
+ "techo.report.view({id:'830503de-d1b5-431d-bf04-670d90ab621f'})": {
449
+ id: 139,
450
+ name: 'Child Health Services Provided during the year (Monthly)',
451
+ navigationState: "techo.report.view({id:'830503de-d1b5-431d-bf04-670d90ab621f'})",
452
+ featureJson: '{"canDrillDown":true}',
453
+ isDynamicReport: true,
454
+ },
455
+ "techo.report.view({id:'c62ab8b4-25bd-4325-87e5-73d8be8d0536'})": {
456
+ id: 146,
457
+ name: 'Child Health Services Provided during the year (Yearly)',
458
+ navigationState: "techo.report.view({id:'c62ab8b4-25bd-4325-87e5-73d8be8d0536'})",
459
+ featureJson: '{"canDrillDown":true}',
460
+ isDynamicReport: true,
461
+ },
462
+ "techo.report.view({id:'3b51ed26-a317-4344-8eb3-e14a462bfd5f'})": {
463
+ id: 116,
464
+ name: 'Infant and Neonatal Deaths Report',
465
+ navigationState: "techo.report.view({id:'3b51ed26-a317-4344-8eb3-e14a462bfd5f'})",
466
+ featureJson: '{"canDrillDown":true}',
467
+ isDynamicReport: true,
468
+ },
469
+ "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})": {
470
+ id: 297,
471
+ name: 'Positive Case Detail',
472
+ navigationState: "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})",
473
+ featureJson: '{"canDrillDown":true}',
474
+ isDynamicReport: true,
475
+ },
476
+ "techo.report.view({id:'a048689a-407a-4efc-b396-dc7319694465'})": {
477
+ id: 306,
478
+ name: 'Facility Status Report',
479
+ navigationState: "techo.report.view({id:'a048689a-407a-4efc-b396-dc7319694465'})",
480
+ featureJson: '{"canDrillDown":true}',
481
+ isDynamicReport: true,
482
+ },
483
+ "techo.report.view({id:'10cd7d75-3875-4ffa-abc3-286ef330f2a2'})": {
484
+ id: 299,
485
+ name: 'IDSP2 Cluster Survey Detail',
486
+ navigationState: "techo.report.view({id:'10cd7d75-3875-4ffa-abc3-286ef330f2a2'})",
487
+ featureJson: '{"canDrillDown":true}',
488
+ isDynamicReport: true,
489
+ },
490
+ "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})": {
491
+ id: 304,
492
+ name: 'Lab wise Sample Status',
493
+ navigationState: "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})",
494
+ featureJson: '{"canDrillDown":true}',
495
+ isDynamicReport: true,
496
+ },
497
+ "techo.report.view({id:'a85ade02-d6db-4d19-89fb-77907a582e25'})": {
498
+ id: 302,
499
+ name: 'Infrastructure Wise Component Availability',
500
+ navigationState: "techo.report.view({id:'a85ade02-d6db-4d19-89fb-77907a582e25'})",
501
+ featureJson: '{"canDrillDown":true}',
502
+ isDynamicReport: true,
503
+ },
504
+ "techo.report.view({id:'047b61cf-cc04-4931-b0f8-24cb9d2ab46d'})": {
505
+ id: 298,
506
+ name: 'Covid2019 Hospitalwise detail',
507
+ navigationState: "techo.report.view({id:'047b61cf-cc04-4931-b0f8-24cb9d2ab46d'})",
508
+ featureJson: '{"canDrillDown":true}',
509
+ isDynamicReport: true,
510
+ },
511
+ 'techo.manage.anganwadi': {
512
+ id: 15,
513
+ name: 'Manage Anganwadis',
514
+ navigationState: 'techo.manage.anganwadi',
515
+ featureJson: '{"canEdit":true}',
516
+ },
517
+ 'techo.manage.systemcode': {
518
+ id: 323,
519
+ name: 'System Code Management Tool',
520
+ navigationState: 'techo.manage.systemcode',
521
+ featureJson: '{}',
522
+ },
523
+ "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})": {
524
+ id: 137,
525
+ name: "Child's DOB base report for OPV/DPT booster and 2nd dose of Measles Service",
526
+ navigationState: "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})",
527
+ featureJson: '{"canDrillDown":true}',
528
+ isDynamicReport: true,
529
+ },
530
+ "techo.report.view({id:'a9452880-acae-4735-b7cd-2d7a2854b789'})": {
531
+ id: 136,
532
+ name: 'Monitoring BCG Vaccine as per DOB',
533
+ navigationState: "techo.report.view({id:'a9452880-acae-4735-b7cd-2d7a2854b789'})",
534
+ featureJson: '{"canDrillDown":true}',
535
+ isDynamicReport: true,
536
+ },
537
+ "techo.report.view({id:'3d09f721-c91a-4bc3-b2a9-b9db65373ef1'})": {
538
+ id: 113,
539
+ name: 'Services Provided to the Children Registered during the Year ( 1 to 6 Year )',
540
+ navigationState: "techo.report.view({id:'3d09f721-c91a-4bc3-b2a9-b9db65373ef1'})",
541
+ featureJson: '{"canDrillDown":true}',
542
+ isDynamicReport: true,
543
+ },
544
+ "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})": {
545
+ id: 141,
546
+ name: 'Child for monitoring of Pentavalent 3 Vaccine as per Date of Birth',
547
+ navigationState: "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})",
548
+ featureJson: '{"canDrillDown":true}',
549
+ isDynamicReport: true,
550
+ },
551
+ "techo.report.view({id:'8480f7bc-63ac-4c0f-a3fb-f7ffa4a1363f'})": {
552
+ id: 114,
553
+ name: 'Services Provided to the Children Registered during the Year ( 0 to 1 Year )',
554
+ navigationState: "techo.report.view({id:'8480f7bc-63ac-4c0f-a3fb-f7ffa4a1363f'})",
555
+ featureJson: '{"canDrillDown":true}',
556
+ isDynamicReport: true,
557
+ },
558
+ "techo.report.view({id:'9a5effbe-d7cf-4b0b-8352-02ef09e583bf'})": {
559
+ id: 140,
560
+ name: 'Immunization Services Provided to Children with Date of Birth',
561
+ navigationState: "techo.report.view({id:'9a5effbe-d7cf-4b0b-8352-02ef09e583bf'})",
562
+ featureJson: '{"canDrillDown":true}',
563
+ isDynamicReport: true,
564
+ },
565
+ "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})": {
566
+ id: 248,
567
+ name: 'Sms Count Report',
568
+ navigationState: "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})",
569
+ featureJson: '{"canDrillDown":true}',
570
+ isDynamicReport: true,
571
+ },
572
+ "techo.report.view({id:'920a9dff-1def-49b3-945b-2bd05fd6a509'})": {
573
+ id: 202,
574
+ name: 'Concurrent PMSMA Report (Monthly)',
575
+ navigationState: "techo.report.view({id:'920a9dff-1def-49b3-945b-2bd05fd6a509'})",
576
+ featureJson: '{"canDrillDown":true}',
577
+ isDynamicReport: true,
578
+ },
579
+ "techo.report.view({id:'4627210e-2108-45dd-9bf7-e8b2b934d659'})": {
580
+ id: 183,
581
+ name: 'LGD Code Remaining',
582
+ navigationState: "techo.report.view({id:'4627210e-2108-45dd-9bf7-e8b2b934d659'})",
583
+ featureJson: '{"canDrillDown":true}',
584
+ isDynamicReport: true,
585
+ },
586
+ "techo.report.view({id:'ee98259d-4c96-4aab-b30e-0c87abeea575'})": {
587
+ id: 171,
588
+ name: 'CBAC Form Fillup Count User Wise',
589
+ navigationState: "techo.report.view({id:'ee98259d-4c96-4aab-b30e-0c87abeea575'})",
590
+ featureJson: '{"canDrillDown":true}',
591
+ isDynamicReport: true,
592
+ },
593
+ "techo.report.view({id:'0945ad64-b65a-4a24-ac60-4ae91906c497'})": {
594
+ id: 335,
595
+ name: 'PMSMA Services Statistics Report during the year',
596
+ navigationState: "techo.report.view({id:'0945ad64-b65a-4a24-ac60-4ae91906c497'})",
597
+ featureJson: '{"canDrillDown":true}',
598
+ isDynamicReport: true,
599
+ },
600
+ "techo.report.view({id:'98c9c8d8-7fdc-4163-b36d-26de0f2442aa'})": {
601
+ id: 185,
602
+ name: 'E-mamta Code Remaining',
603
+ navigationState: "techo.report.view({id:'98c9c8d8-7fdc-4163-b36d-26de0f2442aa'})",
604
+ featureJson: '{"canDrillDown":true}',
605
+ isDynamicReport: true,
606
+ },
607
+ "techo.report.view({id:'7709cfc5-35d3-4d31-aaa7-68e00987ce1b'})": {
608
+ id: 262,
609
+ name: 'Location Wise Task Completion',
610
+ navigationState: "techo.report.view({id:'7709cfc5-35d3-4d31-aaa7-68e00987ce1b'})",
611
+ featureJson: '{"canDrillDown":true}',
612
+ isDynamicReport: true,
613
+ },
614
+ "techo.report.view({id:'5f517733-6f24-43b1-8858-c8cc95dfd3bf'})": {
615
+ id: 184,
616
+ name: 'MCTS PHC Not In TeCHO+',
617
+ navigationState: "techo.report.view({id:'5f517733-6f24-43b1-8858-c8cc95dfd3bf'})",
618
+ featureJson: '{"canDrillDown":true}',
619
+ isDynamicReport: true,
620
+ },
621
+ "techo.report.view({id:'20828757-6774-403f-ae70-083c59229090'})": {
622
+ id: 133,
623
+ name: 'Details of Locations not deleted with delete label',
624
+ navigationState: "techo.report.view({id:'20828757-6774-403f-ae70-083c59229090'})",
625
+ featureJson: '{"canDrillDown":true}',
626
+ isDynamicReport: true,
627
+ },
628
+ "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})": {
629
+ id: 201,
630
+ name: 'Cheeranjivi Yojana deliveries Report',
631
+ navigationState: "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})",
632
+ featureJson: '{"canDrillDown":true}',
633
+ isDynamicReport: true,
634
+ },
635
+ 'techo.manage.expectedTarget': {
636
+ id: 176,
637
+ name: 'Location Wise Expected Target',
638
+ navigationState: 'techo.manage.expectedTarget',
639
+ featureJson: '{"canLock":true,"canUnlock":true}',
640
+ },
641
+ "techo.report.view({id:'9b9c4aea-449d-435a-9eb6-7a9c36a58028'})": {
642
+ id: 334,
643
+ name: 'CM Dashboard OPD IPD report',
644
+ navigationState: "techo.report.view({id:'9b9c4aea-449d-435a-9eb6-7a9c36a58028'})",
645
+ featureJson: '{"canDrillDown":true}',
646
+ isDynamicReport: true,
647
+ },
648
+ "techo.report.view({id:'daf5f0c8-1bdd-4370-8f30-d282dc95c219'})": {
649
+ id: 200,
650
+ name: 'Janani Shishu Suraksha Karykram Report',
651
+ navigationState: "techo.report.view({id:'daf5f0c8-1bdd-4370-8f30-d282dc95c219'})",
652
+ featureJson: '{"canDrillDown":true}',
653
+ isDynamicReport: true,
654
+ },
655
+ 'techo.manage.pregregedit': {
656
+ id: 187,
657
+ name: 'TEMP - UPDATE PREGNANCY SERVICE DATE',
658
+ navigationState: 'techo.manage.pregregedit',
659
+ },
660
+ 'techo.manage.facilityPerformancedynamic': {
661
+ id: 157,
662
+ name: 'Facility Performance',
663
+ navigationState: 'techo.manage.facilityPerformancedynamic',
664
+ },
665
+ 'techo.manage.wpdSearch': {
666
+ id: 111,
667
+ name: 'Institutional Delivery Reg. Form',
668
+ navigationState: 'techo.manage.wpdSearch',
669
+ featureJson: '{"isShowHIPModal": false, "isShowConsentList": false, "isShowHealthIdModal": true}',
670
+ },
671
+ 'techo.manage.outPatientTreatmentSearch': {
672
+ id: 273,
673
+ name: 'Out-Patient Treatment (OPD)',
674
+ navigationState: 'techo.manage.outPatientTreatmentSearch',
675
+ featureJson: '{"canManageRegistration":true,"canManageTreatment":true,"canManageMedicines":true}',
676
+ },
677
+ 'techo.manage.childServiceSearch': {
678
+ id: 151,
679
+ name: 'Child Service Visit',
680
+ navigationState: 'techo.manage.childServiceSearch',
681
+ },
682
+ 'techo.manage.pncSearch': {
683
+ id: 149,
684
+ name: 'PNC Institution Form',
685
+ navigationState: 'techo.manage.pncSearch',
686
+ },
687
+ 'techo.manage.sicklecellSearch': {
688
+ id: 246,
689
+ name: 'Sickle Cell Screening',
690
+ navigationState: 'techo.manage.sicklecellSearch',
691
+ },
692
+ 'techo.manage.fpChangeSearch': {
693
+ id: 210,
694
+ name: 'Family Planning Service Visit',
695
+ navigationState: 'techo.manage.fpChangeSearch',
696
+ featureJson: '{}',
697
+ },
698
+ 'techo.manage.verifiedfamilymoving': {
699
+ id: 120,
700
+ name: 'Verified Family Moving',
701
+ navigationState: 'techo.manage.verifiedfamilymoving',
702
+ featureJson: '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true}',
703
+ },
704
+ 'techo.manage.mobilelibrary': {
705
+ id: 165,
706
+ name: 'Mobile Library',
707
+ navigationState: 'techo.manage.mobilelibrary',
708
+ },
709
+ 'techo.manage.usergeoservices': {
710
+ id: 193,
711
+ name: 'User GEO Services',
712
+ navigationState: 'techo.manage.usergeoservices',
713
+ },
714
+ 'techo.manage.familymoving': {
715
+ id: 71,
716
+ name: 'Family Moving',
717
+ navigationState: 'techo.manage.familymoving',
718
+ featureJson:
719
+ '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true,"canSearchArchived":true,"canMarkUnverified":true}',
720
+ },
721
+ 'techo.manage.announcements': {
722
+ id: 74,
723
+ name: 'Announcements',
724
+ navigationState: 'techo.manage.announcements',
725
+ },
726
+ 'techo.manage.schools': {
727
+ id: 257,
728
+ name: 'Manage Schools',
729
+ navigationState: 'techo.manage.schools',
730
+ },
731
+ "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})": {
732
+ id: 279,
733
+ name: 'IDSP Screening Status Report',
734
+ navigationState: "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})",
735
+ featureJson: '{"canDrillDown":true}',
736
+ isDynamicReport: true,
737
+ },
738
+ 'techo.manage.idspFormS': {
739
+ id: 277,
740
+ name: 'Form S',
741
+ navigationState: 'techo.manage.idspFormS',
742
+ featureJson: '{}',
743
+ },
744
+ 'techo.manage.profileHpId': {
745
+ id: 373,
746
+ name: 'Profile Healthcare Professional ID',
747
+ navigationState: 'techo.manage.profileHpId',
748
+ },
749
+ "techo.report.view({id:'a9b65472-b8a5-420a-9696-d43099d12e42'})": {
750
+ id: 367,
751
+ name: 'LMS Report',
752
+ navigationState: "techo.report.view({id:'a9b65472-b8a5-420a-9696-d43099d12e42'})",
753
+ featureJson: '{"canDrillDown":true}',
754
+ isDynamicReport: true,
755
+ },
756
+ "techo.report.view({id:'b827d60c-5bd2-485d-811c-c79000e95a1b'})": {
757
+ id: 94,
758
+ name: 'Urban FHS Count',
759
+ navigationState: "techo.report.view({id:'b827d60c-5bd2-485d-811c-c79000e95a1b'})",
760
+ featureJson: '{"canDrillDown":true}',
761
+ isDynamicReport: true,
762
+ },
763
+ 'techo.manage.cerebralpalsysearch': {
764
+ id: 154,
765
+ name: 'Suspected CP',
766
+ navigationState: 'techo.manage.cerebralpalsysearch',
767
+ },
768
+ 'techo.manage.searchfeature': {
769
+ id: 144,
770
+ name: 'Helpdesk Tool - Search',
771
+ navigationState: 'techo.manage.searchfeature',
772
+ featureJson:
773
+ '{"canModifyMemberDob":true,"canModifyMemberGender":true,"canModifyPregnancyRegDate":true,"canModifyLmpDate":true,"canModifyAncServiceDate":true,"canModifyWpdServiceDate":true,"canModifyWpdDeliveryDate":true,"canModifyPncServiceDate":true,"canModifyChvServiceDate":true,"canModifyImmuGivenDate":true,"canModifyWpdDeliveryPlace":true,"canMarkAsEligibleCouple":true,"canMarkMemberAsArchive":false,"canMarkAsWrongDelivery":true}',
774
+ },
775
+ 'techo.manage.userinformation': {
776
+ id: 130,
777
+ name: 'User Information',
778
+ navigationState: 'techo.manage.userinformation',
779
+ featureJson: '{}',
780
+ },
781
+ 'techo.manage.childscreeninglist': {
782
+ id: 112,
783
+ name: 'CMTC/NRC Child Screening',
784
+ navigationState: 'techo.manage.childscreeninglist',
785
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false}',
786
+ },
787
+ 'techo.dashboard.gvkCallEffectivenessReports': {
788
+ id: 219,
789
+ name: 'GVK : Call Effectiveness Reports',
790
+ navigationState: 'techo.dashboard.gvkCallEffectivenessReports',
791
+ },
792
+ "techo.report.view({id:'c646bf05-ac1b-459a-a332-e2870e44eb84'})": {
793
+ id: 128,
794
+ name: 'Indradhanush Call Status Report - Location Wise',
795
+ navigationState: "techo.report.view({id:'c646bf05-ac1b-459a-a332-e2870e44eb84'})",
796
+ featureJson: '{"canDrillDown":true}',
797
+ isDynamicReport: true,
798
+ },
799
+ "techo.report.view({id:'3471d85e-4150-4f2d-beef-d6a68589ad9a'})": {
800
+ id: 126,
801
+ name: 'Indradhanush Call Report - User Wise',
802
+ navigationState: "techo.report.view({id:'3471d85e-4150-4f2d-beef-d6a68589ad9a'})",
803
+ featureJson: '{"canDrillDown":true}',
804
+ isDynamicReport: true,
805
+ },
806
+ "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})": {
807
+ id: 129,
808
+ name: 'Indradhanush Call Status Report - User Wise',
809
+ navigationState: "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})",
810
+ featureJson: '{"canDrillDown":true}',
811
+ isDynamicReport: true,
812
+ },
813
+ "techo.report.view({id:'f88835d4-c557-4401-b62c-79504515642c'})": {
814
+ id: 131,
815
+ name: 'FHS Call Report - Location wise',
816
+ navigationState: "techo.report.view({id:'f88835d4-c557-4401-b62c-79504515642c'})",
817
+ featureJson: '{"canDrillDown":true}',
818
+ isDynamicReport: true,
819
+ },
820
+ "techo.report.view({id:'ca91bef6-5705-4d0d-95c6-84a0d5cbb808'})": {
821
+ id: 132,
822
+ name: 'FHS Call Report - User Wise',
823
+ navigationState: "techo.report.view({id:'ca91bef6-5705-4d0d-95c6-84a0d5cbb808'})",
824
+ featureJson: '{"canDrillDown":true}',
825
+ isDynamicReport: true,
826
+ },
827
+ 'techo.manage.dtcInterface': {
828
+ id: 275,
829
+ name: 'DTC Interface',
830
+ navigationState: 'techo.manage.dtcInterface',
831
+ featureJson: '{}',
832
+ },
833
+ 'techo.manage.covidtravellers': {
834
+ id: 276,
835
+ name: 'Covid Travellers Screening',
836
+ navigationState: 'techo.manage.covidtravellers',
837
+ },
838
+ 'techo.manage.covid19healthinfrastructures': {
839
+ id: 292,
840
+ name: 'Manage Health Infrastructure',
841
+ navigationState: 'techo.manage.covid19healthinfrastructures',
842
+ featureJson:
843
+ '{"canAdd":false,"canEditBloodBank":false,"canEdit":false,"canChangeLocation":false,"canEditFru":false,"canEditPediatrician":false,"canEditCmtc":false,"canEditNrc":false,"canEditGynaec":false,"canEditSncu":false,"canEditChiranjeevi":false,"canEditBalsakha1":false,"canEditBalsakha3":false,"canEditUsgFacility":false,"canEditReferralFacility":false,"canEditMaYojna":false,"canEditPmjayFacility":false,"canEditNpcb":false,"canEditNcd":false,"canEditHWC":false,"canEditIdsp":false,"canEditCovid19Lab":false,"canEditCovid19Hospital":false,"canEditLabTest":false,"manageBasedOnLocation":false,"manageBasedOnAssignment":false}',
844
+ },
845
+ 'techo.manage.covidLabTestEntry': {
846
+ id: 296,
847
+ name: 'OPD Lab Test Entry',
848
+ navigationState: 'techo.manage.covidLabTestEntry',
849
+ featureJson: '{}',
850
+ },
851
+ 'techo.manage.symptomaticMembersHeatmap': {
852
+ id: 288,
853
+ name: 'Spatial Distribution Of Cases',
854
+ navigationState: 'techo.manage.symptomaticMembersHeatmap',
855
+ },
856
+ 'techo.manage.locationClusterManagement': {
857
+ id: 301,
858
+ name: 'Cluster Management',
859
+ navigationState: 'techo.manage.locationClusterManagement',
860
+ featureJson: '{}',
861
+ },
862
+ 'techo.manage.emodashboard': {
863
+ id: 294,
864
+ name: 'Suspect List',
865
+ navigationState: 'techo.manage.emodashboard',
866
+ featureJson:
867
+ '{"canAccessReferredForCovidLabTest":true,"canAccessApprovedForCovidLabTest":true,"canAccessReferredPatientsStatus":true}',
868
+ },
869
+ 'techo.manage.covidcases': {
870
+ id: 281,
871
+ name: 'Contact Tracing',
872
+ navigationState: 'techo.manage.covidcases',
873
+ },
874
+ 'techo.manage.labtest': {
875
+ id: 291,
876
+ name: 'Lab',
877
+ navigationState: 'techo.manage.labtest',
878
+ featureJson:
879
+ '{"canSampleCollect":true,"canSampleReceive":true,"canSampleResult":true,"canIndeterminate":true,"canTransfer":true,"canResultConfirm":true}',
880
+ },
881
+ 'techo.manage.104calls': {
882
+ id: 284,
883
+ name: 'Track 104 Calls',
884
+ navigationState: 'techo.manage.104calls',
885
+ },
886
+ 'techo.manage.labinfrastructure': {
887
+ id: 300,
888
+ name: 'Manage Lab Infrastructure',
889
+ navigationState: 'techo.manage.labinfrastructure',
890
+ },
891
+ 'techo.manage.covidAdmission': {
892
+ id: 290,
893
+ name: 'Hospital Admission',
894
+ navigationState: 'techo.manage.covidAdmission',
895
+ featureJson:
896
+ '{"isShowReferredAdmissionTab":true,"isShowSuspectAdmittedCasesTab":true,"isShowConfirmedAdmittedCasesTab":true,"isShowAdmitButton":true,"isShowCheckUpButton":true,"isShowDischargeButton":true,"isShowNewAdmissionButton":true,"isShowReferInTab":true,"isShowReferOutTab":true,"isShowReferInAdmitButton":true,"isShowEditButton":true,"isShowPrintButton":true}',
897
+ },
898
+ 'techo.manage.covid19Dashboard': {
899
+ id: 283,
900
+ name: 'Rapid Response Dashboard',
901
+ navigationState: 'techo.manage.covid19Dashboard',
902
+ },
903
+ 'techo.manage.uploadlocation': {
904
+ id: 13,
905
+ name: 'Upload Location',
906
+ navigationState: 'techo.manage.uploadlocation',
907
+ featureJson: '{}',
908
+ },
909
+ 'techo.manage.healthinfrastructures': {
910
+ id: 122,
911
+ name: 'Health Facility Mapping',
912
+ navigationState: 'techo.manage.healthinfrastructures',
913
+ featureJson:
914
+ '{"canAdd":true,"canEdit":true,"canEditFru":true,"canEditHWC":true,"canEditNcd":true,"canEditNrc":true,"canEditCmtc":true,"canEditIdsp":true,"canEditNpcb":true,"canEditSncu":true,"canEditGynaec":true,"canEditLabTest":true,"canEditMaYojna":true,"canEditBalsakha1":true,"canEditBalsakha3":true,"canEditBloodBank":true,"canChangeLocation":true,"canEditCovid19Lab":true,"canEditChiranjeevi":true,"canEditUsgFacility":true,"canEditVentilators":false,"canLinkHfrFacility":true,"canEditPediatrician":true,"canEditPmjayFacility":true,"canEditDefibrillators":false,"manageBasedOnLocation":true,"canEditCovid19Hospital":true,"canEditOxygenCylinders":false,"canEditReferralFacility":true,"manageBasedOnAssignment":true,"canManageHealthInfraType":true}',
915
+ },
916
+ 'techo.manage.users': {
917
+ id: 1,
918
+ name: 'Users',
919
+ navigationState: 'techo.manage.users',
920
+ featureJson:
921
+ '{"canAdd":true,"canEdit":true,"canUnlockUser":true,"canEditPassword":true,"canEditUserName":true,"canEditBankDetails":true}',
922
+ },
923
+ 'techo.dashboard.webtasks': {
924
+ id: 109,
925
+ name: 'Web Tasks',
926
+ navigationState: 'techo.dashboard.webtasks',
927
+ },
928
+ 'techo.manage.servicedeliverylocation': {
929
+ id: 197,
930
+ name: 'Place of Service Delivery',
931
+ navigationState: 'techo.manage.servicedeliverylocation',
932
+ },
933
+ "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})": {
934
+ id: 93,
935
+ name: 'Pregnant Women Report',
936
+ navigationState: "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})",
937
+ featureJson: '{"canDrillDown":true}',
938
+ isDynamicReport: true,
939
+ },
940
+ "techo.report.view({id:'1422e079-a449-4935-9275-b10f69d80341'})": {
941
+ id: 270,
942
+ name: 'Maternal Death Causewise',
943
+ navigationState: "techo.report.view({id:'1422e079-a449-4935-9275-b10f69d80341'})",
944
+ featureJson: '{"canDrillDown":true}',
945
+ isDynamicReport: true,
946
+ },
947
+ "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})": {
948
+ id: 175,
949
+ name: 'Maternal Health Services Provided During The Year (Monthly)',
950
+ navigationState: "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})",
951
+ featureJson: '{"canDrillDown":true}',
952
+ isDynamicReport: true,
953
+ },
954
+ 'techo.manage.uploaduser': {
955
+ id: 349,
956
+ name: 'Upload User',
957
+ navigationState: 'techo.manage.uploaduser',
958
+ featureJson: '{}',
959
+ },
960
+ 'techo.manage.mobilemangementinfo': {
961
+ id: 158,
962
+ name: 'Mobile Management',
963
+ navigationState: 'techo.manage.mobilemangementinfo',
964
+ },
965
+ 'techo.manage.locationtype': {
966
+ id: 340,
967
+ name: 'Location Type',
968
+ navigationState: 'techo.manage.locationtype',
969
+ featureJson: '{}',
970
+ },
971
+ 'techo.report.familyreport': {
972
+ id: 70,
973
+ name: 'FHS Family Report',
974
+ navigationState: 'techo.report.familyreport',
975
+ featureJson: '{}',
976
+ },
977
+ "techo.report.view({id:'9a9d3e2e-c5e5-4aa6-adc3-e84a511e5e3d'})": {
978
+ id: 92,
979
+ name: 'RCH TRAINING COUNT REPORT',
980
+ navigationState: "techo.report.view({id:'9a9d3e2e-c5e5-4aa6-adc3-e84a511e5e3d'})",
981
+ featureJson: '{"canDrillDown":true}',
982
+ isDynamicReport: true,
983
+ },
984
+ 'techo.manage.performancedashboard': {
985
+ id: 339,
986
+ name: 'Performance Dashboard',
987
+ navigationState: 'techo.manage.performancedashboard',
988
+ featureJson: '{}',
989
+ },
990
+ 'techo.manage.createAbhaNumber': {
991
+ id: 361,
992
+ name: 'Create And Link Abha Number',
993
+ navigationState: 'techo.manage.createAbhaNumber',
994
+ },
995
+ 'techo.manage.wards': {
996
+ id: 259,
997
+ name: 'Manage Location Wards',
998
+ navigationState: 'techo.manage.wards',
999
+ },
1000
+ 'techo.manage.rchLocations': {
1001
+ id: 315,
1002
+ name: 'RCH Locations',
1003
+ navigationState: 'techo.manage.rchLocations',
1004
+ },
1005
+ 'techo.manage.rchregister': {
1006
+ id: 211,
1007
+ name: 'RCH Register',
1008
+ navigationState: 'techo.manage.rchregister',
1009
+ featureJson: '{}',
1010
+ },
1011
+ 'techo.manage.pushnotification': {
1012
+ id: 369,
1013
+ name: 'Push Notification Configuration',
1014
+ navigationState: 'techo.manage.pushnotification',
1015
+ featureJson: '{"canAccessQueryBased":false\t}',
1016
+ },
1017
+ 'techo.manage.loginHfrId': {
1018
+ id: 375,
1019
+ name: 'Login Health Facility Registry',
1020
+ navigationState: 'techo.manage.loginHfrId',
1021
+ },
1022
+ 'techo.manage.smstype': {
1023
+ id: 345,
1024
+ name: 'SMS Type',
1025
+ navigationState: 'techo.manage.smstype',
1026
+ featureJson: '{}',
1027
+ },
1028
+ 'techo.manage.memberserviceregister': {
1029
+ id: 191,
1030
+ name: 'Service Register',
1031
+ navigationState: 'techo.manage.memberserviceregister',
1032
+ featureJson: '{}',
1033
+ },
1034
+ "techo.report.view({id:'7436038d-30e5-495a-9ead-cbffc292dd31'})": {
1035
+ id: 241,
1036
+ name: 'Mobile App Version Count',
1037
+ navigationState: "techo.report.view({id:'7436038d-30e5-495a-9ead-cbffc292dd31'})",
1038
+ featureJson: '{"canDrillDown":true}',
1039
+ isDynamicReport: true,
1040
+ },
1041
+ 'techo.manage.createHpId': {
1042
+ id: 371,
1043
+ name: 'Create Healthcare Professional ID',
1044
+ navigationState: 'techo.manage.createHpId',
1045
+ },
1046
+ 'techo.manage.npcblist': {
1047
+ id: 190,
1048
+ name: 'National Programme For Control of Blindness',
1049
+ navigationState: 'techo.manage.npcblist',
1050
+ },
1051
+ 'techo.manage.teams': {
1052
+ id: 264,
1053
+ name: 'Manage Teams',
1054
+ navigationState: 'techo.manage.teams',
1055
+ featureJson: '{}',
1056
+ },
1057
+ 'techo.manage.fhsworkbargraph': {
1058
+ id: 72,
1059
+ name: 'FHS Work Progress',
1060
+ navigationState: 'techo.manage.fhsworkbargraph',
1061
+ featureJson: '{}',
1062
+ },
1063
+ 'techo.manage.userhealthapproval': {
1064
+ id: 182,
1065
+ name: 'State Of Health User Approval',
1066
+ navigationState: 'techo.manage.userhealthapproval',
1067
+ featureJson: '{}',
1068
+ },
1069
+ 'techo.manage.duplicateMemberVerification': {
1070
+ id: 177,
1071
+ name: 'Duplicate Member Verification',
1072
+ navigationState: 'techo.manage.duplicateMemberVerification',
1073
+ featureJson: '{}',
1074
+ },
1075
+ 'techo.manage.loginHpId': {
1076
+ id: 372,
1077
+ name: 'Login Healthcare Professional ID',
1078
+ navigationState: 'techo.manage.loginHpId',
1079
+ },
1080
+ 'techo.manage.location': {
1081
+ id: 17,
1082
+ name: 'Locations',
1083
+ navigationState: 'techo.manage.location',
1084
+ featureJson: '{"canAdd":true,"canEdit":false,"canChangeTranslation":true}',
1085
+ },
1086
+ 'techo.manage.migrations': {
1087
+ id: 153,
1088
+ name: 'Manage Migrations',
1089
+ navigationState: 'techo.manage.migrations',
1090
+ featureJson: '{}',
1091
+ },
1092
+ 'techo.manage.uploadDocument': {
1093
+ id: 186,
1094
+ name: 'Upload Document',
1095
+ navigationState: 'techo.manage.uploadDocument',
1096
+ },
1097
+ "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})": {
1098
+ id: 286,
1099
+ name: 'Dr techo status detail report',
1100
+ navigationState: "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
1101
+ featureJson: '{"canDrillDown":true}',
1102
+ isDynamicReport: true,
1103
+ },
1104
+ };
1105
+
1106
+ export const mockedLoggedInUserDetails = {
1107
+ id: 97084,
1108
+ name: 'Pratham Prajapati',
1109
+ userName: 'ppratham',
1110
+ roleId: 96,
1111
+ roleName: 'Argus Admin',
1112
+ minLocationId: 550513,
1113
+ minLocationName: 'ગાંધીનગર ઝોન',
1114
+ minLocationLevel: 2,
1115
+ rchInstitutionId: null,
1116
+ languagePreference: 'en',
1117
+ mobileNumber: null,
1118
+ gender: 'M',
1119
+ address: null,
1120
+ dob: null,
1121
+ userLastLogin: 1725438624124,
1122
+ roleCode: 'argusadmin',
1123
+ features: {
1124
+ fhs: [
1125
+ {
1126
+ id: 199,
1127
+ name: 'Command and Control Center',
1128
+ navigationState: 'techo.dashboard.cccverification',
1129
+ featureJson: '{"canFollowUpOverdueServices":true}',
1130
+ },
1131
+ {
1132
+ id: 10,
1133
+ name: 'MO Re-Verification - Level 2',
1134
+ navigationState: 'techo.manage.moverification',
1135
+ featureJson: '{}',
1136
+ },
1137
+ {
1138
+ id: 263,
1139
+ name: 'CFHC Report',
1140
+ navigationState: "techo.report.view({id:'8b437996-4334-473f-923e-47b43efe56ee'})",
1141
+ featureJson: '{"canDrillDown":true}',
1142
+ isDynamicReport: true,
1143
+ },
1144
+ {
1145
+ id: 9,
1146
+ name: 'MO CHFC Re-Verification',
1147
+ navigationState: 'techo.manage.fhsrverification',
1148
+ featureJson: '{}',
1149
+ },
1150
+ {
1151
+ id: 5,
1152
+ name: 'FHS Dashboard',
1153
+ navigationState: 'techo.dashboard.fhs',
1154
+ featureJson: '{}',
1155
+ },
1156
+ {
1157
+ id: 12,
1158
+ name: 'Call Center Verification',
1159
+ navigationState: 'techo.dashboard.gvkverification',
1160
+ featureJson:
1161
+ '{"canAbsentVerification":false,"canFamilyVerification":false,"canGvkImmunisationVerification":false,"canHighriskFollowupVerification":false,"canPregnancyRegistrationsVerification":false,"canHighriskFollowupVerificationFowFhw":false,"canPregnancyRegistrationsPhoneNumberVerification":false,"canMemberMigrationOutVerification":false,"canMemberMigrationInVerification":false,"canDuplicateMemberVerification":true,"canPerformEligibleCoupleCounselling":false,"canBeneficiaryServiceVerification":false,"canAnc4Schedule":false,"canFamilyMigrationOutVerification":false}',
1162
+ },
1163
+ ],
1164
+ mch: [
1165
+ {
1166
+ id: 152,
1167
+ name: 'ANC Service Visit',
1168
+ navigationState: 'techo.manage.ancSearch',
1169
+ featureJson: '{"isShowHIPModal":true,"isShowConsentList":true,"isShowHealthIdModal":true}',
1170
+ },
1171
+ ],
1172
+ admin: [
1173
+ {
1174
+ id: 24,
1175
+ name: 'Application Management',
1176
+ navigationState: 'techo.manage.query',
1177
+ isGroup: true,
1178
+ subGroups: [
1179
+ {
1180
+ id: 19,
1181
+ name: 'Query Builder',
1182
+ navigationState: 'techo.manage.query',
1183
+ featureJson: '{}',
1184
+ },
1185
+ {
1186
+ id: 18,
1187
+ name: 'Events Configured',
1188
+ navigationState: 'techo.notification.all',
1189
+ featureJson: '{}',
1190
+ },
1191
+ {
1192
+ id: 150,
1193
+ name: 'Server Management',
1194
+ navigationState: 'techo.manage.servermanage',
1195
+ },
1196
+ {
1197
+ id: 313,
1198
+ name: 'Manage System Configurations',
1199
+ navigationState: 'techo.manage.systemconfigs',
1200
+ featureJson: '{"canAdd":false}',
1201
+ },
1202
+ {
1203
+ id: 325,
1204
+ name: 'Sync Server Management',
1205
+ navigationState: 'techo.manage.syncServerManage',
1206
+ featureJson: '{}',
1207
+ },
1208
+ {
1209
+ id: 166,
1210
+ name: 'Widgets management',
1211
+ navigationState: 'techo.manage.manage-widgets',
1212
+ featureJson: '{}',
1213
+ },
1214
+ {
1215
+ id: 228,
1216
+ name: 'Query Excel Sheet Generator',
1217
+ navigationState: 'techo.manage.queryexcelsheetgenerator',
1218
+ },
1219
+ {
1220
+ id: 285,
1221
+ name: 'Query Management Tool',
1222
+ navigationState: 'techo.querymanagement',
1223
+ featureJson: '{}',
1224
+ },
1225
+ {
1226
+ id: 347,
1227
+ name: 'Form Configurator',
1228
+ navigationState: 'techo.admin.systemConstraints',
1229
+ featureJson: '{}',
1230
+ },
1231
+ {
1232
+ id: 324,
1233
+ name: 'Manage Feature Syncing',
1234
+ navigationState: 'techo.manage.featureSync',
1235
+ featureJson: '{}',
1236
+ },
1237
+ {
1238
+ id: 25,
1239
+ name: 'Manage Notification',
1240
+ navigationState: 'techo.manage.notification',
1241
+ featureJson: '{}',
1242
+ },
1243
+ ],
1244
+ featureJson: '{}',
1245
+ },
1246
+ {
1247
+ id: 16,
1248
+ name: 'My Techo',
1249
+ navigationState: 'techo.manage.tipsoftheday',
1250
+ isGroup: true,
1251
+ subGroups: [
1252
+ {
1253
+ id: 231,
1254
+ name: 'Tip Of The Day',
1255
+ navigationState: 'techo.manage.tipsoftheday',
1256
+ featureJson:
1257
+ '{"canAddNewTipOfTheDay":true,"canManageEnglishTipOfTheDay":true,"canManageHindiTipOfTheDay":true,"canManageGujaratiTipOfTheDay":true}',
1258
+ },
1259
+ {
1260
+ id: 236,
1261
+ name: 'Content Preview Config',
1262
+ navigationState: 'techo.manage.contentPreviewConfig',
1263
+ },
1264
+ {
1265
+ id: 226,
1266
+ name: 'Manage FAQ',
1267
+ navigationState: 'techo.manage.faqs',
1268
+ featureJson:
1269
+ '{"canAddMasterQuestion":true, "canManageEnglishQuestion":true, "canManageHindiQuestion":true,\r\n "canManageGujaratiQuestion":true}',
1270
+ },
1271
+ {
1272
+ id: 242,
1273
+ name: 'Timeline Configuration',
1274
+ navigationState: 'techo.manage.timelineconfigs',
1275
+ featureJson:
1276
+ '{"canAddNewTimeline":true,"canManageEnglishTimeline":true,"canManageHindiTimeline":true,"canManageGujaratiTimeline":true}',
1277
+ },
1278
+ {
1279
+ id: 225,
1280
+ name: 'Card Configuration',
1281
+ navigationState: 'techo.manage.cardconfigs',
1282
+ featureJson:
1283
+ '{"canAddMasterCard":true,"canModifyEnglishCard":true,"canModifyHindiCard":true,"canModifyGujaratiCard":true}',
1284
+ },
1285
+ ],
1286
+ featureJson:
1287
+ '{"canAddNewTipOfTheDay":true,"canManageEnglishTipOfTheDay":true,"canManageHindiTipOfTheDay":true,"canManageGujaratiTipOfTheDay":true}',
1288
+ },
1289
+ {
1290
+ id: 68,
1291
+ name: 'Manage Values And Multimedia',
1292
+ navigationState: 'techo.manage.valuesnmultimedia',
1293
+ featureJson: '{}',
1294
+ },
1295
+ {
1296
+ id: 21,
1297
+ name: 'Manage OPD',
1298
+ navigationState: 'techo.manage.manageOpdLabTest',
1299
+ isGroup: true,
1300
+ subGroups: [
1301
+ {
1302
+ id: 272,
1303
+ name: 'Manage OPD Lab Test',
1304
+ navigationState: 'techo.manage.manageOpdLabTest',
1305
+ featureJson: '{}',
1306
+ },
1307
+ ],
1308
+ featureJson: '{}',
1309
+ },
1310
+ {
1311
+ id: 4,
1312
+ name: 'Features',
1313
+ navigationState: 'techo.manage.menu',
1314
+ featureJson: '{}',
1315
+ },
1316
+ {
1317
+ id: 18,
1318
+ name: 'GVK Call Center',
1319
+ navigationState: 'techo.dashboard.callcenter',
1320
+ isGroup: true,
1321
+ subGroups: [
1322
+ {
1323
+ id: 232,
1324
+ name: 'Call Center Dashboard',
1325
+ navigationState: 'techo.dashboard.callcenter',
1326
+ },
1327
+ ],
1328
+ },
1329
+ {
1330
+ id: 67,
1331
+ name: 'Manage Translations',
1332
+ navigationState: 'techo.manage.translator-label',
1333
+ featureJson: '{}',
1334
+ },
1335
+ {
1336
+ id: 359,
1337
+ name: 'Mobile Menu Management',
1338
+ navigationState: 'techo.manage.mobileMenuManagement',
1339
+ featureJson: '{"canDrillDown":true}',
1340
+ isDynamicReport: true,
1341
+ },
1342
+ {
1343
+ id: 15,
1344
+ name: 'Dr. Techo',
1345
+ navigationState: 'techo.manage.drtechoUserApproval',
1346
+ isGroup: true,
1347
+ subGroups: [
1348
+ {
1349
+ id: 222,
1350
+ name: 'Dr. Techo User Approval',
1351
+ navigationState: 'techo.manage.drtechoUserApproval',
1352
+ },
1353
+ {
1354
+ id: 221,
1355
+ name: 'Health Infrastructure Approval',
1356
+ navigationState: 'techo.manage.healthInfrastructureApproval',
1357
+ },
1358
+ ],
1359
+ },
1360
+ {
1361
+ id: 274,
1362
+ name: 'Dynamic Form Builder',
1363
+ navigationState: 'techo.manage.dynamicform',
1364
+ featureJson: '{}',
1365
+ },
1366
+ {
1367
+ id: 312,
1368
+ name: 'Feature Usage Analytics',
1369
+ navigationState: 'techo.manage.featureUsage',
1370
+ featureJson: '{}',
1371
+ },
1372
+ {
1373
+ id: 20,
1374
+ name: 'State of Health',
1375
+ navigationState: 'techo.manage.sohElementConfiguration',
1376
+ isGroup: true,
1377
+ subGroups: [
1378
+ {
1379
+ id: 260,
1380
+ name: 'Element Configuration',
1381
+ navigationState: 'techo.manage.sohElementConfiguration',
1382
+ featureJson: '{"normal":true,"advanced":true}',
1383
+ },
1384
+ {
1385
+ id: 309,
1386
+ name: 'SoH Application',
1387
+ navigationState: 'techo.manage.sohApp',
1388
+ featureJson: '{}',
1389
+ },
1390
+ {
1391
+ id: 233,
1392
+ name: 'State Of Health - Elements',
1393
+ navigationState: "techo.report.view({id:'f4530015-fd6d-45bf-9b50-c2fb1f3c2976'})",
1394
+ featureJson: '{"canDrillDown":true}',
1395
+ isDynamicReport: true,
1396
+ },
1397
+ ],
1398
+ featureJson: '{"normal":true,"advanced":true}',
1399
+ },
1400
+ {
1401
+ id: 351,
1402
+ name: 'Mobile Feature Management',
1403
+ navigationState: 'techo.manage.mobileFeatureManagement',
1404
+ featureJson: '{"canDrillDown":true}',
1405
+ isDynamicReport: true,
1406
+ },
1407
+ {
1408
+ id: 6,
1409
+ name: 'Role',
1410
+ navigationState: 'techo.manage.role',
1411
+ featureJson: '{}',
1412
+ },
1413
+ {
1414
+ id: 368,
1415
+ name: 'Push Notification Type',
1416
+ navigationState: 'techo.manage.pushnotificationtype',
1417
+ },
1418
+ {
1419
+ id: 19,
1420
+ name: 'RBSK',
1421
+ navigationState: 'techo.manage.configureRbskDefects',
1422
+ isGroup: true,
1423
+ subGroups: [
1424
+ {
1425
+ id: 256,
1426
+ name: 'Configure RBSK defects',
1427
+ navigationState: 'techo.manage.configureRbskDefects',
1428
+ featureJson: '{}',
1429
+ },
1430
+ ],
1431
+ featureJson: '{}',
1432
+ },
1433
+ {
1434
+ id: 316,
1435
+ name: 'Team Type Config',
1436
+ navigationState: 'techo.manage.teamtypes',
1437
+ featureJson: '{}',
1438
+ },
1439
+ {
1440
+ id: 14,
1441
+ name: 'Reports',
1442
+ navigationState: 'techo.report.all',
1443
+ featureJson: '{"basic":true,"advanced":true}',
1444
+ },
1445
+ ],
1446
+ training: [
1447
+ {
1448
+ id: 360,
1449
+ name: 'LMS Dashboard',
1450
+ navigationState: 'techo.manage.lmsdashboard',
1451
+ },
1452
+ {
1453
+ id: 11,
1454
+ name: 'Trainee Status',
1455
+ navigationState: 'techo.training.traineeStatus',
1456
+ featureJson: '{}',
1457
+ },
1458
+ {
1459
+ id: 2,
1460
+ name: 'Course',
1461
+ navigationState: 'techo.manage.courselist',
1462
+ featureJson: '{"canRefreshCourseSize": false}',
1463
+ },
1464
+ {
1465
+ id: 8,
1466
+ name: 'My Training Dashboard',
1467
+ navigationState: 'techo.training.dashboard',
1468
+ featureJson: '{}',
1469
+ },
1470
+ {
1471
+ id: 344,
1472
+ name: 'Question Set Configuration',
1473
+ navigationState: 'techo.training.questionsetlist',
1474
+ featureJson: '{}',
1475
+ },
1476
+ {
1477
+ id: 7,
1478
+ name: 'Training Schedule',
1479
+ navigationState: 'techo.training.scheduled',
1480
+ featureJson: '{"canMarkAttendance":false}',
1481
+ },
1482
+ {
1483
+ id: 377,
1484
+ name: 'LMS Dashboard V2',
1485
+ navigationState: 'techo.manage.lmsdashboardv2',
1486
+ },
1487
+ ],
1488
+ ncd: [
1489
+ {
1490
+ id: 363,
1491
+ name: 'Consultant Followup Screen members',
1492
+ navigationState: 'techo.ncd.followupscreenlisting',
1493
+ featureJson: '{}',
1494
+ },
1495
+ {
1496
+ id: 28,
1497
+ name: 'NCD Reports',
1498
+ navigationState: "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
1499
+ isGroup: true,
1500
+ subGroups: [
1501
+ {
1502
+ id: 142,
1503
+ name: 'NCD Screening Status',
1504
+ navigationState: "techo.report.view({id:'598bde2d-dd11-40bd-aea8-a946a9925e53'})",
1505
+ featureJson: '{"canDrillDown":true}',
1506
+ isDynamicReport: true,
1507
+ },
1508
+ {
1509
+ id: 207,
1510
+ name: 'NCD Progress tracking report',
1511
+ navigationState: "techo.report.view({id:'04737cee-18b2-4d04-bb14-0d9ee73c67d1'})",
1512
+ featureJson: '{"canDrillDown":true}',
1513
+ isDynamicReport: true,
1514
+ },
1515
+ ],
1516
+ featureJson: '{"canDrillDown":true}',
1517
+ isDynamicReport: true,
1518
+ },
1519
+ {
1520
+ id: 148,
1521
+ name: 'Referred Patients',
1522
+ navigationState: 'techo.ncd.members',
1523
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false, "canExamine":true}',
1524
+ },
1525
+ {
1526
+ id: 147,
1527
+ name: 'NCD Screening Dashboard',
1528
+ navigationState: 'techo.dashboard.ncdscreeningdashboard',
1529
+ },
1530
+ {
1531
+ id: 362,
1532
+ name: 'Drug Inventory',
1533
+ navigationState: 'techo.ncd.druginventory',
1534
+ featureJson: '{}',
1535
+ },
1536
+ {
1537
+ id: 364,
1538
+ name: 'MBBS MO Review Screen',
1539
+ navigationState: 'techo.ncd.moreviewscreen',
1540
+ featureJson: '{}',
1541
+ },
1542
+ {
1543
+ id: 370,
1544
+ name: 'Family QR Code Generation',
1545
+ navigationState: 'techo.ncd.familyqrcode',
1546
+ featureJson: '{}',
1547
+ },
1548
+ ],
1549
+ manage: [
1550
+ {
1551
+ id: 3,
1552
+ name: 'Reports',
1553
+ navigationState: 'techo.manage.districtperformancedashboard',
1554
+ isGroup: true,
1555
+ subGroups: [
1556
+ {
1557
+ id: 332,
1558
+ name: 'District Factsheet',
1559
+ navigationState: 'techo.manage.districtperformancedashboard',
1560
+ },
1561
+ {
1562
+ id: 61,
1563
+ name: '0-5 Years Child Survey Screened by ANM',
1564
+ navigationState: "techo.report.view({id:'30361882-8b62-43d1-ac89-3465a522d258'})",
1565
+ featureJson: '{"canDrillDown":true}',
1566
+ isDynamicReport: true,
1567
+ },
1568
+ {
1569
+ id: 56,
1570
+ name: 'Location Detail Report',
1571
+ navigationState: "techo.report.view({id:'070f118c-2d09-4a4f-9430-2cb5f1290997'})",
1572
+ featureJson: '{"canDrillDown":true}',
1573
+ isDynamicReport: true,
1574
+ },
1575
+ {
1576
+ id: 198,
1577
+ name: 'Login Rate(Location-wise)',
1578
+ navigationState: "techo.report.view({id:'5e97d86e-23cd-4e22-8c64-351fcfc85b85'})",
1579
+ featureJson: '{"canDrillDown":true}',
1580
+ isDynamicReport: true,
1581
+ },
1582
+ {
1583
+ id: 317,
1584
+ name: 'Age-Wise Detail Report',
1585
+ navigationState: "techo.report.view({id:'cbfd33e2-b399-45e8-b974-12edacb16e81'})",
1586
+ featureJson: '{"canDrillDown":true}',
1587
+ isDynamicReport: true,
1588
+ },
1589
+ {
1590
+ id: 333,
1591
+ name: 'HMIS Report',
1592
+ navigationState: "techo.report.view({id:'74481c42-5a91-4ba0-990a-e77e3326a0a9'})",
1593
+ featureJson: '{"canDrillDown":true}',
1594
+ isDynamicReport: true,
1595
+ },
1596
+ {
1597
+ id: 337,
1598
+ name: 'Age-Wise Detail Report - V2',
1599
+ navigationState: "techo.report.view({id:'e6a2a260-d703-4e9a-8433-303bbfeffe96'})",
1600
+ featureJson: '{"canDrillDown":true}',
1601
+ isDynamicReport: true,
1602
+ },
1603
+ {
1604
+ id: 329,
1605
+ name: 'CMTC/NRC Facility Monitoring - V3',
1606
+ navigationState: "techo.report.view({id:'35fd1c4f-8f60-4f06-a59a-5207bcaff76a'})",
1607
+ featureJson: '{"canDrillDown":true}',
1608
+ isDynamicReport: true,
1609
+ },
1610
+ {
1611
+ id: 91,
1612
+ name: 'MO Performance Report',
1613
+ navigationState: "techo.report.view({id:'0b023663-e4e3-4687-b310-7a1316f40db9'})",
1614
+ featureJson: '{"canDrillDown":true}',
1615
+ isDynamicReport: true,
1616
+ },
1617
+ {
1618
+ id: 328,
1619
+ name: 'Nutrition Screening Center wise Report - V2',
1620
+ navigationState: "techo.report.view({id:'075efd07-0e27-4b3e-8a41-384906b39b5f'})",
1621
+ featureJson: '{"canDrillDown":true}',
1622
+ isDynamicReport: true,
1623
+ },
1624
+ {
1625
+ id: 330,
1626
+ name: 'CMTC/NRC Follow-up Visit - V3',
1627
+ navigationState: "techo.report.view({id:'125d2193-e798-4baa-b074-de305e1e1854'})",
1628
+ featureJson: '{"canDrillDown":true}',
1629
+ isDynamicReport: true,
1630
+ },
1631
+ ],
1632
+ },
1633
+ {
1634
+ id: 258,
1635
+ name: 'Staff Sms Configuration',
1636
+ navigationState: 'techo.manage.staffsmsconfigs',
1637
+ featureJson: '{"canManageAllSms":true}',
1638
+ },
1639
+ {
1640
+ id: 9,
1641
+ name: 'Child Report 2',
1642
+ navigationState: "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
1643
+ isGroup: true,
1644
+ subGroups: [
1645
+ {
1646
+ id: 115,
1647
+ name: 'LBW Child Registered',
1648
+ navigationState: "techo.report.view({id:'97cf4b39-d28b-4043-a113-f63ecc854c8c'})",
1649
+ featureJson: '{"canDrillDown":true}',
1650
+ isDynamicReport: true,
1651
+ },
1652
+ {
1653
+ id: 138,
1654
+ name: 'State Level Monthly Compilation Sheet for Screening of Birth Defects',
1655
+ navigationState: "techo.report.view({id:'bb544914-fe96-411d-8094-cf344da5506f'})",
1656
+ featureJson: '{"canDrillDown":true}',
1657
+ isDynamicReport: true,
1658
+ },
1659
+ {
1660
+ id: 139,
1661
+ name: 'Child Health Services Provided during the year (Monthly)',
1662
+ navigationState: "techo.report.view({id:'830503de-d1b5-431d-bf04-670d90ab621f'})",
1663
+ featureJson: '{"canDrillDown":true}',
1664
+ isDynamicReport: true,
1665
+ },
1666
+ {
1667
+ id: 146,
1668
+ name: 'Child Health Services Provided during the year (Yearly)',
1669
+ navigationState: "techo.report.view({id:'c62ab8b4-25bd-4325-87e5-73d8be8d0536'})",
1670
+ featureJson: '{"canDrillDown":true}',
1671
+ isDynamicReport: true,
1672
+ },
1673
+ {
1674
+ id: 116,
1675
+ name: 'Infant and Neonatal Deaths Report',
1676
+ navigationState: "techo.report.view({id:'3b51ed26-a317-4344-8eb3-e14a462bfd5f'})",
1677
+ featureJson: '{"canDrillDown":true}',
1678
+ isDynamicReport: true,
1679
+ },
1680
+ ],
1681
+ featureJson: '{"canDrillDown":true}',
1682
+ isDynamicReport: true,
1683
+ },
1684
+ {
1685
+ id: 26,
1686
+ name: 'COVID-19 Report',
1687
+ navigationState: "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})",
1688
+ isGroup: true,
1689
+ subGroups: [
1690
+ {
1691
+ id: 297,
1692
+ name: 'Positive Case Detail',
1693
+ navigationState: "techo.report.view({id:'d8deb91d-cac2-41a6-9eb2-ea6a86b04156'})",
1694
+ featureJson: '{"canDrillDown":true}',
1695
+ isDynamicReport: true,
1696
+ },
1697
+ {
1698
+ id: 306,
1699
+ name: 'Facility Status Report',
1700
+ navigationState: "techo.report.view({id:'a048689a-407a-4efc-b396-dc7319694465'})",
1701
+ featureJson: '{"canDrillDown":true}',
1702
+ isDynamicReport: true,
1703
+ },
1704
+ {
1705
+ id: 299,
1706
+ name: 'IDSP2 Cluster Survey Detail',
1707
+ navigationState: "techo.report.view({id:'10cd7d75-3875-4ffa-abc3-286ef330f2a2'})",
1708
+ featureJson: '{"canDrillDown":true}',
1709
+ isDynamicReport: true,
1710
+ },
1711
+ {
1712
+ id: 304,
1713
+ name: 'Lab wise Sample Status',
1714
+ navigationState: "techo.report.view({id:'dddd3017-40db-4142-8c39-fe15ff3149a5'})",
1715
+ featureJson: '{"canDrillDown":true}',
1716
+ isDynamicReport: true,
1717
+ },
1718
+ {
1719
+ id: 302,
1720
+ name: 'Infrastructure Wise Component Availability',
1721
+ navigationState: "techo.report.view({id:'a85ade02-d6db-4d19-89fb-77907a582e25'})",
1722
+ featureJson: '{"canDrillDown":true}',
1723
+ isDynamicReport: true,
1724
+ },
1725
+ {
1726
+ id: 298,
1727
+ name: 'Covid2019 Hospitalwise detail',
1728
+ navigationState: "techo.report.view({id:'047b61cf-cc04-4931-b0f8-24cb9d2ab46d'})",
1729
+ featureJson: '{"canDrillDown":true}',
1730
+ isDynamicReport: true,
1731
+ },
1732
+ ],
1733
+ featureJson: '{"canDrillDown":true}',
1734
+ isDynamicReport: true,
1735
+ },
1736
+ {
1737
+ id: 15,
1738
+ name: 'Manage Anganwadis',
1739
+ navigationState: 'techo.manage.anganwadi',
1740
+ featureJson: '{"canEdit":true}',
1741
+ },
1742
+ {
1743
+ id: 323,
1744
+ name: 'System Code Management Tool',
1745
+ navigationState: 'techo.manage.systemcode',
1746
+ featureJson: '{}',
1747
+ },
1748
+ {
1749
+ id: 5,
1750
+ name: 'Child Reports',
1751
+ navigationState: "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})",
1752
+ isGroup: true,
1753
+ subGroups: [
1754
+ {
1755
+ id: 137,
1756
+ name: "Child's DOB base report for OPV/DPT booster and 2nd dose of Measles Service",
1757
+ navigationState: "techo.report.view({id:'2669b516-dde5-4410-9dfd-c62e44fe4f68'})",
1758
+ featureJson: '{"canDrillDown":true}',
1759
+ isDynamicReport: true,
1760
+ },
1761
+ {
1762
+ id: 136,
1763
+ name: 'Monitoring BCG Vaccine as per DOB',
1764
+ navigationState: "techo.report.view({id:'a9452880-acae-4735-b7cd-2d7a2854b789'})",
1765
+ featureJson: '{"canDrillDown":true}',
1766
+ isDynamicReport: true,
1767
+ },
1768
+ {
1769
+ id: 113,
1770
+ name: 'Services Provided to the Children Registered during the Year ( 1 to 6 Year )',
1771
+ navigationState: "techo.report.view({id:'3d09f721-c91a-4bc3-b2a9-b9db65373ef1'})",
1772
+ featureJson: '{"canDrillDown":true}',
1773
+ isDynamicReport: true,
1774
+ },
1775
+ {
1776
+ id: 141,
1777
+ name: 'Child for monitoring of Pentavalent 3 Vaccine as per Date of Birth',
1778
+ navigationState: "techo.report.view({id:'8d0a9e76-4d45-493f-8d1d-5371d11995c1'})",
1779
+ featureJson: '{"canDrillDown":true}',
1780
+ isDynamicReport: true,
1781
+ },
1782
+ {
1783
+ id: 114,
1784
+ name: 'Services Provided to the Children Registered during the Year ( 0 to 1 Year )',
1785
+ navigationState: "techo.report.view({id:'8480f7bc-63ac-4c0f-a3fb-f7ffa4a1363f'})",
1786
+ featureJson: '{"canDrillDown":true}',
1787
+ isDynamicReport: true,
1788
+ },
1789
+ {
1790
+ id: 140,
1791
+ name: 'Immunization Services Provided to Children with Date of Birth',
1792
+ navigationState: "techo.report.view({id:'9a5effbe-d7cf-4b0b-8352-02ef09e583bf'})",
1793
+ featureJson: '{"canDrillDown":true}',
1794
+ isDynamicReport: true,
1795
+ },
1796
+ ],
1797
+ featureJson: '{"canDrillDown":true}',
1798
+ isDynamicReport: true,
1799
+ },
1800
+ {
1801
+ id: 7,
1802
+ name: 'Administration',
1803
+ navigationState: "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})",
1804
+ isGroup: true,
1805
+ subGroups: [
1806
+ {
1807
+ id: 248,
1808
+ name: 'Sms Count Report',
1809
+ navigationState: "techo.report.view({id:'814b7881-1c68-477c-80de-3a098fa81561'})",
1810
+ featureJson: '{"canDrillDown":true}',
1811
+ isDynamicReport: true,
1812
+ },
1813
+ {
1814
+ id: 202,
1815
+ name: 'Concurrent PMSMA Report (Monthly)',
1816
+ navigationState: "techo.report.view({id:'920a9dff-1def-49b3-945b-2bd05fd6a509'})",
1817
+ featureJson: '{"canDrillDown":true}',
1818
+ isDynamicReport: true,
1819
+ },
1820
+ {
1821
+ id: 183,
1822
+ name: 'LGD Code Remaining',
1823
+ navigationState: "techo.report.view({id:'4627210e-2108-45dd-9bf7-e8b2b934d659'})",
1824
+ featureJson: '{"canDrillDown":true}',
1825
+ isDynamicReport: true,
1826
+ },
1827
+ {
1828
+ id: 171,
1829
+ name: 'CBAC Form Fillup Count User Wise',
1830
+ navigationState: "techo.report.view({id:'ee98259d-4c96-4aab-b30e-0c87abeea575'})",
1831
+ featureJson: '{"canDrillDown":true}',
1832
+ isDynamicReport: true,
1833
+ },
1834
+ {
1835
+ id: 335,
1836
+ name: 'PMSMA Services Statistics Report during the year',
1837
+ navigationState: "techo.report.view({id:'0945ad64-b65a-4a24-ac60-4ae91906c497'})",
1838
+ featureJson: '{"canDrillDown":true}',
1839
+ isDynamicReport: true,
1840
+ },
1841
+ {
1842
+ id: 185,
1843
+ name: 'E-mamta Code Remaining',
1844
+ navigationState: "techo.report.view({id:'98c9c8d8-7fdc-4163-b36d-26de0f2442aa'})",
1845
+ featureJson: '{"canDrillDown":true}',
1846
+ isDynamicReport: true,
1847
+ },
1848
+ {
1849
+ id: 262,
1850
+ name: 'Location Wise Task Completion',
1851
+ navigationState: "techo.report.view({id:'7709cfc5-35d3-4d31-aaa7-68e00987ce1b'})",
1852
+ featureJson: '{"canDrillDown":true}',
1853
+ isDynamicReport: true,
1854
+ },
1855
+ {
1856
+ id: 184,
1857
+ name: 'MCTS PHC Not In TeCHO+',
1858
+ navigationState: "techo.report.view({id:'5f517733-6f24-43b1-8858-c8cc95dfd3bf'})",
1859
+ featureJson: '{"canDrillDown":true}',
1860
+ isDynamicReport: true,
1861
+ },
1862
+ {
1863
+ id: 133,
1864
+ name: 'Details of Locations not deleted with delete label',
1865
+ navigationState: "techo.report.view({id:'20828757-6774-403f-ae70-083c59229090'})",
1866
+ featureJson: '{"canDrillDown":true}',
1867
+ isDynamicReport: true,
1868
+ },
1869
+ {
1870
+ id: 201,
1871
+ name: 'Cheeranjivi Yojana deliveries Report',
1872
+ navigationState: "techo.report.view({id:'38fe43c3-3fc3-42e7-aa15-ca971412907c'})",
1873
+ featureJson: '{"canDrillDown":true}',
1874
+ isDynamicReport: true,
1875
+ },
1876
+ {
1877
+ id: 176,
1878
+ name: 'Location Wise Expected Target',
1879
+ navigationState: 'techo.manage.expectedTarget',
1880
+ featureJson: '{"canLock":true,"canUnlock":true}',
1881
+ },
1882
+ {
1883
+ id: 334,
1884
+ name: 'CM Dashboard OPD IPD report',
1885
+ navigationState: "techo.report.view({id:'9b9c4aea-449d-435a-9eb6-7a9c36a58028'})",
1886
+ featureJson: '{"canDrillDown":true}',
1887
+ isDynamicReport: true,
1888
+ },
1889
+ {
1890
+ id: 200,
1891
+ name: 'Janani Shishu Suraksha Karykram Report',
1892
+ navigationState: "techo.report.view({id:'daf5f0c8-1bdd-4370-8f30-d282dc95c219'})",
1893
+ featureJson: '{"canDrillDown":true}',
1894
+ isDynamicReport: true,
1895
+ },
1896
+ ],
1897
+ featureJson: '{"canDrillDown":true}',
1898
+ isDynamicReport: true,
1899
+ },
1900
+ {
1901
+ id: 187,
1902
+ name: 'TEMP - UPDATE PREGNANCY SERVICE DATE',
1903
+ navigationState: 'techo.manage.pregregedit',
1904
+ },
1905
+ {
1906
+ id: 10,
1907
+ name: 'Facility Data Entry',
1908
+ navigationState: 'techo.manage.facilityPerformancedynamic',
1909
+ isGroup: true,
1910
+ subGroups: [
1911
+ {
1912
+ id: 157,
1913
+ name: 'Facility Performance',
1914
+ navigationState: 'techo.manage.facilityPerformancedynamic',
1915
+ },
1916
+ {
1917
+ id: 111,
1918
+ name: 'Institutional Delivery Reg. Form',
1919
+ navigationState: 'techo.manage.wpdSearch',
1920
+ featureJson: '{"isShowHIPModal": false, "isShowConsentList": false, "isShowHealthIdModal": true}',
1921
+ },
1922
+ {
1923
+ id: 273,
1924
+ name: 'Out-Patient Treatment (OPD)',
1925
+ navigationState: 'techo.manage.outPatientTreatmentSearch',
1926
+ featureJson: '{"canManageRegistration":true,"canManageTreatment":true,"canManageMedicines":true}',
1927
+ },
1928
+ {
1929
+ id: 151,
1930
+ name: 'Child Service Visit',
1931
+ navigationState: 'techo.manage.childServiceSearch',
1932
+ },
1933
+ {
1934
+ id: 149,
1935
+ name: 'PNC Institution Form',
1936
+ navigationState: 'techo.manage.pncSearch',
1937
+ },
1938
+ {
1939
+ id: 246,
1940
+ name: 'Sickle Cell Screening',
1941
+ navigationState: 'techo.manage.sicklecellSearch',
1942
+ },
1943
+ {
1944
+ id: 210,
1945
+ name: 'Family Planning Service Visit',
1946
+ navigationState: 'techo.manage.fpChangeSearch',
1947
+ featureJson: '{}',
1948
+ },
1949
+ ],
1950
+ },
1951
+ {
1952
+ id: 120,
1953
+ name: 'Verified Family Moving',
1954
+ navigationState: 'techo.manage.verifiedfamilymoving',
1955
+ featureJson: '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true}',
1956
+ },
1957
+ {
1958
+ id: 165,
1959
+ name: 'Mobile Library',
1960
+ navigationState: 'techo.manage.mobilelibrary',
1961
+ },
1962
+ {
1963
+ id: 193,
1964
+ name: 'User GEO Services',
1965
+ navigationState: 'techo.manage.usergeoservices',
1966
+ },
1967
+ {
1968
+ id: 71,
1969
+ name: 'Family Moving',
1970
+ navigationState: 'techo.manage.familymoving',
1971
+ featureJson:
1972
+ '{"canSearchByLocation":true,"canSearchByFamilyId":true,"canSearchByMemberHealthId":true,"canSearchArchived":true,"canMarkUnverified":true}',
1973
+ },
1974
+ {
1975
+ id: 74,
1976
+ name: 'Announcements',
1977
+ navigationState: 'techo.manage.announcements',
1978
+ },
1979
+ {
1980
+ id: 257,
1981
+ name: 'Manage Schools',
1982
+ navigationState: 'techo.manage.schools',
1983
+ },
1984
+ {
1985
+ id: 23,
1986
+ name: 'IDSP',
1987
+ navigationState: "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})",
1988
+ isGroup: true,
1989
+ subGroups: [
1990
+ {
1991
+ id: 279,
1992
+ name: 'IDSP Screening Status Report',
1993
+ navigationState: "techo.report.view({id:'93aa5943-e930-473f-bda5-34cc8acdfb4e'})",
1994
+ featureJson: '{"canDrillDown":true}',
1995
+ isDynamicReport: true,
1996
+ },
1997
+ {
1998
+ id: 277,
1999
+ name: 'Form S',
2000
+ navigationState: 'techo.manage.idspFormS',
2001
+ featureJson: '{}',
2002
+ },
2003
+ ],
2004
+ featureJson: '{"canDrillDown":true}',
2005
+ isDynamicReport: true,
2006
+ },
2007
+ {
2008
+ id: 373,
2009
+ name: 'Profile Healthcare Professional ID',
2010
+ navigationState: 'techo.manage.profileHpId',
2011
+ },
2012
+ {
2013
+ id: 367,
2014
+ name: 'LMS Report',
2015
+ navigationState: "techo.report.view({id:'a9b65472-b8a5-420a-9696-d43099d12e42'})",
2016
+ featureJson: '{"canDrillDown":true}',
2017
+ isDynamicReport: true,
2018
+ },
2019
+ {
2020
+ id: 94,
2021
+ name: 'Urban FHS Count',
2022
+ navigationState: "techo.report.view({id:'b827d60c-5bd2-485d-811c-c79000e95a1b'})",
2023
+ featureJson: '{"canDrillDown":true}',
2024
+ isDynamicReport: true,
2025
+ },
2026
+ {
2027
+ id: 154,
2028
+ name: 'Suspected CP',
2029
+ navigationState: 'techo.manage.cerebralpalsysearch',
2030
+ },
2031
+ {
2032
+ id: 144,
2033
+ name: 'Helpdesk Tool - Search',
2034
+ navigationState: 'techo.manage.searchfeature',
2035
+ featureJson:
2036
+ '{"canModifyMemberDob":true,"canModifyMemberGender":true,"canModifyPregnancyRegDate":true,"canModifyLmpDate":true,"canModifyAncServiceDate":true,"canModifyWpdServiceDate":true,"canModifyWpdDeliveryDate":true,"canModifyPncServiceDate":true,"canModifyChvServiceDate":true,"canModifyImmuGivenDate":true,"canModifyWpdDeliveryPlace":true,"canMarkAsEligibleCouple":true,"canMarkMemberAsArchive":false,"canMarkAsWrongDelivery":true}',
2037
+ },
2038
+ {
2039
+ id: 130,
2040
+ name: 'User Information',
2041
+ navigationState: 'techo.manage.userinformation',
2042
+ featureJson: '{}',
2043
+ },
2044
+ {
2045
+ id: 112,
2046
+ name: 'CMTC/NRC Child Screening',
2047
+ navigationState: 'techo.manage.childscreeninglist',
2048
+ featureJson: '{"isShowHealthIdModal":true,"isShowHIPModal":false}',
2049
+ },
2050
+ {
2051
+ id: 6,
2052
+ name: 'GVK Call Center Report',
2053
+ navigationState: 'techo.dashboard.gvkCallEffectivenessReports',
2054
+ isGroup: true,
2055
+ subGroups: [
2056
+ {
2057
+ id: 219,
2058
+ name: 'GVK : Call Effectiveness Reports',
2059
+ navigationState: 'techo.dashboard.gvkCallEffectivenessReports',
2060
+ },
2061
+ {
2062
+ id: 128,
2063
+ name: 'Indradhanush Call Status Report - Location Wise',
2064
+ navigationState: "techo.report.view({id:'c646bf05-ac1b-459a-a332-e2870e44eb84'})",
2065
+ featureJson: '{"canDrillDown":true}',
2066
+ isDynamicReport: true,
2067
+ },
2068
+ {
2069
+ id: 126,
2070
+ name: 'Indradhanush Call Report - User Wise',
2071
+ navigationState: "techo.report.view({id:'3471d85e-4150-4f2d-beef-d6a68589ad9a'})",
2072
+ featureJson: '{"canDrillDown":true}',
2073
+ isDynamicReport: true,
2074
+ },
2075
+ {
2076
+ id: 129,
2077
+ name: 'Indradhanush Call Status Report - User Wise',
2078
+ navigationState: "techo.report.view({id:'8d071c53-75b4-44d1-8196-24c37cbdafe5'})",
2079
+ featureJson: '{"canDrillDown":true}',
2080
+ isDynamicReport: true,
2081
+ },
2082
+ {
2083
+ id: 131,
2084
+ name: 'FHS Call Report - Location wise',
2085
+ navigationState: "techo.report.view({id:'f88835d4-c557-4401-b62c-79504515642c'})",
2086
+ featureJson: '{"canDrillDown":true}',
2087
+ isDynamicReport: true,
2088
+ },
2089
+ {
2090
+ id: 132,
2091
+ name: 'FHS Call Report - User Wise',
2092
+ navigationState: "techo.report.view({id:'ca91bef6-5705-4d0d-95c6-84a0d5cbb808'})",
2093
+ featureJson: '{"canDrillDown":true}',
2094
+ isDynamicReport: true,
2095
+ },
2096
+ ],
2097
+ },
2098
+ {
2099
+ id: 22,
2100
+ name: 'COVID-19',
2101
+ navigationState: 'techo.manage.dtcInterface',
2102
+ isGroup: true,
2103
+ subGroups: [
2104
+ {
2105
+ id: 275,
2106
+ name: 'DTC Interface',
2107
+ navigationState: 'techo.manage.dtcInterface',
2108
+ featureJson: '{}',
2109
+ },
2110
+ {
2111
+ id: 276,
2112
+ name: 'Covid Travellers Screening',
2113
+ navigationState: 'techo.manage.covidtravellers',
2114
+ },
2115
+ {
2116
+ id: 292,
2117
+ name: 'Manage Health Infrastructure',
2118
+ navigationState: 'techo.manage.covid19healthinfrastructures',
2119
+ featureJson:
2120
+ '{"canAdd":false,"canEditBloodBank":false,"canEdit":false,"canChangeLocation":false,"canEditFru":false,"canEditPediatrician":false,"canEditCmtc":false,"canEditNrc":false,"canEditGynaec":false,"canEditSncu":false,"canEditChiranjeevi":false,"canEditBalsakha1":false,"canEditBalsakha3":false,"canEditUsgFacility":false,"canEditReferralFacility":false,"canEditMaYojna":false,"canEditPmjayFacility":false,"canEditNpcb":false,"canEditNcd":false,"canEditHWC":false,"canEditIdsp":false,"canEditCovid19Lab":false,"canEditCovid19Hospital":false,"canEditLabTest":false,"manageBasedOnLocation":false,"manageBasedOnAssignment":false}',
2121
+ },
2122
+ {
2123
+ id: 296,
2124
+ name: 'OPD Lab Test Entry',
2125
+ navigationState: 'techo.manage.covidLabTestEntry',
2126
+ featureJson: '{}',
2127
+ },
2128
+ {
2129
+ id: 288,
2130
+ name: 'Spatial Distribution Of Cases',
2131
+ navigationState: 'techo.manage.symptomaticMembersHeatmap',
2132
+ },
2133
+ {
2134
+ id: 301,
2135
+ name: 'Cluster Management',
2136
+ navigationState: 'techo.manage.locationClusterManagement',
2137
+ featureJson: '{}',
2138
+ },
2139
+ {
2140
+ id: 294,
2141
+ name: 'Suspect List',
2142
+ navigationState: 'techo.manage.emodashboard',
2143
+ featureJson:
2144
+ '{"canAccessReferredForCovidLabTest":true,"canAccessApprovedForCovidLabTest":true,"canAccessReferredPatientsStatus":true}',
2145
+ },
2146
+ {
2147
+ id: 281,
2148
+ name: 'Contact Tracing',
2149
+ navigationState: 'techo.manage.covidcases',
2150
+ },
2151
+ {
2152
+ id: 291,
2153
+ name: 'Lab',
2154
+ navigationState: 'techo.manage.labtest',
2155
+ featureJson:
2156
+ '{"canSampleCollect":true,"canSampleReceive":true,"canSampleResult":true,"canIndeterminate":true,"canTransfer":true,"canResultConfirm":true}',
2157
+ },
2158
+ {
2159
+ id: 284,
2160
+ name: 'Track 104 Calls',
2161
+ navigationState: 'techo.manage.104calls',
2162
+ },
2163
+ {
2164
+ id: 300,
2165
+ name: 'Manage Lab Infrastructure',
2166
+ navigationState: 'techo.manage.labinfrastructure',
2167
+ },
2168
+ {
2169
+ id: 290,
2170
+ name: 'Hospital Admission',
2171
+ navigationState: 'techo.manage.covidAdmission',
2172
+ featureJson:
2173
+ '{"isShowReferredAdmissionTab":true,"isShowSuspectAdmittedCasesTab":true,"isShowConfirmedAdmittedCasesTab":true,"isShowAdmitButton":true,"isShowCheckUpButton":true,"isShowDischargeButton":true,"isShowNewAdmissionButton":true,"isShowReferInTab":true,"isShowReferOutTab":true,"isShowReferInAdmitButton":true,"isShowEditButton":true,"isShowPrintButton":true}',
2174
+ },
2175
+ {
2176
+ id: 283,
2177
+ name: 'Rapid Response Dashboard',
2178
+ navigationState: 'techo.manage.covid19Dashboard',
2179
+ },
2180
+ ],
2181
+ featureJson: '{}',
2182
+ },
2183
+ {
2184
+ id: 13,
2185
+ name: 'Upload Location',
2186
+ navigationState: 'techo.manage.uploadlocation',
2187
+ featureJson: '{}',
2188
+ },
2189
+ {
2190
+ id: 122,
2191
+ name: 'Health Facility Mapping',
2192
+ navigationState: 'techo.manage.healthinfrastructures',
2193
+ featureJson:
2194
+ '{"canAdd":true,"canEdit":true,"canEditFru":true,"canEditHWC":true,"canEditNcd":true,"canEditNrc":true,"canEditCmtc":true,"canEditIdsp":true,"canEditNpcb":true,"canEditSncu":true,"canEditGynaec":true,"canEditLabTest":true,"canEditMaYojna":true,"canEditBalsakha1":true,"canEditBalsakha3":true,"canEditBloodBank":true,"canChangeLocation":true,"canEditCovid19Lab":true,"canEditChiranjeevi":true,"canEditUsgFacility":true,"canEditVentilators":false,"canLinkHfrFacility":true,"canEditPediatrician":true,"canEditPmjayFacility":true,"canEditDefibrillators":false,"manageBasedOnLocation":true,"canEditCovid19Hospital":true,"canEditOxygenCylinders":false,"canEditReferralFacility":true,"manageBasedOnAssignment":true,"canManageHealthInfraType":true}',
2195
+ },
2196
+ {
2197
+ id: 1,
2198
+ name: 'Users',
2199
+ navigationState: 'techo.manage.users',
2200
+ featureJson:
2201
+ '{"canAdd":true,"canEdit":true,"canUnlockUser":true,"canEditPassword":true,"canEditUserName":true,"canEditBankDetails":true}',
2202
+ },
2203
+ {
2204
+ id: 109,
2205
+ name: 'Web Tasks',
2206
+ navigationState: 'techo.dashboard.webtasks',
2207
+ },
2208
+ {
2209
+ id: 197,
2210
+ name: 'Place of Service Delivery',
2211
+ navigationState: 'techo.manage.servicedeliverylocation',
2212
+ },
2213
+ {
2214
+ id: 4,
2215
+ name: 'Maternal Reports',
2216
+ navigationState: "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})",
2217
+ isGroup: true,
2218
+ subGroups: [
2219
+ {
2220
+ id: 93,
2221
+ name: 'Pregnant Women Report',
2222
+ navigationState: "techo.report.view({id:'dc464f6b-91ad-47d6-b652-609126ac316d'})",
2223
+ featureJson: '{"canDrillDown":true}',
2224
+ isDynamicReport: true,
2225
+ },
2226
+ {
2227
+ id: 270,
2228
+ name: 'Maternal Death Causewise',
2229
+ navigationState: "techo.report.view({id:'1422e079-a449-4935-9275-b10f69d80341'})",
2230
+ featureJson: '{"canDrillDown":true}',
2231
+ isDynamicReport: true,
2232
+ },
2233
+ {
2234
+ id: 175,
2235
+ name: 'Maternal Health Services Provided During The Year (Monthly)',
2236
+ navigationState: "techo.report.view({id:'b4c2d5f1-96f4-46ef-8afa-0515b63bb10f'})",
2237
+ featureJson: '{"canDrillDown":true}',
2238
+ isDynamicReport: true,
2239
+ },
2240
+ ],
2241
+ featureJson: '{"canDrillDown":true}',
2242
+ isDynamicReport: true,
2243
+ },
2244
+ {
2245
+ id: 349,
2246
+ name: 'Upload User',
2247
+ navigationState: 'techo.manage.uploaduser',
2248
+ featureJson: '{}',
2249
+ },
2250
+ {
2251
+ id: 158,
2252
+ name: 'Mobile Management',
2253
+ navigationState: 'techo.manage.mobilemangementinfo',
2254
+ },
2255
+ {
2256
+ id: 340,
2257
+ name: 'Location Type',
2258
+ navigationState: 'techo.manage.locationtype',
2259
+ featureJson: '{}',
2260
+ },
2261
+ {
2262
+ id: 70,
2263
+ name: 'FHS Family Report',
2264
+ navigationState: 'techo.report.familyreport',
2265
+ featureJson: '{}',
2266
+ },
2267
+ {
2268
+ id: 92,
2269
+ name: 'RCH TRAINING COUNT REPORT',
2270
+ navigationState: "techo.report.view({id:'9a9d3e2e-c5e5-4aa6-adc3-e84a511e5e3d'})",
2271
+ featureJson: '{"canDrillDown":true}',
2272
+ isDynamicReport: true,
2273
+ },
2274
+ {
2275
+ id: 339,
2276
+ name: 'Performance Dashboard',
2277
+ navigationState: 'techo.manage.performancedashboard',
2278
+ featureJson: '{}',
2279
+ },
2280
+ {
2281
+ id: 361,
2282
+ name: 'Create And Link Abha Number',
2283
+ navigationState: 'techo.manage.createAbhaNumber',
2284
+ },
2285
+ {
2286
+ id: 25,
2287
+ name: 'RCH Data Push',
2288
+ navigationState: 'techo.manage.wards',
2289
+ isGroup: true,
2290
+ subGroups: [
2291
+ {
2292
+ id: 259,
2293
+ name: 'Manage Location Wards',
2294
+ navigationState: 'techo.manage.wards',
2295
+ },
2296
+ {
2297
+ id: 315,
2298
+ name: 'RCH Locations',
2299
+ navigationState: 'techo.manage.rchLocations',
2300
+ },
2301
+ ],
2302
+ },
2303
+ {
2304
+ id: 211,
2305
+ name: 'RCH Register',
2306
+ navigationState: 'techo.manage.rchregister',
2307
+ featureJson: '{}',
2308
+ },
2309
+ {
2310
+ id: 369,
2311
+ name: 'Push Notification Configuration',
2312
+ navigationState: 'techo.manage.pushnotification',
2313
+ featureJson: '{"canAccessQueryBased":false\t}',
2314
+ },
2315
+ {
2316
+ id: 375,
2317
+ name: 'Login Health Facility Registry',
2318
+ navigationState: 'techo.manage.loginHfrId',
2319
+ },
2320
+ {
2321
+ id: 345,
2322
+ name: 'SMS Type',
2323
+ navigationState: 'techo.manage.smstype',
2324
+ featureJson: '{}',
2325
+ },
2326
+ {
2327
+ id: 191,
2328
+ name: 'Service Register',
2329
+ navigationState: 'techo.manage.memberserviceregister',
2330
+ featureJson: '{}',
2331
+ },
2332
+ {
2333
+ id: 241,
2334
+ name: 'Mobile App Version Count',
2335
+ navigationState: "techo.report.view({id:'7436038d-30e5-495a-9ead-cbffc292dd31'})",
2336
+ featureJson: '{"canDrillDown":true}',
2337
+ isDynamicReport: true,
2338
+ },
2339
+ {
2340
+ id: 371,
2341
+ name: 'Create Healthcare Professional ID',
2342
+ navigationState: 'techo.manage.createHpId',
2343
+ },
2344
+ {
2345
+ id: 190,
2346
+ name: 'National Programme For Control of Blindness',
2347
+ navigationState: 'techo.manage.npcblist',
2348
+ },
2349
+ {
2350
+ id: 264,
2351
+ name: 'Manage Teams',
2352
+ navigationState: 'techo.manage.teams',
2353
+ featureJson: '{}',
2354
+ },
2355
+ {
2356
+ id: 72,
2357
+ name: 'FHS Work Progress',
2358
+ navigationState: 'techo.manage.fhsworkbargraph',
2359
+ featureJson: '{}',
2360
+ },
2361
+ {
2362
+ id: 182,
2363
+ name: 'State Of Health User Approval',
2364
+ navigationState: 'techo.manage.userhealthapproval',
2365
+ featureJson: '{}',
2366
+ },
2367
+ {
2368
+ id: 177,
2369
+ name: 'Duplicate Member Verification',
2370
+ navigationState: 'techo.manage.duplicateMemberVerification',
2371
+ featureJson: '{}',
2372
+ },
2373
+ {
2374
+ id: 372,
2375
+ name: 'Login Healthcare Professional ID',
2376
+ navigationState: 'techo.manage.loginHpId',
2377
+ },
2378
+ {
2379
+ id: 17,
2380
+ name: 'Locations',
2381
+ navigationState: 'techo.manage.location',
2382
+ featureJson: '{"canAdd":true,"canEdit":false,"canChangeTranslation":true}',
2383
+ },
2384
+ {
2385
+ id: 153,
2386
+ name: 'Manage Migrations',
2387
+ navigationState: 'techo.manage.migrations',
2388
+ featureJson: '{}',
2389
+ },
2390
+ {
2391
+ id: 186,
2392
+ name: 'Upload Document',
2393
+ navigationState: 'techo.manage.uploadDocument',
2394
+ },
2395
+ {
2396
+ id: 15,
2397
+ name: 'Dr. Techo',
2398
+ navigationState: "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
2399
+ isGroup: true,
2400
+ subGroups: [
2401
+ {
2402
+ id: 286,
2403
+ name: 'Dr techo status detail report',
2404
+ navigationState: "techo.report.view({id:'5b4e2c7a-a8c0-4247-8d1e-b4914a3422ae'})",
2405
+ featureJson: '{"canDrillDown":true}',
2406
+ isDynamicReport: true,
2407
+ },
2408
+ ],
2409
+ featureJson: '{"canDrillDown":true}',
2410
+ isDynamicReport: true,
2411
+ },
2412
+ ],
2413
+ },
2414
+ };