rez_core 4.0.85 → 4.0.87

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 (384) hide show
  1. package/.idea/250218_nodejs_core.iml +11 -8
  2. package/.idea/codeStyles/Project.xml +58 -58
  3. package/.idea/codeStyles/codeStyleConfig.xml +4 -4
  4. package/.idea/inspectionProfiles/Project_Default.xml +1 -1
  5. package/.idea/modules.xml +7 -7
  6. package/.idea/prettier.xml +5 -5
  7. package/.idea/vcs.xml +5 -5
  8. package/.prettierrc +3 -3
  9. package/README.md +99 -99
  10. package/dist/module/auth/guards/role.guard.js +3 -3
  11. package/dist/module/auth/services/auth.service.js +2 -2
  12. package/dist/module/filter/repository/saved-filter.repository.js +4 -4
  13. package/dist/module/filter/service/filter-evaluator.service.js +2 -2
  14. package/dist/module/filter/service/filter.service.js +22 -22
  15. package/dist/module/integration/examples/usage.example.js +9 -9
  16. package/dist/module/integration/service/integration.service.js +1 -1
  17. package/dist/module/integration/service/wrapper.service.js +25 -25
  18. package/dist/module/listmaster/service/list-master-item.service.js +2 -2
  19. package/dist/module/mapper/service/field-mapper.service.js +5 -5
  20. package/dist/module/mapper/service/field-mapper.service.js.map +1 -1
  21. package/dist/module/mapper/service/mapper.service.js +2 -2
  22. package/dist/module/meta/service/entity-dynamic.service.js +18 -18
  23. package/dist/module/meta/service/entity-list.service.js +3 -3
  24. package/dist/module/meta/service/entity-master.service.js +3 -3
  25. package/dist/module/meta/service/entity-relation.service.js +11 -11
  26. package/dist/module/meta/service/entity-service-impl.service.js +3 -3
  27. package/dist/module/meta/service/resolver.service.js +3 -3
  28. package/dist/module/module/repository/menu.repository.js +12 -12
  29. package/dist/module/notification/service/notification.service.js +9 -9
  30. package/dist/module/user/controller/login.controller.js +18 -18
  31. package/dist/module/user/service/role.service.js +4 -4
  32. package/dist/module/user/service/user-session.service.js +2 -2
  33. package/dist/module/workflow/repository/action.repository.js +20 -20
  34. package/dist/module/workflow/repository/comm-template.repository.js +6 -6
  35. package/dist/module/workflow/repository/form-master.repository.js +2 -2
  36. package/dist/module/workflow/repository/stage-group.repository.js +23 -23
  37. package/dist/module/workflow/repository/stage-movement.repository.js +15 -15
  38. package/dist/module/workflow/repository/stage.repository.js +8 -8
  39. package/dist/module/workflow/service/action-template-mapping.service.js +22 -22
  40. package/dist/module/workflow/service/action.service.js +7 -7
  41. package/dist/module/workflow/service/entity-modification.service.js +6 -6
  42. package/dist/module/workflow/service/stage-group.service.js +2 -2
  43. package/dist/module/workflow/service/stage.service.js +2 -2
  44. package/dist/module/workflow/service/task.service.js +28 -28
  45. package/dist/module/workflow/service/workflow-list-master.service.js +15 -15
  46. package/dist/module/workflow/service/workflow-meta.service.js +35 -35
  47. package/dist/module/workflow/service/workflow.service.js +2 -2
  48. package/dist/tsconfig.build.tsbuildinfo +1 -1
  49. package/dist/utils/service/reflection-helper.service.js +2 -2
  50. package/docs/modules/event-driven-integration-design.md +91 -91
  51. package/docs/modules/integration.md +250 -250
  52. package/eslint.config.mjs +34 -34
  53. package/nest-cli.json +14 -14
  54. package/package.json +118 -118
  55. package/src/app.controller.ts +12 -12
  56. package/src/app.module.ts +49 -49
  57. package/src/app.service.ts +8 -8
  58. package/src/config/config.module.ts +18 -18
  59. package/src/config/database.config.ts +23 -23
  60. package/src/constant/global.constant.ts +67 -67
  61. package/src/core.module.ts +81 -81
  62. package/src/decorators/roles.decorator.ts +7 -7
  63. package/src/dtos/response.dto.ts +6 -6
  64. package/src/dtos/response.ts +5 -5
  65. package/src/index.ts +1 -1
  66. package/src/module/auth/auth.module.ts +49 -49
  67. package/src/module/auth/controller/auth.controller.ts +28 -28
  68. package/src/module/auth/guards/google-auth.guard.ts +9 -9
  69. package/src/module/auth/guards/jwt.guard.ts +22 -22
  70. package/src/module/auth/guards/role.guard.ts +68 -68
  71. package/src/module/auth/services/auth.service.ts +50 -50
  72. package/src/module/auth/services/jwt.service.ts +11 -11
  73. package/src/module/auth/strategies/google.strategy.ts +54 -54
  74. package/src/module/auth/strategies/jwt.strategy.ts +58 -58
  75. package/src/module/auth/strategies/local.strategy.ts +13 -13
  76. package/src/module/dashboard/controller/dashboard.controller.ts +36 -36
  77. package/src/module/dashboard/dashboard.module.ts +21 -21
  78. package/src/module/dashboard/entity/dashboard_page_data.entity.ts +27 -27
  79. package/src/module/dashboard/entity/widget_master.entity.ts +18 -18
  80. package/src/module/dashboard/repository/dashboard.repository.ts +42 -42
  81. package/src/module/dashboard/service/dashboard.service.ts +73 -73
  82. package/src/module/dev/dev.module.ts +12 -12
  83. package/src/module/dev/service/dev.service.ts +7 -7
  84. package/src/module/enterprise/controller/organization.controller.ts +36 -36
  85. package/src/module/enterprise/enterprise.module.ts +30 -30
  86. package/src/module/enterprise/entity/enterprise.entity.ts +37 -37
  87. package/src/module/enterprise/entity/organization-app-mapping.entity.ts +13 -13
  88. package/src/module/enterprise/entity/organization.entity.ts +92 -92
  89. package/src/module/enterprise/repository/enterprise.repository.ts +31 -31
  90. package/src/module/enterprise/repository/organization.repository.ts +26 -26
  91. package/src/module/enterprise/repository/school.repository.ts +278 -278
  92. package/src/module/enterprise/service/brand.service.ts +5 -5
  93. package/src/module/enterprise/service/enterprise.service.ts +16 -16
  94. package/src/module/enterprise/service/organization-app-mapping.service.ts +4 -4
  95. package/src/module/enterprise/service/organization.service.ts +145 -145
  96. package/src/module/filter/controller/filter.controller.ts +84 -84
  97. package/src/module/filter/dto/filter-request.dto.ts +38 -38
  98. package/src/module/filter/entity/saved-filter-detail.entity.ts +41 -41
  99. package/src/module/filter/entity/saved-filter-master.entity.ts +23 -23
  100. package/src/module/filter/filter.module.ts +31 -31
  101. package/src/module/filter/repository/saved-filter.repository.ts +168 -168
  102. package/src/module/filter/service/filter-evaluator.service.ts +86 -86
  103. package/src/module/filter/service/filter.service.ts +930 -930
  104. package/src/module/filter/service/saved-filter.service.ts +170 -170
  105. package/src/module/ics/controller/ics.controller.ts +21 -21
  106. package/src/module/ics/dto/ics.dto.ts +55 -55
  107. package/src/module/ics/ics.module.ts +13 -13
  108. package/src/module/ics/service/ics.service.ts +57 -57
  109. package/src/module/integration/controller/calender-event.controller.ts +31 -31
  110. package/src/module/integration/controller/integration.controller.ts +662 -662
  111. package/src/module/integration/controller/wrapper.controller.ts +37 -37
  112. package/src/module/integration/dto/create-config.dto.ts +526 -526
  113. package/src/module/integration/entity/integration-config.entity.ts +112 -112
  114. package/src/module/integration/entity/integration-entity-mapper.entity.ts +14 -14
  115. package/src/module/integration/entity/integration-source.entity.ts +17 -17
  116. package/src/module/integration/entity/user-integration.entity.ts +71 -71
  117. package/src/module/integration/examples/usage.example.ts +338 -338
  118. package/src/module/integration/factories/base.factory.ts +7 -7
  119. package/src/module/integration/factories/email.factory.ts +49 -49
  120. package/src/module/integration/factories/integration.factory.ts +121 -121
  121. package/src/module/integration/factories/sms.factory.ts +51 -51
  122. package/src/module/integration/factories/telephone.factory.ts +41 -41
  123. package/src/module/integration/factories/whatsapp.factory.ts +56 -56
  124. package/src/module/integration/integration.module.ts +110 -110
  125. package/src/module/integration/service/calendar-event.service.ts +118 -118
  126. package/src/module/integration/service/integration-entity-mapper.service.ts +17 -17
  127. package/src/module/integration/service/integration-queue.service.ts +229 -229
  128. package/src/module/integration/service/integration.service.ts +2621 -2621
  129. package/src/module/integration/service/oauth.service.ts +224 -224
  130. package/src/module/integration/service/wrapper.service.ts +499 -499
  131. package/src/module/integration/strategies/email/gmail-api.strategy.ts +280 -280
  132. package/src/module/integration/strategies/email/outlook-api.strategy.ts +44 -44
  133. package/src/module/integration/strategies/email/outlook.strategy.ts +64 -64
  134. package/src/module/integration/strategies/email/sendgrid-api.strategy.ts +260 -260
  135. package/src/module/integration/strategies/integration.strategy.ts +97 -97
  136. package/src/module/integration/strategies/sms/gupshup-sms.strategy.ts +146 -146
  137. package/src/module/integration/strategies/sms/msg91-sms.strategy.ts +164 -164
  138. package/src/module/integration/strategies/sms/tubelight-sms.strategy.ts +163 -163
  139. package/src/module/integration/strategies/telephone/ozonetel-voice.strategy.ts +238 -238
  140. package/src/module/integration/strategies/telephone/tubelight-voice.strategy.ts +210 -210
  141. package/src/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.ts +359 -359
  142. package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +372 -372
  143. package/src/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.ts +403 -403
  144. package/src/module/integration/strategies/whatsapp/whatsapp.strategy.ts +57 -57
  145. package/src/module/layout/controller/layout.controller.ts +47 -47
  146. package/src/module/layout/entity/header-items.entity.ts +28 -28
  147. package/src/module/layout/entity/header-section.entity.ts +19 -19
  148. package/src/module/layout/layout.module.ts +21 -21
  149. package/src/module/layout/repository/header-items.repository.ts +18 -18
  150. package/src/module/layout/repository/header-section.repository.ts +22 -22
  151. package/src/module/layout/service/header-section.service.ts +25 -25
  152. package/src/module/layout_preference/controller/layout_preference.controller.ts +47 -47
  153. package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
  154. package/src/module/layout_preference/layout_preference.module.ts +18 -18
  155. package/src/module/layout_preference/repository/layout_preference.repository.ts +30 -30
  156. package/src/module/layout_preference/service/layout_preference.service.ts +172 -172
  157. package/src/module/lead/controller/lead.controller.ts +30 -30
  158. package/src/module/lead/lead.module.ts +14 -14
  159. package/src/module/lead/repository/lead.repository.ts +41 -41
  160. package/src/module/lead/service/lead.service.ts +54 -54
  161. package/src/module/listmaster/controller/list-master.controller.ts +187 -187
  162. package/src/module/listmaster/entity/list-master-items.entity.ts +43 -43
  163. package/src/module/listmaster/entity/list-master.entity.ts +33 -33
  164. package/src/module/listmaster/listmaster.module.ts +44 -44
  165. package/src/module/listmaster/repository/list-master-items.repository.ts +169 -169
  166. package/src/module/listmaster/repository/list-master.repository.ts +46 -46
  167. package/src/module/listmaster/service/list-master-engine.ts +19 -19
  168. package/src/module/listmaster/service/list-master-extension.interface.ts +4 -4
  169. package/src/module/listmaster/service/list-master-item.service.ts +292 -292
  170. package/src/module/listmaster/service/list-master-registry.ts +15 -15
  171. package/src/module/listmaster/service/list-master.service.ts +442 -442
  172. package/src/module/mapper/controller/field-mapper.controller.ts +76 -76
  173. package/src/module/mapper/controller/mapper.controller.ts +20 -20
  174. package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
  175. package/src/module/mapper/entity/field-lovs.entity.ts +19 -19
  176. package/src/module/mapper/entity/field-mapper.entity.ts +53 -53
  177. package/src/module/mapper/entity/mapper.entity.ts +16 -16
  178. package/src/module/mapper/mapper.module.ts +34 -34
  179. package/src/module/mapper/repository/field-lovs.repository.ts +35 -35
  180. package/src/module/mapper/repository/field-mapper.repository.ts +42 -42
  181. package/src/module/mapper/repository/mapper.repository.ts +15 -15
  182. package/src/module/mapper/service/field-mapper.service.ts +254 -254
  183. package/src/module/mapper/service/mapper.service.ts +79 -79
  184. package/src/module/master/controller/master.controller.ts +74 -74
  185. package/src/module/master/service/master.service.ts +483 -483
  186. package/src/module/meta/controller/app-master.controller.ts +38 -38
  187. package/src/module/meta/controller/attribute-master.controller.ts +66 -66
  188. package/src/module/meta/controller/entity-dynamic.controller.ts +125 -125
  189. package/src/module/meta/controller/entity-master.controller.ts +28 -28
  190. package/src/module/meta/controller/entity-relation.controller.ts +36 -36
  191. package/src/module/meta/controller/entity.controller.ts +392 -392
  192. package/src/module/meta/controller/entity.public.controller.ts +75 -75
  193. package/src/module/meta/controller/media.controller.ts +107 -107
  194. package/src/module/meta/controller/meta.controller.ts +96 -96
  195. package/src/module/meta/controller/view-master.controller.ts +86 -86
  196. package/src/module/meta/dto/entity-list-data.dto.ts +6 -6
  197. package/src/module/meta/dto/entity-tab.dto.ts +4 -4
  198. package/src/module/meta/dto/entity-table.dto.ts +9 -9
  199. package/src/module/meta/entity/app-master.entity.ts +34 -34
  200. package/src/module/meta/entity/attribute-master.entity.ts +89 -89
  201. package/src/module/meta/entity/base-entity.entity.ts +75 -75
  202. package/src/module/meta/entity/entity-master.entity.ts +85 -85
  203. package/src/module/meta/entity/entity-relation-data.entity.ts +29 -29
  204. package/src/module/meta/entity/entity-relation.entity.ts +23 -23
  205. package/src/module/meta/entity/entity-table-column.entity.ts +61 -61
  206. package/src/module/meta/entity/entity-table.entity.ts +50 -50
  207. package/src/module/meta/entity/media-data.entity.ts +32 -32
  208. package/src/module/meta/entity/preference.entity.ts +62 -62
  209. package/src/module/meta/entity/view-master.entity.ts +41 -41
  210. package/src/module/meta/entity.module.ts +158 -158
  211. package/src/module/meta/repository/app-master.repository.ts +20 -20
  212. package/src/module/meta/repository/attribute-master.repository.ts +110 -110
  213. package/src/module/meta/repository/entity-master.repository.ts +69 -69
  214. package/src/module/meta/repository/entity-table-column.repository.ts +39 -39
  215. package/src/module/meta/repository/entity-table.repository.ts +53 -53
  216. package/src/module/meta/repository/media-data.repository.ts +50 -50
  217. package/src/module/meta/repository/preference.repository.ts +20 -20
  218. package/src/module/meta/repository/user-app-mapping.repository.ts +28 -28
  219. package/src/module/meta/repository/view-master.repository.ts +42 -42
  220. package/src/module/meta/service/app-master.service.ts +37 -37
  221. package/src/module/meta/service/attribute-master.service.ts +117 -117
  222. package/src/module/meta/service/common.service.ts +9 -9
  223. package/src/module/meta/service/entity-dynamic.service.ts +824 -824
  224. package/src/module/meta/service/entity-list.service.ts +205 -205
  225. package/src/module/meta/service/entity-master.service.ts +169 -169
  226. package/src/module/meta/service/entity-realation-data.service.ts +9 -9
  227. package/src/module/meta/service/entity-relation.service.ts +69 -69
  228. package/src/module/meta/service/entity-service-impl.service.ts +525 -525
  229. package/src/module/meta/service/entity-table-column.service.ts +39 -39
  230. package/src/module/meta/service/entity-table.service.ts +150 -150
  231. package/src/module/meta/service/entity-validation.service.ts +187 -187
  232. package/src/module/meta/service/entity.service.ts +67 -67
  233. package/src/module/meta/service/field-group.service.ts +103 -103
  234. package/src/module/meta/service/media-data.service.ts +507 -507
  235. package/src/module/meta/service/populate-meta.service.ts +193 -193
  236. package/src/module/meta/service/preference.service.ts +16 -16
  237. package/src/module/meta/service/resolver.service.ts +267 -267
  238. package/src/module/meta/service/section-master.service.ts +104 -104
  239. package/src/module/meta/service/update-form-json.service.ts +22 -22
  240. package/src/module/meta/service/user-app-mapping.service.ts +17 -17
  241. package/src/module/meta/service/view-master.service.ts +127 -127
  242. package/src/module/module/controller/menu.controller.ts +15 -15
  243. package/src/module/module/controller/module-access.controller.ts +134 -134
  244. package/src/module/module/entity/menu.entity.ts +43 -43
  245. package/src/module/module/entity/module-access.entity.ts +25 -25
  246. package/src/module/module/entity/module-action.entity.ts +17 -17
  247. package/src/module/module/entity/module.entity.ts +52 -52
  248. package/src/module/module/module.module.ts +42 -42
  249. package/src/module/module/repository/menu.repository.ts +184 -184
  250. package/src/module/module/repository/module-access.repository.ts +344 -344
  251. package/src/module/module/service/menu.service.ts +82 -82
  252. package/src/module/module/service/module-access.service.ts +209 -209
  253. package/src/module/notification/controller/notification.controller.ts +58 -58
  254. package/src/module/notification/controller/otp.controller.ts +117 -117
  255. package/src/module/notification/entity/notification.entity.ts +26 -26
  256. package/src/module/notification/entity/otp.entity.ts +28 -28
  257. package/src/module/notification/firebase-admin.config.ts +22 -22
  258. package/src/module/notification/notification.module.ts +69 -69
  259. package/src/module/notification/repository/otp.repository.ts +27 -27
  260. package/src/module/notification/service/email.service.ts +127 -127
  261. package/src/module/notification/service/notification.service.ts +163 -163
  262. package/src/module/notification/service/otp.service.ts +132 -132
  263. package/src/module/third-party-module/entity/third-party-api-registry.entity.ts +52 -52
  264. package/src/module/third-party-module/repository/third-party-api-registry.repository.ts +20 -20
  265. package/src/module/third-party-module/service/api-registry.service.ts +13 -13
  266. package/src/module/third-party-module/third-party.module.ts +12 -12
  267. package/src/module/user/controller/login.controller.ts +197 -197
  268. package/src/module/user/controller/user.controller.ts +40 -40
  269. package/src/module/user/dto/create-user.dto.ts +62 -62
  270. package/src/module/user/dto/update-user.dto.ts +4 -4
  271. package/src/module/user/entity/role.entity.ts +33 -33
  272. package/src/module/user/entity/user-role-mapping.entity.ts +38 -38
  273. package/src/module/user/entity/user-session.entity.ts +73 -73
  274. package/src/module/user/entity/user.entity.ts +59 -59
  275. package/src/module/user/repository/role.repository.ts +96 -96
  276. package/src/module/user/repository/user-role-mapping.repository.ts +126 -126
  277. package/src/module/user/repository/user.repository.ts +50 -50
  278. package/src/module/user/repository/userSession.repository.ts +33 -33
  279. package/src/module/user/service/login.service.ts +284 -284
  280. package/src/module/user/service/role.service.ts +189 -189
  281. package/src/module/user/service/user-role-mapping.service.ts +98 -98
  282. package/src/module/user/service/user-session.service.ts +168 -168
  283. package/src/module/user/service/user.service.ts +365 -365
  284. package/src/module/user/user.module.ts +65 -65
  285. package/src/module/workflow/controller/action-category.controller.ts +54 -54
  286. package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -23
  287. package/src/module/workflow/controller/action-template-mapping.controller.ts +35 -35
  288. package/src/module/workflow/controller/action.controller.ts +111 -111
  289. package/src/module/workflow/controller/activity-log.controller.ts +55 -55
  290. package/src/module/workflow/controller/comm-template.controller.ts +43 -43
  291. package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
  292. package/src/module/workflow/controller/form-master.controller.ts +43 -43
  293. package/src/module/workflow/controller/stage-group.controller.ts +48 -48
  294. package/src/module/workflow/controller/stage.controller.ts +50 -50
  295. package/src/module/workflow/controller/task.controller.ts +77 -77
  296. package/src/module/workflow/controller/workflow-list-master.controller.ts +44 -44
  297. package/src/module/workflow/controller/workflow-meta.controller.ts +80 -80
  298. package/src/module/workflow/controller/workflow.controller.ts +67 -67
  299. package/src/module/workflow/entity/action-category.entity.ts +38 -38
  300. package/src/module/workflow/entity/action-data.entity.ts +55 -55
  301. package/src/module/workflow/entity/action-resources-mapping.entity.ts +29 -29
  302. package/src/module/workflow/entity/action-template-mapping.entity.ts +17 -17
  303. package/src/module/workflow/entity/action.entity.ts +50 -50
  304. package/src/module/workflow/entity/activity-log.entity.ts +43 -43
  305. package/src/module/workflow/entity/comm-template.entity.ts +43 -43
  306. package/src/module/workflow/entity/entity-modification.entity.ts +38 -38
  307. package/src/module/workflow/entity/form.entity.ts +25 -25
  308. package/src/module/workflow/entity/stage-action-mapping.entity.ts +17 -17
  309. package/src/module/workflow/entity/stage-group.entity.ts +23 -23
  310. package/src/module/workflow/entity/stage-movement-data.entity.ts +38 -38
  311. package/src/module/workflow/entity/stage.entity.ts +20 -20
  312. package/src/module/workflow/entity/task-data.entity.ts +88 -88
  313. package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
  314. package/src/module/workflow/entity/workflow-data.entity.ts +11 -11
  315. package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
  316. package/src/module/workflow/entity/workflow.entity.ts +20 -20
  317. package/src/module/workflow/repository/action-category.repository.ts +79 -79
  318. package/src/module/workflow/repository/action-data.repository.ts +323 -323
  319. package/src/module/workflow/repository/action.repository.ts +323 -323
  320. package/src/module/workflow/repository/activity-log.repository.ts +148 -148
  321. package/src/module/workflow/repository/comm-template.repository.ts +149 -149
  322. package/src/module/workflow/repository/form-master.repository.ts +59 -59
  323. package/src/module/workflow/repository/stage-group.repository.ts +176 -176
  324. package/src/module/workflow/repository/stage-movement.repository.ts +244 -244
  325. package/src/module/workflow/repository/stage.repository.ts +172 -172
  326. package/src/module/workflow/repository/task.repository.ts +127 -127
  327. package/src/module/workflow/repository/workflow.repository.ts +42 -42
  328. package/src/module/workflow/service/action-category.service.ts +33 -33
  329. package/src/module/workflow/service/action-data.service.ts +62 -62
  330. package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
  331. package/src/module/workflow/service/action-template-mapping.service.ts +104 -104
  332. package/src/module/workflow/service/action.service.ts +279 -279
  333. package/src/module/workflow/service/activity-log.service.ts +107 -107
  334. package/src/module/workflow/service/comm-template.service.ts +180 -180
  335. package/src/module/workflow/service/entity-modification.service.ts +67 -67
  336. package/src/module/workflow/service/form-master.service.ts +35 -35
  337. package/src/module/workflow/service/populate-workflow.service.ts +303 -303
  338. package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
  339. package/src/module/workflow/service/stage-group.service.ts +319 -319
  340. package/src/module/workflow/service/stage.service.ts +199 -199
  341. package/src/module/workflow/service/task.service.ts +560 -560
  342. package/src/module/workflow/service/workflow-list-master.service.ts +60 -60
  343. package/src/module/workflow/service/workflow-meta.service.ts +640 -640
  344. package/src/module/workflow/service/workflow.service.ts +205 -205
  345. package/src/module/workflow/workflow.module.ts +174 -174
  346. package/src/module/workflow-automation/controller/workflow-automation.controller.ts +21 -21
  347. package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
  348. package/src/module/workflow-automation/entity/workflow-automation.entity.ts +35 -35
  349. package/src/module/workflow-automation/interface/action.decorator.ts +7 -7
  350. package/src/module/workflow-automation/interface/action.interface.ts +5 -5
  351. package/src/module/workflow-automation/service/action-registery.service.ts +35 -35
  352. package/src/module/workflow-automation/service/workflow-automation-engine.service.ts +214 -214
  353. package/src/module/workflow-automation/service/workflow-automation.service.ts +347 -347
  354. package/src/module/workflow-automation/workflow-automation.module.ts +34 -34
  355. package/src/resources/dev.properties.yaml +30 -30
  356. package/src/resources/local.properties.yaml +27 -27
  357. package/src/resources/properties.module.ts +12 -12
  358. package/src/resources/properties.yaml.ts +11 -11
  359. package/src/resources/uat.properties.yaml +31 -31
  360. package/src/table.config.ts +126 -126
  361. package/src/utils/dto/excel-data.dto.ts +14 -14
  362. package/src/utils/dto/excelsheet-data.dto.ts +5 -5
  363. package/src/utils/service/base64util.service.ts +18 -18
  364. package/src/utils/service/clockIDGenUtil.service.ts +21 -21
  365. package/src/utils/service/codeGenerator.service.ts +22 -22
  366. package/src/utils/service/dateUtil.service.ts +17 -17
  367. package/src/utils/service/encryptUtil.service.ts +97 -97
  368. package/src/utils/service/excel-helper.service.ts +72 -72
  369. package/src/utils/service/excelUtil.service.ts +15 -15
  370. package/src/utils/service/file-util.service.ts +11 -11
  371. package/src/utils/service/json-util.service.ts +23 -23
  372. package/src/utils/service/loggingUtil.service.ts +34 -34
  373. package/src/utils/service/reflection-helper.service.ts +62 -62
  374. package/src/utils/service/wbsCodeGen.service.ts +8 -8
  375. package/src/utils/utils.module.ts +25 -25
  376. package/tsconfig.build.json +4 -4
  377. package/tsconfig.json +24 -24
  378. package/.claude/settings.local.json +0 -26
  379. package/.idea/copilot.data.migration.agent.xml +0 -6
  380. package/.idea/copilot.data.migration.ask.xml +0 -6
  381. package/.idea/copilot.data.migration.ask2agent.xml +0 -6
  382. package/.idea/copilot.data.migration.edit.xml +0 -6
  383. package/.idea/misc.xml +0 -6
  384. package/server.log +0 -850
@@ -1,930 +1,930 @@
1
- import { BadRequestException, Inject, Injectable } from '@nestjs/common';
2
- import { AttributeMasterService } from 'src/module/meta/service/attribute-master.service';
3
- import { EntityMasterService } from 'src/module/meta/service/entity-master.service';
4
- import { EntityTableColumnService } from 'src/module/meta/service/entity-table-column.service';
5
- import { EntityTableService } from 'src/module/meta/service/entity-table.service';
6
- import { DataSource } from 'typeorm';
7
- import { FilterCondition, FilterRequestDto } from '../dto/filter-request.dto';
8
- import { SavedFilterService } from './saved-filter.service';
9
-
10
- import * as moment from 'moment';
11
- import { EntityRelationService } from 'src/module/meta/service/entity-relation.service';
12
- import { ResolverService } from 'src/module/meta/service/resolver.service';
13
- import { LoggingService } from 'src/utils/service/loggingUtil.service';
14
-
15
- @Injectable()
16
- export class FilterService {
17
- constructor(
18
- private dataSource: DataSource,
19
- private readonly attributeMasterService: AttributeMasterService,
20
- private readonly entityMasterService: EntityMasterService,
21
- @Inject('SavedFilterService')
22
- private readonly savedFilterService: SavedFilterService,
23
- @Inject('EntityRelationService')
24
- private readonly entityRelationService: EntityRelationService,
25
- private readonly resolverService: ResolverService,
26
- @Inject() protected readonly loggingService: LoggingService,
27
- ) {}
28
- private readonly skipAppCodeFilterEntities = ['ORGP'];
29
- private readonly skipOrgFilterEntities = ['ORGP'];
30
-
31
-
32
- private async gettab_value_counts(
33
- tableName: string,
34
- column: string | undefined,
35
- whereClauses: { query: string; params: Record<string, any> }[],
36
- ) {
37
- if (!column) return [];
38
-
39
- let whereSQL = '';
40
- const values: any[] = [];
41
-
42
- if (whereClauses.length > 0) {
43
- const clauseParts = whereClauses.map((clause) => {
44
- let parsedQuery = clause.query.replace(/\be\./g, ''); // remove e.
45
-
46
- Object.entries(clause.params).forEach(([key, val]) => {
47
- if (Array.isArray(val)) {
48
- // if it's an array → expand placeholders (?, ?, ?)
49
- const placeholders = val.map(() => '?').join(', ');
50
- parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), `(${placeholders})`);
51
- values.push(...val); // flatten values
52
- } else {
53
- parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), '?');
54
- values.push(val);
55
- }
56
- });
57
-
58
- return parsedQuery;
59
- });
60
-
61
- whereSQL = `WHERE ${clauseParts.join(' AND ')}`;
62
- }
63
-
64
- const rawSQL = `
65
- SELECT ${column} AS tab_value, COUNT(*) AS tab_value_count
66
- FROM ${tableName}
67
- ${whereSQL}
68
- GROUP BY ${column}
69
- `;
70
-
71
- const rows = await this.dataSource.query(rawSQL, values);
72
-
73
- const total = rows.reduce(
74
- (sum, r) => sum + parseInt(r.tab_value_count, 10),
75
- 0,
76
- );
77
-
78
- return [
79
- { tab_value: 'All', tab_value_count: total },
80
- ...rows.map((r) => ({
81
- tab_value: r.tab_value ?? 'UNKNOWN',
82
- tab_value_count: parseInt(r.tab_value_count, 10),
83
- })),
84
- ];
85
- }
86
-
87
-
88
- async applyFilterWrapper(dto: FilterRequestDto) {
89
- const {
90
- entity_type,
91
- quickFilter = [],
92
- savedFilterCode,
93
- attributeFilter = [],
94
- loggedInUser,
95
- } = dto;
96
-
97
- // 🔹 Step 1: Collect all filters (from body + savedFilter)
98
- const savedFilters = await this.getSavedFilters(
99
- savedFilterCode ?? undefined,
100
- );
101
- const allFilters = [
102
- ...quickFilter,
103
- ...attributeFilter,
104
- ...savedFilters,
105
- ].filter((f) => f.filter_value !== '');
106
-
107
- // 🔹 Step 2: Group filters by filter_entity_type
108
- const grouped = allFilters.reduce(
109
- (acc, f) => {
110
- if (!acc[f.filter_entity_type]) acc[f.filter_entity_type] = [];
111
- acc[f.filter_entity_type].push(f);
112
- return acc;
113
- },
114
- {} as Record<string, any[]>,
115
- );
116
-
117
- console.log('🟠 [FilterService] Grouped filters by entity type:', grouped);
118
-
119
- // 🔹 Step 3: Handle sub-entities first
120
- let intersectionIds: number[] | null = null;
121
- for (const [subEntityType, filters] of Object.entries(grouped)) {
122
- if (subEntityType === entity_type) continue; // skip main entity for now
123
-
124
- let { queryParams, tabs, ...newDto } = dto;
125
-
126
- const subDto: FilterRequestDto = {
127
- ...newDto,
128
- entity_type: subEntityType,
129
- quickFilter: filters as FilterCondition[],
130
- savedFilterCode: null, // already merged
131
- attributeFilter: [],
132
- };
133
-
134
- const subResult = await this.applyFilter(subDto);
135
- const subEntityIds = subResult.data.entity_list.map((row) => row.id);
136
-
137
- console.log(
138
- `🧩 [FilterService] Sub-entity ${subEntityType} returned IDs:`,
139
- subEntityIds,
140
- );
141
-
142
- if (!subEntityIds.length) {
143
- console.log(
144
- `ℹ️ [FilterService] No records for sub-entity ${subEntityType}, returning empty result`,
145
- );
146
- return {
147
- success: true,
148
- data: { entity_tabs: [], entity_list: [], pagination: {} },
149
- };
150
- }
151
-
152
- const relatedIds = await this.entityRelationService.getRelatedEntityIds(
153
- entity_type,
154
- subEntityType,
155
- subEntityIds,
156
- dto.loggedInUser.organization_id,
157
- );
158
-
159
- intersectionIds =
160
- intersectionIds === null
161
- ? relatedIds
162
- : intersectionIds.filter((id) => relatedIds.includes(id));
163
-
164
- if (intersectionIds.length === 0) {
165
- console.log(
166
- '🚫 [FilterService] No intersection IDs left, returning empty result',
167
- );
168
- return {
169
- success: true,
170
- data: { entity_tabs: [], entity_list: [], pagination: {} },
171
- };
172
- }
173
- }
174
-
175
- // 🔹 Step 4: Call applyFilter for main entity
176
- const mainFilters = grouped[entity_type] || [];
177
- const mainDto: FilterRequestDto = {
178
- ...dto,
179
- quickFilter: [...mainFilters],
180
- savedFilterCode: null,
181
- attributeFilter: [],
182
- };
183
-
184
- if (intersectionIds && intersectionIds.length > 0) {
185
- (mainDto.quickFilter ??= []).push({
186
- filter_attribute: 'id',
187
- filter_operator: 'equal',
188
- filter_value: intersectionIds,
189
- filter_entity_type: entity_type,
190
- });
191
- }
192
-
193
- return await this.applyFilter(mainDto);
194
- }
195
-
196
- async applyFilter(dto: FilterRequestDto) {
197
- const {
198
- entity_type,
199
- quickFilter,
200
- savedFilterCode,
201
- attributeFilter,
202
- tabs,
203
- sortby,
204
- loggedInUser,
205
- queryParams,
206
- customLevelType,
207
- customLevelId,
208
- customAppCode,
209
- } = dto;
210
-
211
- // abstract user details
212
- const {
213
- level_type,
214
- level_id,
215
- id: user_id,
216
- appcode,
217
- organization_id,
218
- } = loggedInUser || {};
219
-
220
- // Fetch meta from entity table service
221
- const entityMeta = await this.entityMasterService.getEntityData(
222
- entity_type,
223
- loggedInUser,
224
- );
225
- const tableName = entityMeta?.data_source; // data_source is the table name
226
-
227
- if (!tableName) {
228
- console.error(`❌ [FilterService] Invalid entity_type: ${entity_type}`);
229
- throw new BadRequestException(`Invalid entity_type: ${entity_type}`);
230
- }
231
-
232
- const getAttributeColumnMeta =
233
- await this.attributeMasterService.findAttributesByMappedEntityType(
234
- entity_type,
235
- loggedInUser,
236
- );
237
-
238
- const attributeMetaMap = getAttributeColumnMeta.reduce(
239
- (acc, attr) => {
240
- acc[attr.attribute_key] = attr;
241
- return acc;
242
- },
243
- {} as Record<string, any>,
244
- );
245
-
246
- // Get and parse saved filters
247
- const savedFilters = await this.getSavedFilters(
248
- savedFilterCode ?? undefined,
249
- );
250
- const savedFiltersNormalized = savedFilters.map((f) => ({
251
- filter_attribute: f.filter_attribute,
252
- filter_operator: f.filter_operator,
253
- filter_value: f.filter_value,
254
- }));
255
-
256
- const baseFilters = [
257
- ...(quickFilter || []).filter(
258
- (f) => f.filter_value != null && f.filter_value !== '',
259
- ),
260
- ...savedFiltersNormalized.filter(
261
- (f) => f.filter_value != null && f.filter_value !== '',
262
- ),
263
- ...(attributeFilter || []).filter(
264
- (f) => f.filter_value != null && f.filter_value !== '',
265
- ),
266
- ];
267
-
268
- // 🧱 Build where clauses
269
- const baseWhere = this.buildWhereClauses(baseFilters, attributeMetaMap);
270
-
271
- // Handle TEMPLATE entity special condition
272
- if (entity_type === 'TEMP' || entity_type === 'TEM') {
273
- const templateTable = entityMeta?.data_source || 'frm_wf_comm_template';
274
-
275
- if (level_type === 'ORG') {
276
-
277
- baseWhere.push({
278
- query: ` ((e.level_type = 'ORG' AND e.level_id = ${loggedInUser.organization_id} AND e.organization_id = ${loggedInUser.organization_id}))`,
279
- params: {
280
-
281
- }
282
- })
283
-
284
- } else if (level_type === 'SCH') {
285
- baseWhere.push({
286
- query: `
287
- (
288
- (e.level_type = 'SCH' AND e.level_id = ${loggedInUser.level_id} AND e.organization_id = ${loggedInUser.organization_id})
289
- OR
290
- (
291
- e.level_type = 'ORG'
292
- AND e.level_id = ${loggedInUser.organization_id}
293
- AND e.organization_id = ${loggedInUser.organization_id}
294
- AND e.code NOT IN (
295
- SELECT sub.code
296
- FROM frm_wf_comm_template AS sub
297
- WHERE sub.level_type = 'SCH' AND sub.level_id = ${loggedInUser.level_id}
298
- )
299
- )
300
- )
301
- `,
302
- params: {
303
-
304
- }
305
- });
306
-
307
- }
308
- }
309
-
310
- // Default org/level clause — skip TEMPLATE entity
311
- if (
312
- entity_type !== 'ORGP' &&
313
- entity_type !== 'TEMP' &&
314
- entity_type !== 'TEM' && // ✅ skip TEMPLATE
315
- level_type &&
316
- level_id &&
317
- organization_id &&
318
- !customLevelType &&
319
- !customLevelId
320
- ) {
321
- baseWhere.push({
322
- query:
323
- 'e.organization_id = :organization_id AND e.level_type = :level_type AND e.level_id = :level_id',
324
- params: { organization_id, level_type, level_id },
325
- });
326
- }
327
-
328
-
329
-
330
-
331
-
332
- if (entity_type == "USR" || entity_type == "UPR") {
333
- baseWhere.push({
334
- query: 'e.is_customer is NULL',
335
- params: {},
336
- });
337
- }
338
-
339
-
340
- if (customLevelType && customLevelId && customAppCode) {
341
- baseWhere.push({
342
- query:
343
- 'e.organization_id = :organization_id AND e.level_type = :customLevelType AND e.level_id = :customLevelId AND e.appcode = :customAppCode',
344
- params: {
345
- organization_id,
346
- customLevelType,
347
- customLevelId,
348
- customAppCode,
349
- },
350
- });
351
- }
352
-
353
- // Handle queryParams filters
354
- if (queryParams) {
355
- Object.entries(queryParams).forEach(([key, value]) => {
356
- if (!value) return;
357
-
358
- if (key === 'attributeName' && queryParams['attributeValue']) {
359
- const attrName = value;
360
- const attrValue = queryParams['attributeValue'];
361
- baseWhere.push({
362
- query: `e.${attrName} = :${attrName}`,
363
- params: { [attrName]: attrValue },
364
- });
365
- } else if (key !== 'attributeValue') {
366
- baseWhere.push({
367
- query: `e.${key} = :${key}`,
368
- params: { [key]: value },
369
- });
370
- }
371
- });
372
- }
373
-
374
- console.log('🟠 [FilterService] Constructed baseWhere clauses:', baseWhere);
375
-
376
- // layout preference query
377
- const layoutPreference = await this.dataSource.query(
378
- `SELECT mapped_json
379
- FROM frm_entity_layout_pref
380
- WHERE user_id = ? AND mapped_entity_type = ? AND mapped_level_id = ? AND mapped_level_type = ? AND type = 'layout'`,
381
- [user_id, entity_type, level_id, level_type],
382
- );
383
-
384
- // Extract layout preference
385
- const layout = layoutPreference?.[0]?.mapped_json?.quick_tab || {};
386
- const showList = layout?.show_list?.map((val) => val.toLowerCase()) || [];
387
-
388
- let allTabs;
389
- if (layout.attribute) {
390
- allTabs = await this.gettab_value_counts(
391
- entityMeta?.data_source,
392
- layout.attribute,
393
- baseWhere,
394
- );
395
- } else {
396
- allTabs = await this.gettab_value_counts(
397
- entityMeta?.data_source,
398
- tabs?.columnName,
399
- baseWhere,
400
- );
401
- }
402
-
403
- let filteredTabs;
404
-
405
- if (showList?.length > 0) {
406
- const isAllNeeded = layout?.isAllSelected && !showList.includes('all');
407
- if (isAllNeeded) showList.push('all');
408
-
409
- filteredTabs = allTabs.filter((tab) =>
410
- showList.includes(tab.tab_value.toLowerCase()),
411
- );
412
-
413
- const allTab = filteredTabs.find(
414
- (tab) => tab.tab_value?.toLowerCase() === 'all',
415
- );
416
- filteredTabs = filteredTabs.filter(
417
- (tab) => tab.tab_value?.toLowerCase() !== 'all',
418
- );
419
-
420
- // SORTING LOGIC
421
- if (layout.sorting === 'asc') {
422
- filteredTabs.sort((a, b) =>
423
- a.tab_value.toLowerCase().localeCompare(b.tab_value.toLowerCase()),
424
- );
425
- } else if (layout.sorting === 'dsc') {
426
- filteredTabs.sort((a, b) =>
427
- b.tab_value.toLowerCase().localeCompare(a.tab_value.toLowerCase()),
428
- );
429
- } else if (layout.sorting === 'count_asc') {
430
- filteredTabs.sort((a, b) => a.tab_value_count - b.tab_value_count);
431
- } else if (layout.sorting === 'count_dsc') {
432
- filteredTabs.sort((a, b) => b.tab_value_count - a.tab_value_count);
433
- } else if (layout.sorting === 'custom') {
434
- const orderMap = new Map<string, number>(
435
- showList.map((val, index) => [val.toLowerCase(), index]),
436
- );
437
- filteredTabs.sort((a, b) => {
438
- const aIndex = orderMap.get(a.tab_value.toLowerCase()) ?? Infinity;
439
- const bIndex = orderMap.get(b.tab_value.toLowerCase()) ?? Infinity;
440
- return aIndex - bIndex;
441
- });
442
- }
443
-
444
- if (allTab) filteredTabs.unshift(allTab);
445
-
446
- if (layout?.isCombineOther) {
447
- const originalAllTab = allTabs.find(
448
- (tab) => tab.tab_value.toLowerCase() === 'all',
449
- );
450
- const allCount = originalAllTab?.tab_value_count ?? 0;
451
- const knownTabCountSum = filteredTabs
452
- .filter((tab) => tab.tab_value.toLowerCase() !== 'all')
453
- .reduce((acc, tab) => acc + tab.tab_value_count, 0);
454
-
455
- const othersCount = allCount - knownTabCountSum;
456
- filteredTabs.push({
457
- tab_value: 'OTHERS',
458
- tab_value_count: othersCount < 0 ? 0 : othersCount,
459
- });
460
- }
461
- } else {
462
- filteredTabs = allTabs;
463
- }
464
-
465
- const dataWhere = [...baseWhere];
466
-
467
- if (tabs?.columnName && tabs?.value) {
468
- const tabAttrMeta = attributeMetaMap[tabs.columnName];
469
- const tabValue = tabs.value.toLowerCase();
470
-
471
- if (tabValue === 'others') {
472
- const valuesToExclude = showList.filter((v) => v !== 'all');
473
- if (valuesToExclude.length > 0) {
474
- for (const value of valuesToExclude) {
475
- const resolvedId = await this.resolverService.getResolvedId(
476
- loggedInUser,
477
- tabs.columnName,
478
- value,
479
- entity_type,
480
- );
481
- if (resolvedId) {
482
- const tabCondition = this.buildCondition(
483
- {
484
- filter_attribute: tabs.columnName,
485
- filter_operator: 'not_equal',
486
- filter_value: [resolvedId],
487
- skip_id: true,
488
- },
489
- tabAttrMeta,
490
- );
491
- if (tabCondition) dataWhere.push(tabCondition);
492
- }
493
- }
494
- }
495
- } else if (tabValue !== 'all') {
496
- const resolvedId = await this.resolverService.getResolvedId(
497
- loggedInUser,
498
- tabs.columnName,
499
- tabs.value,
500
- entity_type,
501
- );
502
-
503
- if (resolvedId) {
504
- const tabCondition = this.buildCondition(
505
- {
506
- filter_attribute: tabs.columnName,
507
- filter_operator: 'equal',
508
- filter_value: [resolvedId],
509
- skip_id: true,
510
- },
511
- tabAttrMeta,
512
- );
513
- if (tabCondition) dataWhere.push(tabCondition);
514
- }
515
- }
516
- }
517
-
518
- const qb = this.dataSource
519
- .createQueryBuilder()
520
- .select('e.*')
521
- .from(tableName, 'e');
522
- dataWhere.forEach((clause) => qb.andWhere(clause.query, clause.params));
523
-
524
- if (layoutPreference && layoutPreference[0]?.mapped_json?.sorting) {
525
- if (Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.tabs)) {
526
- const preferenceTabArray =
527
- layoutPreference[0]?.mapped_json?.sorting?.tabs;
528
- const tabFilter = preferenceTabArray.find(
529
- (tabData) => tabData.tab_name === tabs?.value,
530
- );
531
- tabFilter?.sortby.forEach(({ column, order }) => {
532
- qb.addOrderBy(
533
- `e.${column}`,
534
- order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
535
- );
536
- });
537
- } else if (
538
- Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.sortby)
539
- ) {
540
- layoutPreference[0]?.mapped_json?.sorting?.sortby?.forEach(
541
- ({ column, order }) => {
542
- qb.addOrderBy(
543
- `e.${column}`,
544
- order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
545
- );
546
- },
547
- );
548
- }
549
- }
550
-
551
- qb.addOrderBy('e.created_date', 'DESC');
552
-
553
- const page = dto.page && dto.page > 0 ? dto.page : 1;
554
- const size = dto.size && dto.size > 0 ? dto.size : 10;
555
- qb.skip((page - 1) * size).take(size);
556
-
557
- const entity_list = await qb.getRawMany();
558
-
559
- console.log(`📦 [FilterService] Fetched ${entity_list.length} records`);
560
-
561
- const dateAttributes = Object.entries(attributeMetaMap)
562
- .filter(([_, attr]) => attr.data_type === 'date')
563
- .map(([key]) => key);
564
-
565
- const formatDate = (dateStr: string | null): string | null =>
566
- dateStr ? moment(dateStr).format('DD-MM-YYYY') : '';
567
-
568
- const formatDatesInRow = (row: any): any => {
569
- const formattedRow = { ...row };
570
- for (const key of dateAttributes) {
571
- if (formattedRow[key])
572
- formattedRow[key] = formatDate(formattedRow[key]);
573
- }
574
- return formattedRow;
575
- };
576
-
577
- const formattedEntityList = entity_list.map(formatDatesInRow);
578
-
579
- const resolvedEntityList = await Promise.all(
580
- formattedEntityList.map((row) =>
581
- this.resolverService.getResolvedData(loggedInUser, row, entity_type),
582
- ),
583
- );
584
-
585
- const resolvedTabs = await Promise.all(
586
- filteredTabs.map(async (tab) => {
587
- const tabAttrKey = layout?.attribute || tabs?.columnName;
588
-
589
- if (
590
- !tabAttrKey ||
591
- tab.tab_value?.toLowerCase() === 'all' ||
592
- tab.tab_value?.toLowerCase() === 'others'
593
- ) {
594
- return tab;
595
- }
596
-
597
- const resolvedVal = await this.resolverService.getResolvedValue(
598
- loggedInUser,
599
- tabAttrKey,
600
- tab.tab_value,
601
- entity_type,
602
- );
603
-
604
- return { ...tab, tab_value: resolvedVal ?? tab.tab_value };
605
- }),
606
- );
607
-
608
- const countQb = this.dataSource
609
- .createQueryBuilder()
610
- .select('COUNT(*)', 'count')
611
- .from(tableName, 'e');
612
- dataWhere.forEach((clause) =>
613
- countQb.andWhere(clause.query, clause.params),
614
- );
615
- const countResult = await countQb.getRawOne();
616
- const total = parseInt(countResult.count, 10);
617
-
618
- console.log('📊 [FilterService] Returning final result with total:', total);
619
-
620
- return {
621
- success: true,
622
- data: {
623
- entity_tabs: resolvedTabs,
624
- entity_list: resolvedEntityList,
625
- pagination: {
626
- total,
627
- page,
628
- size,
629
- totalPages: Math.ceil(total / size),
630
- hasNextPage: page * size < total,
631
- hasPreviousPage: page > 1,
632
- },
633
- },
634
- };
635
- }
636
-
637
- private parseFilters(raw: any, isSingle = false): any[] {
638
- if (!raw) return [];
639
-
640
- if (typeof raw === 'string') {
641
- try {
642
- const parsed = JSON.parse(raw);
643
- return isSingle ? [parsed] : parsed;
644
- } catch {
645
- throw new BadRequestException('Invalid JSON in filter input');
646
- }
647
- }
648
-
649
- return isSingle ? [raw] : Array.isArray(raw) ? raw : [];
650
- }
651
-
652
- private async getSavedFilters(code?: string): Promise<any[]> {
653
- if (!code) return [];
654
-
655
- const savedFilter = await this.savedFilterService.getDetailsByCode(code);
656
- if (!savedFilter) {
657
- throw new BadRequestException(`Saved filter not found for code: ${code}`);
658
- }
659
- return savedFilter;
660
- }
661
-
662
- private buildWhereClauses(
663
- filters: any[],
664
- attributeMeta: Record<string, any>,
665
- ) {
666
- return filters
667
- .map((f) => this.buildCondition(f, attributeMeta[f.filter_attribute]))
668
- .filter(
669
- (clause): clause is { query: string; params: any } => clause !== null,
670
- );
671
- }
672
-
673
- private buildCondition(
674
- filter: any,
675
- meta: any,
676
- ): { query: string; params: any } | null {
677
- if (!meta) return null;
678
-
679
- let attr = filter.filter_attribute;
680
- const val = filter.filter_value;
681
- const op = filter.filter_operator;
682
- const key = `param_${attr}_${Math.random().toString(36).substring(2, 8)}`;
683
-
684
- // if (
685
- // (meta.data_source_type === 'entity' ||
686
- // meta.data_source_type === 'master') &&
687
- // !filter.skip_id
688
- // ) {
689
- // attr = `${attr}_id`;
690
- // }
691
-
692
- switch (meta.data_type) {
693
- case 'text':
694
- return this.buildTextCondition(attr, op, val, key);
695
- case 'number':
696
- return this.buildNumberCondition(attr, op, val, key);
697
- case 'date':
698
- return this.buildDateCondition(attr, op, val, key);
699
- case 'select':
700
- return this.buildMultiSelectCondition(attr, op, val, key);
701
- case 'multiselect':
702
- return this.buildMultiSelectCondition(attr, op, val, key);
703
- case 'checkbox':
704
- return this.buildMultiSelectCondition(attr, op, val, key);
705
- case 'radio':
706
- return this.buildMultiSelectCondition(attr, op, val, key);
707
- case 'year':
708
- return this.buildYearCondition(attr, op, val, key);
709
- default:
710
- return null;
711
- }
712
- }
713
-
714
- private buildTextCondition(attr: string, op: string, val: any, key: string) {
715
- switch (op) {
716
- case 'contains':
717
- return {
718
- query: `LOWER(e.${attr}) LIKE :${key}`,
719
- params: { [key]: `%${val ? val.toLowerCase() : ''}%` },
720
- };
721
- case 'equal':
722
- return {
723
- query: `e.${attr} = :${key}`,
724
- params: { [key]: val },
725
- };
726
- case 'not_equal':
727
- return {
728
- query: `e.${attr} != :${key}`,
729
- params: { [key]: val },
730
- };
731
- case 'empty':
732
- return {
733
- query: `e.${attr} IS NULL`,
734
- params: {},
735
- };
736
- case 'not_empty':
737
- return {
738
- query: `e.${attr} IS NOT NULL`,
739
- params: {},
740
- };
741
- default:
742
- throw new BadRequestException(`Unsupported operator for text: ${op}`);
743
- }
744
- }
745
-
746
- private buildNumberCondition(
747
- attr: string,
748
- op: string,
749
- val: any,
750
- key: string,
751
- ) {
752
- switch (op) {
753
- case 'equal':
754
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
755
- case 'not_equal':
756
- return { query: `e.${attr} != :${key}`, params: { [key]: val } };
757
- case 'greater_than':
758
- return { query: `e.${attr} > :${key}`, params: { [key]: val } };
759
- case 'less_than':
760
- return { query: `e.${attr} < :${key}`, params: { [key]: val } };
761
- case 'less_than_qual_to':
762
- return { query: `e.${attr} <= :${key}`, params: { [key]: val } };
763
- case 'greater_than_qual_to':
764
- return { query: `e.${attr} >= :${key}`, params: { [key]: val } };
765
- case 'empty':
766
- return { query: `e.${attr} IS NULL`, params: {} };
767
- case 'not_empty':
768
- return { query: `e.${attr} IS NOT NULL`, params: {} };
769
-
770
- default:
771
- throw new BadRequestException(`Unsupported operator for number: ${op}`);
772
- }
773
- }
774
-
775
- private buildDateCondition(attr: string, op: string, val: any, key: string) {
776
- switch (op) {
777
- case 'equal':
778
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
779
- case 'before':
780
- return { query: `e.${attr} < :${key}`, params: { [key]: val } };
781
- case 'after':
782
- return { query: `e.${attr} > :${key}`, params: { [key]: val } };
783
- case 'between': {
784
- if (typeof val === 'string') {
785
- val = val.split(',').map((v) => v.trim());
786
- }
787
-
788
- if (
789
- !Array.isArray(val) ||
790
- val.length !== 2 ||
791
- val[0] === '' ||
792
- val[1] === ''
793
- ) {
794
- // throw new BadRequestException(`Invalid value for in_between: ${val}`);
795
- console.log(`Invalid value for in_between: ${val}`);
796
- return null;
797
- }
798
- return {
799
- query: `e.${attr} BETWEEN :${key}_start AND :${key}_end`,
800
- params: {
801
- [`${key}_start`]: val[0],
802
- [`${key}_end`]: val[1],
803
- },
804
- };
805
- }
806
-
807
- case 'today': {
808
- const today = new Date().toISOString().split('T')[0]; // 'YYYY-MM-DD'
809
-
810
- return {
811
- query: `DATE(e.${attr}) = :today`,
812
- params: {
813
- today,
814
- },
815
- };
816
- }
817
-
818
- case 'empty': {
819
- return {
820
- query: `e.${attr} IS NULL`,
821
- params: {},
822
- };
823
- }
824
-
825
- case 'not_empty': {
826
- return {
827
- query: `e.${attr} IS NOT NULL`,
828
- params: {},
829
- };
830
- }
831
- default:
832
- throw new BadRequestException(`Unsupported operator for date: ${op}`);
833
- }
834
- }
835
-
836
- private buildSelectCondition(
837
- attr: string,
838
- op: string,
839
- val: any,
840
- key: string,
841
- ) {
842
- switch (op) {
843
- case 'equal':
844
- return { query: `e.${attr} = :${key}`, params: { [key]: val } };
845
- case 'not_equal':
846
- return { query: `e.${attr} != :${key}`, params: { [key]: val } };
847
- case 'empty':
848
- return { query: `e.${attr} IS NULL`, params: {} };
849
- case 'not_empty':
850
- return { query: `e.${attr} IS NOT NULL`, params: {} };
851
- default:
852
- throw new BadRequestException(`Unsupported operator for select: ${op}`);
853
- }
854
- }
855
-
856
- private buildMultiSelectCondition(
857
- attr: string,
858
- op: string,
859
- val: any,
860
- key: string,
861
- ) {
862
- if (Array.isArray(val) && val.length === 0) {
863
- return { query: '1=1', params: {} };
864
- }
865
-
866
- if ((op === 'equal' || op === 'not_equal') && !Array.isArray(val)) {
867
- throw new BadRequestException(
868
- `Value for multi-select must be an array for operator: ${op}`,
869
- );
870
- }
871
-
872
- switch (op) {
873
- case 'equal':
874
- return {
875
- query: `e.${attr} IN (:${key})`,
876
- params: { [key]: val },
877
- };
878
- case 'not_equal':
879
- return {
880
- query: `e.${attr} NOT IN (:${key})`,
881
- params: { [key]: val },
882
- };
883
- case 'contains':
884
- return {
885
- query: `e.${attr} LIKE :${key}`,
886
- params: { [key]: `%${val}%` },
887
- };
888
- case 'not_contains':
889
- return {
890
- query: `e.${attr} NOT LIKE :${key}`,
891
- params: { [key]: `%${val}%` },
892
- };
893
- case 'empty':
894
- return { query: `e.${attr} IS NULL`, params: {} };
895
- case 'not_empty':
896
- return { query: `e.${attr} IS NOT NULL`, params: {} };
897
- default:
898
- throw new BadRequestException(
899
- `Unsupported operator for multiselect: ${op}`,
900
- );
901
- }
902
- }
903
-
904
- private buildYearCondition(attr: string, op: string, val: any, key: string) {
905
- switch (op) {
906
- case 'equal':
907
- return {
908
- query: `e.${attr} = :${key}`,
909
- params: { [key]: parseInt(val, 10) },
910
- };
911
- case 'not_equal':
912
- return {
913
- query: `e.${attr} != :${key}`,
914
- params: { [key]: parseInt(val, 10) },
915
- };
916
- case 'greater_than':
917
- return {
918
- query: `e.${attr} > :${key}`,
919
- params: { [key]: parseInt(val, 10) },
920
- };
921
- case 'less_than':
922
- return {
923
- query: `e.${attr} < :${key}`,
924
- params: { [key]: parseInt(val, 10) },
925
- };
926
- default:
927
- throw new BadRequestException(`Unsupported operator for year: ${op}`);
928
- }
929
- }
930
- }
1
+ import { BadRequestException, Inject, Injectable } from '@nestjs/common';
2
+ import { AttributeMasterService } from 'src/module/meta/service/attribute-master.service';
3
+ import { EntityMasterService } from 'src/module/meta/service/entity-master.service';
4
+ import { EntityTableColumnService } from 'src/module/meta/service/entity-table-column.service';
5
+ import { EntityTableService } from 'src/module/meta/service/entity-table.service';
6
+ import { DataSource } from 'typeorm';
7
+ import { FilterCondition, FilterRequestDto } from '../dto/filter-request.dto';
8
+ import { SavedFilterService } from './saved-filter.service';
9
+
10
+ import * as moment from 'moment';
11
+ import { EntityRelationService } from 'src/module/meta/service/entity-relation.service';
12
+ import { ResolverService } from 'src/module/meta/service/resolver.service';
13
+ import { LoggingService } from 'src/utils/service/loggingUtil.service';
14
+
15
+ @Injectable()
16
+ export class FilterService {
17
+ constructor(
18
+ private dataSource: DataSource,
19
+ private readonly attributeMasterService: AttributeMasterService,
20
+ private readonly entityMasterService: EntityMasterService,
21
+ @Inject('SavedFilterService')
22
+ private readonly savedFilterService: SavedFilterService,
23
+ @Inject('EntityRelationService')
24
+ private readonly entityRelationService: EntityRelationService,
25
+ private readonly resolverService: ResolverService,
26
+ @Inject() protected readonly loggingService: LoggingService,
27
+ ) {}
28
+ private readonly skipAppCodeFilterEntities = ['ORGP'];
29
+ private readonly skipOrgFilterEntities = ['ORGP'];
30
+
31
+
32
+ private async gettab_value_counts(
33
+ tableName: string,
34
+ column: string | undefined,
35
+ whereClauses: { query: string; params: Record<string, any> }[],
36
+ ) {
37
+ if (!column) return [];
38
+
39
+ let whereSQL = '';
40
+ const values: any[] = [];
41
+
42
+ if (whereClauses.length > 0) {
43
+ const clauseParts = whereClauses.map((clause) => {
44
+ let parsedQuery = clause.query.replace(/\be\./g, ''); // remove e.
45
+
46
+ Object.entries(clause.params).forEach(([key, val]) => {
47
+ if (Array.isArray(val)) {
48
+ // if it's an array → expand placeholders (?, ?, ?)
49
+ const placeholders = val.map(() => '?').join(', ');
50
+ parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), `(${placeholders})`);
51
+ values.push(...val); // flatten values
52
+ } else {
53
+ parsedQuery = parsedQuery.replace(new RegExp(`:${key}`, 'g'), '?');
54
+ values.push(val);
55
+ }
56
+ });
57
+
58
+ return parsedQuery;
59
+ });
60
+
61
+ whereSQL = `WHERE ${clauseParts.join(' AND ')}`;
62
+ }
63
+
64
+ const rawSQL = `
65
+ SELECT ${column} AS tab_value, COUNT(*) AS tab_value_count
66
+ FROM ${tableName}
67
+ ${whereSQL}
68
+ GROUP BY ${column}
69
+ `;
70
+
71
+ const rows = await this.dataSource.query(rawSQL, values);
72
+
73
+ const total = rows.reduce(
74
+ (sum, r) => sum + parseInt(r.tab_value_count, 10),
75
+ 0,
76
+ );
77
+
78
+ return [
79
+ { tab_value: 'All', tab_value_count: total },
80
+ ...rows.map((r) => ({
81
+ tab_value: r.tab_value ?? 'UNKNOWN',
82
+ tab_value_count: parseInt(r.tab_value_count, 10),
83
+ })),
84
+ ];
85
+ }
86
+
87
+
88
+ async applyFilterWrapper(dto: FilterRequestDto) {
89
+ const {
90
+ entity_type,
91
+ quickFilter = [],
92
+ savedFilterCode,
93
+ attributeFilter = [],
94
+ loggedInUser,
95
+ } = dto;
96
+
97
+ // 🔹 Step 1: Collect all filters (from body + savedFilter)
98
+ const savedFilters = await this.getSavedFilters(
99
+ savedFilterCode ?? undefined,
100
+ );
101
+ const allFilters = [
102
+ ...quickFilter,
103
+ ...attributeFilter,
104
+ ...savedFilters,
105
+ ].filter((f) => f.filter_value !== '');
106
+
107
+ // 🔹 Step 2: Group filters by filter_entity_type
108
+ const grouped = allFilters.reduce(
109
+ (acc, f) => {
110
+ if (!acc[f.filter_entity_type]) acc[f.filter_entity_type] = [];
111
+ acc[f.filter_entity_type].push(f);
112
+ return acc;
113
+ },
114
+ {} as Record<string, any[]>,
115
+ );
116
+
117
+ console.log('🟠 [FilterService] Grouped filters by entity type:', grouped);
118
+
119
+ // 🔹 Step 3: Handle sub-entities first
120
+ let intersectionIds: number[] | null = null;
121
+ for (const [subEntityType, filters] of Object.entries(grouped)) {
122
+ if (subEntityType === entity_type) continue; // skip main entity for now
123
+
124
+ let { queryParams, tabs, ...newDto } = dto;
125
+
126
+ const subDto: FilterRequestDto = {
127
+ ...newDto,
128
+ entity_type: subEntityType,
129
+ quickFilter: filters as FilterCondition[],
130
+ savedFilterCode: null, // already merged
131
+ attributeFilter: [],
132
+ };
133
+
134
+ const subResult = await this.applyFilter(subDto);
135
+ const subEntityIds = subResult.data.entity_list.map((row) => row.id);
136
+
137
+ console.log(
138
+ `🧩 [FilterService] Sub-entity ${subEntityType} returned IDs:`,
139
+ subEntityIds,
140
+ );
141
+
142
+ if (!subEntityIds.length) {
143
+ console.log(
144
+ `ℹ️ [FilterService] No records for sub-entity ${subEntityType}, returning empty result`,
145
+ );
146
+ return {
147
+ success: true,
148
+ data: { entity_tabs: [], entity_list: [], pagination: {} },
149
+ };
150
+ }
151
+
152
+ const relatedIds = await this.entityRelationService.getRelatedEntityIds(
153
+ entity_type,
154
+ subEntityType,
155
+ subEntityIds,
156
+ dto.loggedInUser.organization_id,
157
+ );
158
+
159
+ intersectionIds =
160
+ intersectionIds === null
161
+ ? relatedIds
162
+ : intersectionIds.filter((id) => relatedIds.includes(id));
163
+
164
+ if (intersectionIds.length === 0) {
165
+ console.log(
166
+ '🚫 [FilterService] No intersection IDs left, returning empty result',
167
+ );
168
+ return {
169
+ success: true,
170
+ data: { entity_tabs: [], entity_list: [], pagination: {} },
171
+ };
172
+ }
173
+ }
174
+
175
+ // 🔹 Step 4: Call applyFilter for main entity
176
+ const mainFilters = grouped[entity_type] || [];
177
+ const mainDto: FilterRequestDto = {
178
+ ...dto,
179
+ quickFilter: [...mainFilters],
180
+ savedFilterCode: null,
181
+ attributeFilter: [],
182
+ };
183
+
184
+ if (intersectionIds && intersectionIds.length > 0) {
185
+ (mainDto.quickFilter ??= []).push({
186
+ filter_attribute: 'id',
187
+ filter_operator: 'equal',
188
+ filter_value: intersectionIds,
189
+ filter_entity_type: entity_type,
190
+ });
191
+ }
192
+
193
+ return await this.applyFilter(mainDto);
194
+ }
195
+
196
+ async applyFilter(dto: FilterRequestDto) {
197
+ const {
198
+ entity_type,
199
+ quickFilter,
200
+ savedFilterCode,
201
+ attributeFilter,
202
+ tabs,
203
+ sortby,
204
+ loggedInUser,
205
+ queryParams,
206
+ customLevelType,
207
+ customLevelId,
208
+ customAppCode,
209
+ } = dto;
210
+
211
+ // abstract user details
212
+ const {
213
+ level_type,
214
+ level_id,
215
+ id: user_id,
216
+ appcode,
217
+ organization_id,
218
+ } = loggedInUser || {};
219
+
220
+ // Fetch meta from entity table service
221
+ const entityMeta = await this.entityMasterService.getEntityData(
222
+ entity_type,
223
+ loggedInUser,
224
+ );
225
+ const tableName = entityMeta?.data_source; // data_source is the table name
226
+
227
+ if (!tableName) {
228
+ console.error(`❌ [FilterService] Invalid entity_type: ${entity_type}`);
229
+ throw new BadRequestException(`Invalid entity_type: ${entity_type}`);
230
+ }
231
+
232
+ const getAttributeColumnMeta =
233
+ await this.attributeMasterService.findAttributesByMappedEntityType(
234
+ entity_type,
235
+ loggedInUser,
236
+ );
237
+
238
+ const attributeMetaMap = getAttributeColumnMeta.reduce(
239
+ (acc, attr) => {
240
+ acc[attr.attribute_key] = attr;
241
+ return acc;
242
+ },
243
+ {} as Record<string, any>,
244
+ );
245
+
246
+ // Get and parse saved filters
247
+ const savedFilters = await this.getSavedFilters(
248
+ savedFilterCode ?? undefined,
249
+ );
250
+ const savedFiltersNormalized = savedFilters.map((f) => ({
251
+ filter_attribute: f.filter_attribute,
252
+ filter_operator: f.filter_operator,
253
+ filter_value: f.filter_value,
254
+ }));
255
+
256
+ const baseFilters = [
257
+ ...(quickFilter || []).filter(
258
+ (f) => f.filter_value != null && f.filter_value !== '',
259
+ ),
260
+ ...savedFiltersNormalized.filter(
261
+ (f) => f.filter_value != null && f.filter_value !== '',
262
+ ),
263
+ ...(attributeFilter || []).filter(
264
+ (f) => f.filter_value != null && f.filter_value !== '',
265
+ ),
266
+ ];
267
+
268
+ // 🧱 Build where clauses
269
+ const baseWhere = this.buildWhereClauses(baseFilters, attributeMetaMap);
270
+
271
+ // Handle TEMPLATE entity special condition
272
+ if (entity_type === 'TEMP' || entity_type === 'TEM') {
273
+ const templateTable = entityMeta?.data_source || 'frm_wf_comm_template';
274
+
275
+ if (level_type === 'ORG') {
276
+
277
+ baseWhere.push({
278
+ query: ` ((e.level_type = 'ORG' AND e.level_id = ${loggedInUser.organization_id} AND e.organization_id = ${loggedInUser.organization_id}))`,
279
+ params: {
280
+
281
+ }
282
+ })
283
+
284
+ } else if (level_type === 'SCH') {
285
+ baseWhere.push({
286
+ query: `
287
+ (
288
+ (e.level_type = 'SCH' AND e.level_id = ${loggedInUser.level_id} AND e.organization_id = ${loggedInUser.organization_id})
289
+ OR
290
+ (
291
+ e.level_type = 'ORG'
292
+ AND e.level_id = ${loggedInUser.organization_id}
293
+ AND e.organization_id = ${loggedInUser.organization_id}
294
+ AND e.code NOT IN (
295
+ SELECT sub.code
296
+ FROM frm_wf_comm_template AS sub
297
+ WHERE sub.level_type = 'SCH' AND sub.level_id = ${loggedInUser.level_id}
298
+ )
299
+ )
300
+ )
301
+ `,
302
+ params: {
303
+
304
+ }
305
+ });
306
+
307
+ }
308
+ }
309
+
310
+ // Default org/level clause — skip TEMPLATE entity
311
+ if (
312
+ entity_type !== 'ORGP' &&
313
+ entity_type !== 'TEMP' &&
314
+ entity_type !== 'TEM' && // ✅ skip TEMPLATE
315
+ level_type &&
316
+ level_id &&
317
+ organization_id &&
318
+ !customLevelType &&
319
+ !customLevelId
320
+ ) {
321
+ baseWhere.push({
322
+ query:
323
+ 'e.organization_id = :organization_id AND e.level_type = :level_type AND e.level_id = :level_id',
324
+ params: { organization_id, level_type, level_id },
325
+ });
326
+ }
327
+
328
+
329
+
330
+
331
+
332
+ if (entity_type == "USR" || entity_type == "UPR") {
333
+ baseWhere.push({
334
+ query: 'e.is_customer is NULL',
335
+ params: {},
336
+ });
337
+ }
338
+
339
+
340
+ if (customLevelType && customLevelId && customAppCode) {
341
+ baseWhere.push({
342
+ query:
343
+ 'e.organization_id = :organization_id AND e.level_type = :customLevelType AND e.level_id = :customLevelId AND e.appcode = :customAppCode',
344
+ params: {
345
+ organization_id,
346
+ customLevelType,
347
+ customLevelId,
348
+ customAppCode,
349
+ },
350
+ });
351
+ }
352
+
353
+ // Handle queryParams filters
354
+ if (queryParams) {
355
+ Object.entries(queryParams).forEach(([key, value]) => {
356
+ if (!value) return;
357
+
358
+ if (key === 'attributeName' && queryParams['attributeValue']) {
359
+ const attrName = value;
360
+ const attrValue = queryParams['attributeValue'];
361
+ baseWhere.push({
362
+ query: `e.${attrName} = :${attrName}`,
363
+ params: { [attrName]: attrValue },
364
+ });
365
+ } else if (key !== 'attributeValue') {
366
+ baseWhere.push({
367
+ query: `e.${key} = :${key}`,
368
+ params: { [key]: value },
369
+ });
370
+ }
371
+ });
372
+ }
373
+
374
+ console.log('🟠 [FilterService] Constructed baseWhere clauses:', baseWhere);
375
+
376
+ // layout preference query
377
+ const layoutPreference = await this.dataSource.query(
378
+ `SELECT mapped_json
379
+ FROM frm_entity_layout_pref
380
+ WHERE user_id = ? AND mapped_entity_type = ? AND mapped_level_id = ? AND mapped_level_type = ? AND type = 'layout'`,
381
+ [user_id, entity_type, level_id, level_type],
382
+ );
383
+
384
+ // Extract layout preference
385
+ const layout = layoutPreference?.[0]?.mapped_json?.quick_tab || {};
386
+ const showList = layout?.show_list?.map((val) => val.toLowerCase()) || [];
387
+
388
+ let allTabs;
389
+ if (layout.attribute) {
390
+ allTabs = await this.gettab_value_counts(
391
+ entityMeta?.data_source,
392
+ layout.attribute,
393
+ baseWhere,
394
+ );
395
+ } else {
396
+ allTabs = await this.gettab_value_counts(
397
+ entityMeta?.data_source,
398
+ tabs?.columnName,
399
+ baseWhere,
400
+ );
401
+ }
402
+
403
+ let filteredTabs;
404
+
405
+ if (showList?.length > 0) {
406
+ const isAllNeeded = layout?.isAllSelected && !showList.includes('all');
407
+ if (isAllNeeded) showList.push('all');
408
+
409
+ filteredTabs = allTabs.filter((tab) =>
410
+ showList.includes(tab.tab_value.toLowerCase()),
411
+ );
412
+
413
+ const allTab = filteredTabs.find(
414
+ (tab) => tab.tab_value?.toLowerCase() === 'all',
415
+ );
416
+ filteredTabs = filteredTabs.filter(
417
+ (tab) => tab.tab_value?.toLowerCase() !== 'all',
418
+ );
419
+
420
+ // SORTING LOGIC
421
+ if (layout.sorting === 'asc') {
422
+ filteredTabs.sort((a, b) =>
423
+ a.tab_value.toLowerCase().localeCompare(b.tab_value.toLowerCase()),
424
+ );
425
+ } else if (layout.sorting === 'dsc') {
426
+ filteredTabs.sort((a, b) =>
427
+ b.tab_value.toLowerCase().localeCompare(a.tab_value.toLowerCase()),
428
+ );
429
+ } else if (layout.sorting === 'count_asc') {
430
+ filteredTabs.sort((a, b) => a.tab_value_count - b.tab_value_count);
431
+ } else if (layout.sorting === 'count_dsc') {
432
+ filteredTabs.sort((a, b) => b.tab_value_count - a.tab_value_count);
433
+ } else if (layout.sorting === 'custom') {
434
+ const orderMap = new Map<string, number>(
435
+ showList.map((val, index) => [val.toLowerCase(), index]),
436
+ );
437
+ filteredTabs.sort((a, b) => {
438
+ const aIndex = orderMap.get(a.tab_value.toLowerCase()) ?? Infinity;
439
+ const bIndex = orderMap.get(b.tab_value.toLowerCase()) ?? Infinity;
440
+ return aIndex - bIndex;
441
+ });
442
+ }
443
+
444
+ if (allTab) filteredTabs.unshift(allTab);
445
+
446
+ if (layout?.isCombineOther) {
447
+ const originalAllTab = allTabs.find(
448
+ (tab) => tab.tab_value.toLowerCase() === 'all',
449
+ );
450
+ const allCount = originalAllTab?.tab_value_count ?? 0;
451
+ const knownTabCountSum = filteredTabs
452
+ .filter((tab) => tab.tab_value.toLowerCase() !== 'all')
453
+ .reduce((acc, tab) => acc + tab.tab_value_count, 0);
454
+
455
+ const othersCount = allCount - knownTabCountSum;
456
+ filteredTabs.push({
457
+ tab_value: 'OTHERS',
458
+ tab_value_count: othersCount < 0 ? 0 : othersCount,
459
+ });
460
+ }
461
+ } else {
462
+ filteredTabs = allTabs;
463
+ }
464
+
465
+ const dataWhere = [...baseWhere];
466
+
467
+ if (tabs?.columnName && tabs?.value) {
468
+ const tabAttrMeta = attributeMetaMap[tabs.columnName];
469
+ const tabValue = tabs.value.toLowerCase();
470
+
471
+ if (tabValue === 'others') {
472
+ const valuesToExclude = showList.filter((v) => v !== 'all');
473
+ if (valuesToExclude.length > 0) {
474
+ for (const value of valuesToExclude) {
475
+ const resolvedId = await this.resolverService.getResolvedId(
476
+ loggedInUser,
477
+ tabs.columnName,
478
+ value,
479
+ entity_type,
480
+ );
481
+ if (resolvedId) {
482
+ const tabCondition = this.buildCondition(
483
+ {
484
+ filter_attribute: tabs.columnName,
485
+ filter_operator: 'not_equal',
486
+ filter_value: [resolvedId],
487
+ skip_id: true,
488
+ },
489
+ tabAttrMeta,
490
+ );
491
+ if (tabCondition) dataWhere.push(tabCondition);
492
+ }
493
+ }
494
+ }
495
+ } else if (tabValue !== 'all') {
496
+ const resolvedId = await this.resolverService.getResolvedId(
497
+ loggedInUser,
498
+ tabs.columnName,
499
+ tabs.value,
500
+ entity_type,
501
+ );
502
+
503
+ if (resolvedId) {
504
+ const tabCondition = this.buildCondition(
505
+ {
506
+ filter_attribute: tabs.columnName,
507
+ filter_operator: 'equal',
508
+ filter_value: [resolvedId],
509
+ skip_id: true,
510
+ },
511
+ tabAttrMeta,
512
+ );
513
+ if (tabCondition) dataWhere.push(tabCondition);
514
+ }
515
+ }
516
+ }
517
+
518
+ const qb = this.dataSource
519
+ .createQueryBuilder()
520
+ .select('e.*')
521
+ .from(tableName, 'e');
522
+ dataWhere.forEach((clause) => qb.andWhere(clause.query, clause.params));
523
+
524
+ if (layoutPreference && layoutPreference[0]?.mapped_json?.sorting) {
525
+ if (Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.tabs)) {
526
+ const preferenceTabArray =
527
+ layoutPreference[0]?.mapped_json?.sorting?.tabs;
528
+ const tabFilter = preferenceTabArray.find(
529
+ (tabData) => tabData.tab_name === tabs?.value,
530
+ );
531
+ tabFilter?.sortby.forEach(({ column, order }) => {
532
+ qb.addOrderBy(
533
+ `e.${column}`,
534
+ order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
535
+ );
536
+ });
537
+ } else if (
538
+ Array.isArray(layoutPreference[0]?.mapped_json?.sorting?.sortby)
539
+ ) {
540
+ layoutPreference[0]?.mapped_json?.sorting?.sortby?.forEach(
541
+ ({ column, order }) => {
542
+ qb.addOrderBy(
543
+ `e.${column}`,
544
+ order?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC',
545
+ );
546
+ },
547
+ );
548
+ }
549
+ }
550
+
551
+ qb.addOrderBy('e.created_date', 'DESC');
552
+
553
+ const page = dto.page && dto.page > 0 ? dto.page : 1;
554
+ const size = dto.size && dto.size > 0 ? dto.size : 10;
555
+ qb.skip((page - 1) * size).take(size);
556
+
557
+ const entity_list = await qb.getRawMany();
558
+
559
+ console.log(`📦 [FilterService] Fetched ${entity_list.length} records`);
560
+
561
+ const dateAttributes = Object.entries(attributeMetaMap)
562
+ .filter(([_, attr]) => attr.data_type === 'date')
563
+ .map(([key]) => key);
564
+
565
+ const formatDate = (dateStr: string | null): string | null =>
566
+ dateStr ? moment(dateStr).format('DD-MM-YYYY') : '';
567
+
568
+ const formatDatesInRow = (row: any): any => {
569
+ const formattedRow = { ...row };
570
+ for (const key of dateAttributes) {
571
+ if (formattedRow[key])
572
+ formattedRow[key] = formatDate(formattedRow[key]);
573
+ }
574
+ return formattedRow;
575
+ };
576
+
577
+ const formattedEntityList = entity_list.map(formatDatesInRow);
578
+
579
+ const resolvedEntityList = await Promise.all(
580
+ formattedEntityList.map((row) =>
581
+ this.resolverService.getResolvedData(loggedInUser, row, entity_type),
582
+ ),
583
+ );
584
+
585
+ const resolvedTabs = await Promise.all(
586
+ filteredTabs.map(async (tab) => {
587
+ const tabAttrKey = layout?.attribute || tabs?.columnName;
588
+
589
+ if (
590
+ !tabAttrKey ||
591
+ tab.tab_value?.toLowerCase() === 'all' ||
592
+ tab.tab_value?.toLowerCase() === 'others'
593
+ ) {
594
+ return tab;
595
+ }
596
+
597
+ const resolvedVal = await this.resolverService.getResolvedValue(
598
+ loggedInUser,
599
+ tabAttrKey,
600
+ tab.tab_value,
601
+ entity_type,
602
+ );
603
+
604
+ return { ...tab, tab_value: resolvedVal ?? tab.tab_value };
605
+ }),
606
+ );
607
+
608
+ const countQb = this.dataSource
609
+ .createQueryBuilder()
610
+ .select('COUNT(*)', 'count')
611
+ .from(tableName, 'e');
612
+ dataWhere.forEach((clause) =>
613
+ countQb.andWhere(clause.query, clause.params),
614
+ );
615
+ const countResult = await countQb.getRawOne();
616
+ const total = parseInt(countResult.count, 10);
617
+
618
+ console.log('📊 [FilterService] Returning final result with total:', total);
619
+
620
+ return {
621
+ success: true,
622
+ data: {
623
+ entity_tabs: resolvedTabs,
624
+ entity_list: resolvedEntityList,
625
+ pagination: {
626
+ total,
627
+ page,
628
+ size,
629
+ totalPages: Math.ceil(total / size),
630
+ hasNextPage: page * size < total,
631
+ hasPreviousPage: page > 1,
632
+ },
633
+ },
634
+ };
635
+ }
636
+
637
+ private parseFilters(raw: any, isSingle = false): any[] {
638
+ if (!raw) return [];
639
+
640
+ if (typeof raw === 'string') {
641
+ try {
642
+ const parsed = JSON.parse(raw);
643
+ return isSingle ? [parsed] : parsed;
644
+ } catch {
645
+ throw new BadRequestException('Invalid JSON in filter input');
646
+ }
647
+ }
648
+
649
+ return isSingle ? [raw] : Array.isArray(raw) ? raw : [];
650
+ }
651
+
652
+ private async getSavedFilters(code?: string): Promise<any[]> {
653
+ if (!code) return [];
654
+
655
+ const savedFilter = await this.savedFilterService.getDetailsByCode(code);
656
+ if (!savedFilter) {
657
+ throw new BadRequestException(`Saved filter not found for code: ${code}`);
658
+ }
659
+ return savedFilter;
660
+ }
661
+
662
+ private buildWhereClauses(
663
+ filters: any[],
664
+ attributeMeta: Record<string, any>,
665
+ ) {
666
+ return filters
667
+ .map((f) => this.buildCondition(f, attributeMeta[f.filter_attribute]))
668
+ .filter(
669
+ (clause): clause is { query: string; params: any } => clause !== null,
670
+ );
671
+ }
672
+
673
+ private buildCondition(
674
+ filter: any,
675
+ meta: any,
676
+ ): { query: string; params: any } | null {
677
+ if (!meta) return null;
678
+
679
+ let attr = filter.filter_attribute;
680
+ const val = filter.filter_value;
681
+ const op = filter.filter_operator;
682
+ const key = `param_${attr}_${Math.random().toString(36).substring(2, 8)}`;
683
+
684
+ // if (
685
+ // (meta.data_source_type === 'entity' ||
686
+ // meta.data_source_type === 'master') &&
687
+ // !filter.skip_id
688
+ // ) {
689
+ // attr = `${attr}_id`;
690
+ // }
691
+
692
+ switch (meta.data_type) {
693
+ case 'text':
694
+ return this.buildTextCondition(attr, op, val, key);
695
+ case 'number':
696
+ return this.buildNumberCondition(attr, op, val, key);
697
+ case 'date':
698
+ return this.buildDateCondition(attr, op, val, key);
699
+ case 'select':
700
+ return this.buildMultiSelectCondition(attr, op, val, key);
701
+ case 'multiselect':
702
+ return this.buildMultiSelectCondition(attr, op, val, key);
703
+ case 'checkbox':
704
+ return this.buildMultiSelectCondition(attr, op, val, key);
705
+ case 'radio':
706
+ return this.buildMultiSelectCondition(attr, op, val, key);
707
+ case 'year':
708
+ return this.buildYearCondition(attr, op, val, key);
709
+ default:
710
+ return null;
711
+ }
712
+ }
713
+
714
+ private buildTextCondition(attr: string, op: string, val: any, key: string) {
715
+ switch (op) {
716
+ case 'contains':
717
+ return {
718
+ query: `LOWER(e.${attr}) LIKE :${key}`,
719
+ params: { [key]: `%${val ? val.toLowerCase() : ''}%` },
720
+ };
721
+ case 'equal':
722
+ return {
723
+ query: `e.${attr} = :${key}`,
724
+ params: { [key]: val },
725
+ };
726
+ case 'not_equal':
727
+ return {
728
+ query: `e.${attr} != :${key}`,
729
+ params: { [key]: val },
730
+ };
731
+ case 'empty':
732
+ return {
733
+ query: `e.${attr} IS NULL`,
734
+ params: {},
735
+ };
736
+ case 'not_empty':
737
+ return {
738
+ query: `e.${attr} IS NOT NULL`,
739
+ params: {},
740
+ };
741
+ default:
742
+ throw new BadRequestException(`Unsupported operator for text: ${op}`);
743
+ }
744
+ }
745
+
746
+ private buildNumberCondition(
747
+ attr: string,
748
+ op: string,
749
+ val: any,
750
+ key: string,
751
+ ) {
752
+ switch (op) {
753
+ case 'equal':
754
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
755
+ case 'not_equal':
756
+ return { query: `e.${attr} != :${key}`, params: { [key]: val } };
757
+ case 'greater_than':
758
+ return { query: `e.${attr} > :${key}`, params: { [key]: val } };
759
+ case 'less_than':
760
+ return { query: `e.${attr} < :${key}`, params: { [key]: val } };
761
+ case 'less_than_qual_to':
762
+ return { query: `e.${attr} <= :${key}`, params: { [key]: val } };
763
+ case 'greater_than_qual_to':
764
+ return { query: `e.${attr} >= :${key}`, params: { [key]: val } };
765
+ case 'empty':
766
+ return { query: `e.${attr} IS NULL`, params: {} };
767
+ case 'not_empty':
768
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
769
+
770
+ default:
771
+ throw new BadRequestException(`Unsupported operator for number: ${op}`);
772
+ }
773
+ }
774
+
775
+ private buildDateCondition(attr: string, op: string, val: any, key: string) {
776
+ switch (op) {
777
+ case 'equal':
778
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
779
+ case 'before':
780
+ return { query: `e.${attr} < :${key}`, params: { [key]: val } };
781
+ case 'after':
782
+ return { query: `e.${attr} > :${key}`, params: { [key]: val } };
783
+ case 'between': {
784
+ if (typeof val === 'string') {
785
+ val = val.split(',').map((v) => v.trim());
786
+ }
787
+
788
+ if (
789
+ !Array.isArray(val) ||
790
+ val.length !== 2 ||
791
+ val[0] === '' ||
792
+ val[1] === ''
793
+ ) {
794
+ // throw new BadRequestException(`Invalid value for in_between: ${val}`);
795
+ console.log(`Invalid value for in_between: ${val}`);
796
+ return null;
797
+ }
798
+ return {
799
+ query: `e.${attr} BETWEEN :${key}_start AND :${key}_end`,
800
+ params: {
801
+ [`${key}_start`]: val[0],
802
+ [`${key}_end`]: val[1],
803
+ },
804
+ };
805
+ }
806
+
807
+ case 'today': {
808
+ const today = new Date().toISOString().split('T')[0]; // 'YYYY-MM-DD'
809
+
810
+ return {
811
+ query: `DATE(e.${attr}) = :today`,
812
+ params: {
813
+ today,
814
+ },
815
+ };
816
+ }
817
+
818
+ case 'empty': {
819
+ return {
820
+ query: `e.${attr} IS NULL`,
821
+ params: {},
822
+ };
823
+ }
824
+
825
+ case 'not_empty': {
826
+ return {
827
+ query: `e.${attr} IS NOT NULL`,
828
+ params: {},
829
+ };
830
+ }
831
+ default:
832
+ throw new BadRequestException(`Unsupported operator for date: ${op}`);
833
+ }
834
+ }
835
+
836
+ private buildSelectCondition(
837
+ attr: string,
838
+ op: string,
839
+ val: any,
840
+ key: string,
841
+ ) {
842
+ switch (op) {
843
+ case 'equal':
844
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
845
+ case 'not_equal':
846
+ return { query: `e.${attr} != :${key}`, params: { [key]: val } };
847
+ case 'empty':
848
+ return { query: `e.${attr} IS NULL`, params: {} };
849
+ case 'not_empty':
850
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
851
+ default:
852
+ throw new BadRequestException(`Unsupported operator for select: ${op}`);
853
+ }
854
+ }
855
+
856
+ private buildMultiSelectCondition(
857
+ attr: string,
858
+ op: string,
859
+ val: any,
860
+ key: string,
861
+ ) {
862
+ if (Array.isArray(val) && val.length === 0) {
863
+ return { query: '1=1', params: {} };
864
+ }
865
+
866
+ if ((op === 'equal' || op === 'not_equal') && !Array.isArray(val)) {
867
+ throw new BadRequestException(
868
+ `Value for multi-select must be an array for operator: ${op}`,
869
+ );
870
+ }
871
+
872
+ switch (op) {
873
+ case 'equal':
874
+ return {
875
+ query: `e.${attr} IN (:${key})`,
876
+ params: { [key]: val },
877
+ };
878
+ case 'not_equal':
879
+ return {
880
+ query: `e.${attr} NOT IN (:${key})`,
881
+ params: { [key]: val },
882
+ };
883
+ case 'contains':
884
+ return {
885
+ query: `e.${attr} LIKE :${key}`,
886
+ params: { [key]: `%${val}%` },
887
+ };
888
+ case 'not_contains':
889
+ return {
890
+ query: `e.${attr} NOT LIKE :${key}`,
891
+ params: { [key]: `%${val}%` },
892
+ };
893
+ case 'empty':
894
+ return { query: `e.${attr} IS NULL`, params: {} };
895
+ case 'not_empty':
896
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
897
+ default:
898
+ throw new BadRequestException(
899
+ `Unsupported operator for multiselect: ${op}`,
900
+ );
901
+ }
902
+ }
903
+
904
+ private buildYearCondition(attr: string, op: string, val: any, key: string) {
905
+ switch (op) {
906
+ case 'equal':
907
+ return {
908
+ query: `e.${attr} = :${key}`,
909
+ params: { [key]: parseInt(val, 10) },
910
+ };
911
+ case 'not_equal':
912
+ return {
913
+ query: `e.${attr} != :${key}`,
914
+ params: { [key]: parseInt(val, 10) },
915
+ };
916
+ case 'greater_than':
917
+ return {
918
+ query: `e.${attr} > :${key}`,
919
+ params: { [key]: parseInt(val, 10) },
920
+ };
921
+ case 'less_than':
922
+ return {
923
+ query: `e.${attr} < :${key}`,
924
+ params: { [key]: parseInt(val, 10) },
925
+ };
926
+ default:
927
+ throw new BadRequestException(`Unsupported operator for year: ${op}`);
928
+ }
929
+ }
930
+ }