rez_core 4.0.88 → 4.0.90

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/.prettierrc +3 -3
  2. package/README.md +99 -99
  3. package/dist/module/auth/guards/role.guard.js +3 -3
  4. package/dist/module/auth/services/auth.service.js +2 -2
  5. package/dist/module/filter/repository/saved-filter.repository.js +4 -4
  6. package/dist/module/filter/service/filter-evaluator.service.js +2 -2
  7. package/dist/module/filter/service/filter.service.js +32 -23
  8. package/dist/module/filter/service/filter.service.js.map +1 -1
  9. package/dist/module/integration/examples/usage.example.js +9 -9
  10. package/dist/module/integration/service/integration.service.js +1 -1
  11. package/dist/module/integration/service/wrapper.service.js +25 -25
  12. package/dist/module/listmaster/service/list-master-item.service.js +2 -2
  13. package/dist/module/mapper/service/field-mapper.service.js +4 -4
  14. package/dist/module/mapper/service/mapper.service.js +2 -2
  15. package/dist/module/meta/service/entity-dynamic.service.js +18 -18
  16. package/dist/module/meta/service/entity-list.service.js +3 -3
  17. package/dist/module/meta/service/entity-master.service.js +3 -3
  18. package/dist/module/meta/service/entity-relation.service.js +11 -11
  19. package/dist/module/meta/service/entity-service-impl.service.js +3 -3
  20. package/dist/module/meta/service/resolver.service.js +3 -3
  21. package/dist/module/module/repository/menu.repository.js +12 -12
  22. package/dist/module/notification/service/notification.service.js +9 -9
  23. package/dist/module/user/controller/login.controller.js +18 -18
  24. package/dist/module/user/service/role.service.js +4 -4
  25. package/dist/module/user/service/user-session.service.js +2 -2
  26. package/dist/module/workflow/repository/action.repository.js +20 -20
  27. package/dist/module/workflow/repository/comm-template.repository.js +6 -6
  28. package/dist/module/workflow/repository/form-master.repository.js +2 -2
  29. package/dist/module/workflow/repository/stage-group.repository.js +23 -23
  30. package/dist/module/workflow/repository/stage-movement.repository.js +15 -15
  31. package/dist/module/workflow/repository/stage.repository.js +8 -8
  32. package/dist/module/workflow/service/action-template-mapping.service.js +22 -22
  33. package/dist/module/workflow/service/action.service.js +7 -7
  34. package/dist/module/workflow/service/entity-modification.service.js +6 -6
  35. package/dist/module/workflow/service/stage-group.service.js +2 -2
  36. package/dist/module/workflow/service/stage.service.js +2 -2
  37. package/dist/module/workflow/service/task.service.js +28 -28
  38. package/dist/module/workflow/service/workflow-list-master.service.js +15 -15
  39. package/dist/module/workflow/service/workflow-meta.service.js +35 -35
  40. package/dist/module/workflow/service/workflow.service.js +2 -2
  41. package/dist/tsconfig.build.tsbuildinfo +1 -1
  42. package/dist/utils/service/reflection-helper.service.js +2 -2
  43. package/docs/modules/event-driven-integration-design.md +91 -91
  44. package/docs/modules/integration.md +250 -250
  45. package/eslint.config.mjs +34 -34
  46. package/nest-cli.json +14 -14
  47. package/package.json +118 -118
  48. package/src/app.controller.ts +12 -12
  49. package/src/app.module.ts +49 -49
  50. package/src/app.service.ts +8 -8
  51. package/src/config/config.module.ts +18 -18
  52. package/src/config/database.config.ts +23 -23
  53. package/src/constant/global.constant.ts +67 -67
  54. package/src/core.module.ts +81 -81
  55. package/src/decorators/roles.decorator.ts +7 -7
  56. package/src/dtos/response.dto.ts +6 -6
  57. package/src/dtos/response.ts +5 -5
  58. package/src/index.ts +1 -1
  59. package/src/module/auth/auth.module.ts +49 -49
  60. package/src/module/auth/controller/auth.controller.ts +28 -28
  61. package/src/module/auth/guards/google-auth.guard.ts +9 -9
  62. package/src/module/auth/guards/jwt.guard.ts +22 -22
  63. package/src/module/auth/guards/role.guard.ts +68 -68
  64. package/src/module/auth/services/auth.service.ts +50 -50
  65. package/src/module/auth/services/jwt.service.ts +11 -11
  66. package/src/module/auth/strategies/google.strategy.ts +54 -54
  67. package/src/module/auth/strategies/jwt.strategy.ts +58 -58
  68. package/src/module/auth/strategies/local.strategy.ts +13 -13
  69. package/src/module/dashboard/controller/dashboard.controller.ts +36 -36
  70. package/src/module/dashboard/dashboard.module.ts +21 -21
  71. package/src/module/dashboard/entity/dashboard_page_data.entity.ts +27 -27
  72. package/src/module/dashboard/entity/widget_master.entity.ts +18 -18
  73. package/src/module/dashboard/repository/dashboard.repository.ts +42 -42
  74. package/src/module/dashboard/service/dashboard.service.ts +73 -73
  75. package/src/module/dev/dev.module.ts +12 -12
  76. package/src/module/dev/service/dev.service.ts +7 -7
  77. package/src/module/enterprise/controller/organization.controller.ts +36 -36
  78. package/src/module/enterprise/enterprise.module.ts +30 -30
  79. package/src/module/enterprise/entity/enterprise.entity.ts +37 -37
  80. package/src/module/enterprise/entity/organization-app-mapping.entity.ts +13 -13
  81. package/src/module/enterprise/entity/organization.entity.ts +92 -92
  82. package/src/module/enterprise/repository/enterprise.repository.ts +31 -31
  83. package/src/module/enterprise/repository/organization.repository.ts +26 -26
  84. package/src/module/enterprise/repository/school.repository.ts +278 -278
  85. package/src/module/enterprise/service/brand.service.ts +5 -5
  86. package/src/module/enterprise/service/enterprise.service.ts +16 -16
  87. package/src/module/enterprise/service/organization-app-mapping.service.ts +4 -4
  88. package/src/module/enterprise/service/organization.service.ts +145 -145
  89. package/src/module/filter/controller/filter.controller.ts +84 -84
  90. package/src/module/filter/dto/filter-request.dto.ts +38 -38
  91. package/src/module/filter/entity/saved-filter-detail.entity.ts +41 -41
  92. package/src/module/filter/entity/saved-filter-master.entity.ts +23 -23
  93. package/src/module/filter/filter.module.ts +31 -31
  94. package/src/module/filter/repository/saved-filter.repository.ts +168 -168
  95. package/src/module/filter/service/filter-evaluator.service.ts +86 -86
  96. package/src/module/filter/service/filter.service.ts +941 -930
  97. package/src/module/filter/service/saved-filter.service.ts +170 -170
  98. package/src/module/ics/controller/ics.controller.ts +21 -21
  99. package/src/module/ics/dto/ics.dto.ts +55 -55
  100. package/src/module/ics/ics.module.ts +13 -13
  101. package/src/module/ics/service/ics.service.ts +57 -57
  102. package/src/module/integration/controller/calender-event.controller.ts +31 -31
  103. package/src/module/integration/controller/integration.controller.ts +662 -662
  104. package/src/module/integration/controller/wrapper.controller.ts +37 -37
  105. package/src/module/integration/dto/create-config.dto.ts +526 -526
  106. package/src/module/integration/entity/integration-config.entity.ts +112 -112
  107. package/src/module/integration/entity/integration-entity-mapper.entity.ts +14 -14
  108. package/src/module/integration/entity/integration-source.entity.ts +17 -17
  109. package/src/module/integration/entity/user-integration.entity.ts +71 -71
  110. package/src/module/integration/examples/usage.example.ts +338 -338
  111. package/src/module/integration/factories/base.factory.ts +7 -7
  112. package/src/module/integration/factories/email.factory.ts +49 -49
  113. package/src/module/integration/factories/integration.factory.ts +121 -121
  114. package/src/module/integration/factories/sms.factory.ts +51 -51
  115. package/src/module/integration/factories/telephone.factory.ts +41 -41
  116. package/src/module/integration/factories/whatsapp.factory.ts +56 -56
  117. package/src/module/integration/integration.module.ts +110 -110
  118. package/src/module/integration/service/calendar-event.service.ts +118 -118
  119. package/src/module/integration/service/integration-entity-mapper.service.ts +17 -17
  120. package/src/module/integration/service/integration-queue.service.ts +229 -229
  121. package/src/module/integration/service/integration.service.ts +2621 -2621
  122. package/src/module/integration/service/oauth.service.ts +224 -224
  123. package/src/module/integration/service/wrapper.service.ts +499 -499
  124. package/src/module/integration/strategies/email/gmail-api.strategy.ts +280 -280
  125. package/src/module/integration/strategies/email/outlook-api.strategy.ts +44 -44
  126. package/src/module/integration/strategies/email/outlook.strategy.ts +64 -64
  127. package/src/module/integration/strategies/email/sendgrid-api.strategy.ts +260 -260
  128. package/src/module/integration/strategies/integration.strategy.ts +97 -97
  129. package/src/module/integration/strategies/sms/gupshup-sms.strategy.ts +146 -146
  130. package/src/module/integration/strategies/sms/msg91-sms.strategy.ts +164 -164
  131. package/src/module/integration/strategies/sms/tubelight-sms.strategy.ts +163 -163
  132. package/src/module/integration/strategies/telephone/ozonetel-voice.strategy.ts +238 -238
  133. package/src/module/integration/strategies/telephone/tubelight-voice.strategy.ts +210 -210
  134. package/src/module/integration/strategies/whatsapp/gupshup-whatsapp.strategy.ts +359 -359
  135. package/src/module/integration/strategies/whatsapp/tubelight-whatsapp.strategy.ts +372 -372
  136. package/src/module/integration/strategies/whatsapp/whatsapp-cloud.strategy.ts +403 -403
  137. package/src/module/integration/strategies/whatsapp/whatsapp.strategy.ts +57 -57
  138. package/src/module/layout/controller/layout.controller.ts +47 -47
  139. package/src/module/layout/entity/header-items.entity.ts +28 -28
  140. package/src/module/layout/entity/header-section.entity.ts +19 -19
  141. package/src/module/layout/layout.module.ts +21 -21
  142. package/src/module/layout/repository/header-items.repository.ts +18 -18
  143. package/src/module/layout/repository/header-section.repository.ts +22 -22
  144. package/src/module/layout/service/header-section.service.ts +25 -25
  145. package/src/module/layout_preference/controller/layout_preference.controller.ts +47 -47
  146. package/src/module/layout_preference/entity/layout_preference.entity.ts +28 -28
  147. package/src/module/layout_preference/layout_preference.module.ts +18 -18
  148. package/src/module/layout_preference/repository/layout_preference.repository.ts +30 -30
  149. package/src/module/layout_preference/service/layout_preference.service.ts +172 -172
  150. package/src/module/lead/controller/lead.controller.ts +30 -30
  151. package/src/module/lead/lead.module.ts +14 -14
  152. package/src/module/lead/repository/lead.repository.ts +41 -41
  153. package/src/module/lead/service/lead.service.ts +54 -54
  154. package/src/module/listmaster/controller/list-master.controller.ts +187 -187
  155. package/src/module/listmaster/entity/list-master-items.entity.ts +43 -43
  156. package/src/module/listmaster/entity/list-master.entity.ts +33 -33
  157. package/src/module/listmaster/listmaster.module.ts +44 -44
  158. package/src/module/listmaster/repository/list-master-items.repository.ts +169 -169
  159. package/src/module/listmaster/repository/list-master.repository.ts +46 -46
  160. package/src/module/listmaster/service/list-master-engine.ts +19 -19
  161. package/src/module/listmaster/service/list-master-extension.interface.ts +4 -4
  162. package/src/module/listmaster/service/list-master-item.service.ts +292 -292
  163. package/src/module/listmaster/service/list-master-registry.ts +15 -15
  164. package/src/module/listmaster/service/list-master.service.ts +442 -442
  165. package/src/module/mapper/controller/field-mapper.controller.ts +76 -76
  166. package/src/module/mapper/controller/mapper.controller.ts +20 -20
  167. package/src/module/mapper/dto/field-mapper.dto.ts +14 -14
  168. package/src/module/mapper/entity/field-lovs.entity.ts +19 -19
  169. package/src/module/mapper/entity/field-mapper.entity.ts +53 -53
  170. package/src/module/mapper/entity/mapper.entity.ts +16 -16
  171. package/src/module/mapper/mapper.module.ts +34 -34
  172. package/src/module/mapper/repository/field-lovs.repository.ts +35 -35
  173. package/src/module/mapper/repository/field-mapper.repository.ts +42 -42
  174. package/src/module/mapper/repository/mapper.repository.ts +15 -15
  175. package/src/module/mapper/service/field-mapper.service.ts +266 -266
  176. package/src/module/mapper/service/mapper.service.ts +79 -79
  177. package/src/module/master/controller/master.controller.ts +74 -74
  178. package/src/module/master/service/master.service.ts +483 -483
  179. package/src/module/meta/controller/app-master.controller.ts +38 -38
  180. package/src/module/meta/controller/attribute-master.controller.ts +66 -66
  181. package/src/module/meta/controller/entity-dynamic.controller.ts +125 -125
  182. package/src/module/meta/controller/entity-master.controller.ts +28 -28
  183. package/src/module/meta/controller/entity-relation.controller.ts +36 -36
  184. package/src/module/meta/controller/entity.controller.ts +392 -392
  185. package/src/module/meta/controller/entity.public.controller.ts +75 -75
  186. package/src/module/meta/controller/media.controller.ts +107 -107
  187. package/src/module/meta/controller/meta.controller.ts +96 -96
  188. package/src/module/meta/controller/view-master.controller.ts +86 -86
  189. package/src/module/meta/dto/entity-list-data.dto.ts +6 -6
  190. package/src/module/meta/dto/entity-tab.dto.ts +4 -4
  191. package/src/module/meta/dto/entity-table.dto.ts +9 -9
  192. package/src/module/meta/entity/app-master.entity.ts +34 -34
  193. package/src/module/meta/entity/attribute-master.entity.ts +89 -89
  194. package/src/module/meta/entity/base-entity.entity.ts +75 -75
  195. package/src/module/meta/entity/entity-master.entity.ts +85 -85
  196. package/src/module/meta/entity/entity-relation-data.entity.ts +29 -29
  197. package/src/module/meta/entity/entity-relation.entity.ts +23 -23
  198. package/src/module/meta/entity/entity-table-column.entity.ts +61 -61
  199. package/src/module/meta/entity/entity-table.entity.ts +50 -50
  200. package/src/module/meta/entity/media-data.entity.ts +32 -32
  201. package/src/module/meta/entity/preference.entity.ts +62 -62
  202. package/src/module/meta/entity/view-master.entity.ts +41 -41
  203. package/src/module/meta/entity.module.ts +158 -158
  204. package/src/module/meta/repository/app-master.repository.ts +20 -20
  205. package/src/module/meta/repository/attribute-master.repository.ts +110 -110
  206. package/src/module/meta/repository/entity-master.repository.ts +69 -69
  207. package/src/module/meta/repository/entity-table-column.repository.ts +39 -39
  208. package/src/module/meta/repository/entity-table.repository.ts +53 -53
  209. package/src/module/meta/repository/media-data.repository.ts +50 -50
  210. package/src/module/meta/repository/preference.repository.ts +20 -20
  211. package/src/module/meta/repository/user-app-mapping.repository.ts +28 -28
  212. package/src/module/meta/repository/view-master.repository.ts +42 -42
  213. package/src/module/meta/service/app-master.service.ts +37 -37
  214. package/src/module/meta/service/attribute-master.service.ts +117 -117
  215. package/src/module/meta/service/common.service.ts +9 -9
  216. package/src/module/meta/service/entity-dynamic.service.ts +824 -824
  217. package/src/module/meta/service/entity-list.service.ts +205 -205
  218. package/src/module/meta/service/entity-master.service.ts +169 -169
  219. package/src/module/meta/service/entity-realation-data.service.ts +9 -9
  220. package/src/module/meta/service/entity-relation.service.ts +69 -69
  221. package/src/module/meta/service/entity-service-impl.service.ts +525 -525
  222. package/src/module/meta/service/entity-table-column.service.ts +39 -39
  223. package/src/module/meta/service/entity-table.service.ts +150 -150
  224. package/src/module/meta/service/entity-validation.service.ts +187 -187
  225. package/src/module/meta/service/entity.service.ts +67 -67
  226. package/src/module/meta/service/field-group.service.ts +103 -103
  227. package/src/module/meta/service/media-data.service.ts +507 -507
  228. package/src/module/meta/service/populate-meta.service.ts +193 -193
  229. package/src/module/meta/service/preference.service.ts +16 -16
  230. package/src/module/meta/service/resolver.service.ts +267 -267
  231. package/src/module/meta/service/section-master.service.ts +104 -104
  232. package/src/module/meta/service/update-form-json.service.ts +22 -22
  233. package/src/module/meta/service/user-app-mapping.service.ts +17 -17
  234. package/src/module/meta/service/view-master.service.ts +127 -127
  235. package/src/module/module/controller/menu.controller.ts +15 -15
  236. package/src/module/module/controller/module-access.controller.ts +134 -134
  237. package/src/module/module/entity/menu.entity.ts +43 -43
  238. package/src/module/module/entity/module-access.entity.ts +25 -25
  239. package/src/module/module/entity/module-action.entity.ts +17 -17
  240. package/src/module/module/entity/module.entity.ts +52 -52
  241. package/src/module/module/module.module.ts +42 -42
  242. package/src/module/module/repository/menu.repository.ts +184 -184
  243. package/src/module/module/repository/module-access.repository.ts +344 -344
  244. package/src/module/module/service/menu.service.ts +82 -82
  245. package/src/module/module/service/module-access.service.ts +209 -209
  246. package/src/module/notification/controller/notification.controller.ts +58 -58
  247. package/src/module/notification/controller/otp.controller.ts +117 -117
  248. package/src/module/notification/entity/notification.entity.ts +26 -26
  249. package/src/module/notification/entity/otp.entity.ts +28 -28
  250. package/src/module/notification/firebase-admin.config.ts +22 -22
  251. package/src/module/notification/notification.module.ts +69 -69
  252. package/src/module/notification/repository/otp.repository.ts +27 -27
  253. package/src/module/notification/service/email.service.ts +127 -127
  254. package/src/module/notification/service/notification.service.ts +163 -163
  255. package/src/module/notification/service/otp.service.ts +132 -132
  256. package/src/module/third-party-module/entity/third-party-api-registry.entity.ts +52 -52
  257. package/src/module/third-party-module/repository/third-party-api-registry.repository.ts +20 -20
  258. package/src/module/third-party-module/service/api-registry.service.ts +13 -13
  259. package/src/module/third-party-module/third-party.module.ts +12 -12
  260. package/src/module/user/controller/login.controller.ts +197 -197
  261. package/src/module/user/controller/user.controller.ts +40 -40
  262. package/src/module/user/dto/create-user.dto.ts +62 -62
  263. package/src/module/user/dto/update-user.dto.ts +4 -4
  264. package/src/module/user/entity/role.entity.ts +33 -33
  265. package/src/module/user/entity/user-role-mapping.entity.ts +38 -38
  266. package/src/module/user/entity/user-session.entity.ts +73 -73
  267. package/src/module/user/entity/user.entity.ts +59 -59
  268. package/src/module/user/repository/role.repository.ts +96 -96
  269. package/src/module/user/repository/user-role-mapping.repository.ts +126 -126
  270. package/src/module/user/repository/user.repository.ts +50 -50
  271. package/src/module/user/repository/userSession.repository.ts +33 -33
  272. package/src/module/user/service/login.service.ts +284 -284
  273. package/src/module/user/service/role.service.ts +189 -189
  274. package/src/module/user/service/user-role-mapping.service.ts +98 -98
  275. package/src/module/user/service/user-session.service.ts +168 -168
  276. package/src/module/user/service/user.service.ts +365 -365
  277. package/src/module/user/user.module.ts +65 -65
  278. package/src/module/workflow/controller/action-category.controller.ts +54 -54
  279. package/src/module/workflow/controller/action-resource-mapping.controller.ts +23 -23
  280. package/src/module/workflow/controller/action-template-mapping.controller.ts +35 -35
  281. package/src/module/workflow/controller/action.controller.ts +111 -111
  282. package/src/module/workflow/controller/activity-log.controller.ts +55 -55
  283. package/src/module/workflow/controller/comm-template.controller.ts +43 -43
  284. package/src/module/workflow/controller/entity-modification.controller.ts +35 -35
  285. package/src/module/workflow/controller/form-master.controller.ts +43 -43
  286. package/src/module/workflow/controller/stage-group.controller.ts +48 -48
  287. package/src/module/workflow/controller/stage.controller.ts +50 -50
  288. package/src/module/workflow/controller/task.controller.ts +77 -77
  289. package/src/module/workflow/controller/workflow-list-master.controller.ts +44 -44
  290. package/src/module/workflow/controller/workflow-meta.controller.ts +80 -80
  291. package/src/module/workflow/controller/workflow.controller.ts +67 -67
  292. package/src/module/workflow/entity/action-category.entity.ts +38 -38
  293. package/src/module/workflow/entity/action-data.entity.ts +55 -55
  294. package/src/module/workflow/entity/action-resources-mapping.entity.ts +29 -29
  295. package/src/module/workflow/entity/action-template-mapping.entity.ts +17 -17
  296. package/src/module/workflow/entity/action.entity.ts +50 -50
  297. package/src/module/workflow/entity/activity-log.entity.ts +43 -43
  298. package/src/module/workflow/entity/comm-template.entity.ts +43 -43
  299. package/src/module/workflow/entity/entity-modification.entity.ts +38 -38
  300. package/src/module/workflow/entity/form.entity.ts +25 -25
  301. package/src/module/workflow/entity/stage-action-mapping.entity.ts +17 -17
  302. package/src/module/workflow/entity/stage-group.entity.ts +23 -23
  303. package/src/module/workflow/entity/stage-movement-data.entity.ts +38 -38
  304. package/src/module/workflow/entity/stage.entity.ts +20 -20
  305. package/src/module/workflow/entity/task-data.entity.ts +88 -88
  306. package/src/module/workflow/entity/template-attach-mapper.entity.ts +30 -30
  307. package/src/module/workflow/entity/workflow-data.entity.ts +11 -11
  308. package/src/module/workflow/entity/workflow-level-mapping.entity.ts +18 -18
  309. package/src/module/workflow/entity/workflow.entity.ts +20 -20
  310. package/src/module/workflow/repository/action-category.repository.ts +79 -79
  311. package/src/module/workflow/repository/action-data.repository.ts +323 -323
  312. package/src/module/workflow/repository/action.repository.ts +323 -323
  313. package/src/module/workflow/repository/activity-log.repository.ts +148 -148
  314. package/src/module/workflow/repository/comm-template.repository.ts +149 -149
  315. package/src/module/workflow/repository/form-master.repository.ts +59 -59
  316. package/src/module/workflow/repository/stage-group.repository.ts +176 -176
  317. package/src/module/workflow/repository/stage-movement.repository.ts +244 -244
  318. package/src/module/workflow/repository/stage.repository.ts +172 -172
  319. package/src/module/workflow/repository/task.repository.ts +127 -127
  320. package/src/module/workflow/repository/workflow.repository.ts +42 -42
  321. package/src/module/workflow/service/action-category.service.ts +33 -33
  322. package/src/module/workflow/service/action-data.service.ts +62 -62
  323. package/src/module/workflow/service/action-resources-mapping.service.ts +10 -10
  324. package/src/module/workflow/service/action-template-mapping.service.ts +104 -104
  325. package/src/module/workflow/service/action.service.ts +279 -279
  326. package/src/module/workflow/service/activity-log.service.ts +107 -107
  327. package/src/module/workflow/service/comm-template.service.ts +180 -180
  328. package/src/module/workflow/service/entity-modification.service.ts +67 -67
  329. package/src/module/workflow/service/form-master.service.ts +35 -35
  330. package/src/module/workflow/service/populate-workflow.service.ts +303 -303
  331. package/src/module/workflow/service/stage-action-mapping.service.ts +5 -5
  332. package/src/module/workflow/service/stage-group.service.ts +319 -319
  333. package/src/module/workflow/service/stage.service.ts +199 -199
  334. package/src/module/workflow/service/task.service.ts +560 -560
  335. package/src/module/workflow/service/workflow-list-master.service.ts +60 -60
  336. package/src/module/workflow/service/workflow-meta.service.ts +640 -640
  337. package/src/module/workflow/service/workflow.service.ts +205 -205
  338. package/src/module/workflow/workflow.module.ts +174 -174
  339. package/src/module/workflow-automation/controller/workflow-automation.controller.ts +21 -21
  340. package/src/module/workflow-automation/entity/workflow-automation-action.entity.ts +26 -26
  341. package/src/module/workflow-automation/entity/workflow-automation.entity.ts +35 -35
  342. package/src/module/workflow-automation/interface/action.decorator.ts +7 -7
  343. package/src/module/workflow-automation/interface/action.interface.ts +5 -5
  344. package/src/module/workflow-automation/service/action-registery.service.ts +35 -35
  345. package/src/module/workflow-automation/service/workflow-automation-engine.service.ts +214 -214
  346. package/src/module/workflow-automation/service/workflow-automation.service.ts +347 -347
  347. package/src/module/workflow-automation/workflow-automation.module.ts +34 -34
  348. package/src/resources/dev.properties.yaml +30 -30
  349. package/src/resources/local.properties.yaml +27 -27
  350. package/src/resources/properties.module.ts +12 -12
  351. package/src/resources/properties.yaml.ts +11 -11
  352. package/src/resources/uat.properties.yaml +31 -31
  353. package/src/table.config.ts +126 -126
  354. package/src/utils/dto/excel-data.dto.ts +14 -14
  355. package/src/utils/dto/excelsheet-data.dto.ts +5 -5
  356. package/src/utils/service/base64util.service.ts +18 -18
  357. package/src/utils/service/clockIDGenUtil.service.ts +21 -21
  358. package/src/utils/service/codeGenerator.service.ts +22 -22
  359. package/src/utils/service/dateUtil.service.ts +17 -17
  360. package/src/utils/service/encryptUtil.service.ts +97 -97
  361. package/src/utils/service/excel-helper.service.ts +72 -72
  362. package/src/utils/service/excelUtil.service.ts +15 -15
  363. package/src/utils/service/file-util.service.ts +11 -11
  364. package/src/utils/service/json-util.service.ts +23 -23
  365. package/src/utils/service/loggingUtil.service.ts +34 -34
  366. package/src/utils/service/reflection-helper.service.ts +62 -62
  367. package/src/utils/service/wbsCodeGen.service.ts +8 -8
  368. package/src/utils/utils.module.ts +25 -25
  369. package/tsconfig.build.json +4 -4
  370. package/tsconfig.json +24 -24
  371. package/.claude/settings.local.json +0 -26
  372. package/.idea/250218_nodejs_core.iml +0 -9
  373. package/.idea/codeStyles/Project.xml +0 -59
  374. package/.idea/codeStyles/codeStyleConfig.xml +0 -5
  375. package/.idea/copilot.data.migration.agent.xml +0 -6
  376. package/.idea/copilot.data.migration.ask.xml +0 -6
  377. package/.idea/copilot.data.migration.ask2agent.xml +0 -6
  378. package/.idea/copilot.data.migration.edit.xml +0 -6
  379. package/.idea/inspectionProfiles/Project_Default.xml +0 -6
  380. package/.idea/misc.xml +0 -6
  381. package/.idea/modules.xml +0 -8
  382. package/.idea/prettier.xml +0 -6
  383. package/.idea/vcs.xml +0 -6
  384. package/server.log +0 -850
@@ -1,930 +1,941 @@
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
+ if (Array.isArray(sortby) && sortby.length > 0) {
552
+ sortby.forEach(({ sortColum, sortType }) => {
553
+ if (sortColum) {
554
+ qb.addOrderBy(`e.${sortColum}`, sortType?.toUpperCase() === 'DSC' ? 'DESC' : 'ASC');
555
+ }
556
+ });
557
+ } else {
558
+ // fallback if no explicit sortby sent
559
+ qb.addOrderBy('e.created_date', 'DESC');
560
+ }
561
+
562
+
563
+
564
+ const page = dto.page && dto.page > 0 ? dto.page : 1;
565
+ const size = dto.size && dto.size > 0 ? dto.size : 10;
566
+ qb.skip((page - 1) * size).take(size);
567
+
568
+ const entity_list = await qb.getRawMany();
569
+
570
+ console.log(`📦 [FilterService] Fetched ${entity_list.length} records`);
571
+
572
+ const dateAttributes = Object.entries(attributeMetaMap)
573
+ .filter(([_, attr]) => attr.data_type === 'date')
574
+ .map(([key]) => key);
575
+
576
+ const formatDate = (dateStr: string | null): string | null =>
577
+ dateStr ? moment(dateStr).format('DD-MM-YYYY') : '';
578
+
579
+ const formatDatesInRow = (row: any): any => {
580
+ const formattedRow = { ...row };
581
+ for (const key of dateAttributes) {
582
+ if (formattedRow[key])
583
+ formattedRow[key] = formatDate(formattedRow[key]);
584
+ }
585
+ return formattedRow;
586
+ };
587
+
588
+ const formattedEntityList = entity_list.map(formatDatesInRow);
589
+
590
+ const resolvedEntityList = await Promise.all(
591
+ formattedEntityList.map((row) =>
592
+ this.resolverService.getResolvedData(loggedInUser, row, entity_type),
593
+ ),
594
+ );
595
+
596
+ const resolvedTabs = await Promise.all(
597
+ filteredTabs.map(async (tab) => {
598
+ const tabAttrKey = layout?.attribute || tabs?.columnName;
599
+
600
+ if (
601
+ !tabAttrKey ||
602
+ tab.tab_value?.toLowerCase() === 'all' ||
603
+ tab.tab_value?.toLowerCase() === 'others'
604
+ ) {
605
+ return tab;
606
+ }
607
+
608
+ const resolvedVal = await this.resolverService.getResolvedValue(
609
+ loggedInUser,
610
+ tabAttrKey,
611
+ tab.tab_value,
612
+ entity_type,
613
+ );
614
+
615
+ return { ...tab, tab_value: resolvedVal ?? tab.tab_value };
616
+ }),
617
+ );
618
+
619
+ const countQb = this.dataSource
620
+ .createQueryBuilder()
621
+ .select('COUNT(*)', 'count')
622
+ .from(tableName, 'e');
623
+ dataWhere.forEach((clause) =>
624
+ countQb.andWhere(clause.query, clause.params),
625
+ );
626
+ const countResult = await countQb.getRawOne();
627
+ const total = parseInt(countResult.count, 10);
628
+
629
+ console.log('📊 [FilterService] Returning final result with total:', total);
630
+
631
+ return {
632
+ success: true,
633
+ data: {
634
+ entity_tabs: resolvedTabs,
635
+ entity_list: resolvedEntityList,
636
+ pagination: {
637
+ total,
638
+ page,
639
+ size,
640
+ totalPages: Math.ceil(total / size),
641
+ hasNextPage: page * size < total,
642
+ hasPreviousPage: page > 1,
643
+ },
644
+ },
645
+ };
646
+ }
647
+
648
+ private parseFilters(raw: any, isSingle = false): any[] {
649
+ if (!raw) return [];
650
+
651
+ if (typeof raw === 'string') {
652
+ try {
653
+ const parsed = JSON.parse(raw);
654
+ return isSingle ? [parsed] : parsed;
655
+ } catch {
656
+ throw new BadRequestException('Invalid JSON in filter input');
657
+ }
658
+ }
659
+
660
+ return isSingle ? [raw] : Array.isArray(raw) ? raw : [];
661
+ }
662
+
663
+ private async getSavedFilters(code?: string): Promise<any[]> {
664
+ if (!code) return [];
665
+
666
+ const savedFilter = await this.savedFilterService.getDetailsByCode(code);
667
+ if (!savedFilter) {
668
+ throw new BadRequestException(`Saved filter not found for code: ${code}`);
669
+ }
670
+ return savedFilter;
671
+ }
672
+
673
+ private buildWhereClauses(
674
+ filters: any[],
675
+ attributeMeta: Record<string, any>,
676
+ ) {
677
+ return filters
678
+ .map((f) => this.buildCondition(f, attributeMeta[f.filter_attribute]))
679
+ .filter(
680
+ (clause): clause is { query: string; params: any } => clause !== null,
681
+ );
682
+ }
683
+
684
+ private buildCondition(
685
+ filter: any,
686
+ meta: any,
687
+ ): { query: string; params: any } | null {
688
+ if (!meta) return null;
689
+
690
+ let attr = filter.filter_attribute;
691
+ const val = filter.filter_value;
692
+ const op = filter.filter_operator;
693
+ const key = `param_${attr}_${Math.random().toString(36).substring(2, 8)}`;
694
+
695
+ // if (
696
+ // (meta.data_source_type === 'entity' ||
697
+ // meta.data_source_type === 'master') &&
698
+ // !filter.skip_id
699
+ // ) {
700
+ // attr = `${attr}_id`;
701
+ // }
702
+
703
+ switch (meta.data_type) {
704
+ case 'text':
705
+ return this.buildTextCondition(attr, op, val, key);
706
+ case 'number':
707
+ return this.buildNumberCondition(attr, op, val, key);
708
+ case 'date':
709
+ return this.buildDateCondition(attr, op, val, key);
710
+ case 'select':
711
+ return this.buildMultiSelectCondition(attr, op, val, key);
712
+ case 'multiselect':
713
+ return this.buildMultiSelectCondition(attr, op, val, key);
714
+ case 'checkbox':
715
+ return this.buildMultiSelectCondition(attr, op, val, key);
716
+ case 'radio':
717
+ return this.buildMultiSelectCondition(attr, op, val, key);
718
+ case 'year':
719
+ return this.buildYearCondition(attr, op, val, key);
720
+ default:
721
+ return null;
722
+ }
723
+ }
724
+
725
+ private buildTextCondition(attr: string, op: string, val: any, key: string) {
726
+ switch (op) {
727
+ case 'contains':
728
+ return {
729
+ query: `LOWER(e.${attr}) LIKE :${key}`,
730
+ params: { [key]: `%${val ? val.toLowerCase() : ''}%` },
731
+ };
732
+ case 'equal':
733
+ return {
734
+ query: `e.${attr} = :${key}`,
735
+ params: { [key]: val },
736
+ };
737
+ case 'not_equal':
738
+ return {
739
+ query: `e.${attr} != :${key}`,
740
+ params: { [key]: val },
741
+ };
742
+ case 'empty':
743
+ return {
744
+ query: `e.${attr} IS NULL`,
745
+ params: {},
746
+ };
747
+ case 'not_empty':
748
+ return {
749
+ query: `e.${attr} IS NOT NULL`,
750
+ params: {},
751
+ };
752
+ default:
753
+ throw new BadRequestException(`Unsupported operator for text: ${op}`);
754
+ }
755
+ }
756
+
757
+ private buildNumberCondition(
758
+ attr: string,
759
+ op: string,
760
+ val: any,
761
+ key: string,
762
+ ) {
763
+ switch (op) {
764
+ case 'equal':
765
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
766
+ case 'not_equal':
767
+ return { query: `e.${attr} != :${key}`, params: { [key]: val } };
768
+ case 'greater_than':
769
+ return { query: `e.${attr} > :${key}`, params: { [key]: val } };
770
+ case 'less_than':
771
+ return { query: `e.${attr} < :${key}`, params: { [key]: val } };
772
+ case 'less_than_qual_to':
773
+ return { query: `e.${attr} <= :${key}`, params: { [key]: val } };
774
+ case 'greater_than_qual_to':
775
+ return { query: `e.${attr} >= :${key}`, params: { [key]: val } };
776
+ case 'empty':
777
+ return { query: `e.${attr} IS NULL`, params: {} };
778
+ case 'not_empty':
779
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
780
+
781
+ default:
782
+ throw new BadRequestException(`Unsupported operator for number: ${op}`);
783
+ }
784
+ }
785
+
786
+ private buildDateCondition(attr: string, op: string, val: any, key: string) {
787
+ switch (op) {
788
+ case 'equal':
789
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
790
+ case 'before':
791
+ return { query: `e.${attr} < :${key}`, params: { [key]: val } };
792
+ case 'after':
793
+ return { query: `e.${attr} > :${key}`, params: { [key]: val } };
794
+ case 'between': {
795
+ if (typeof val === 'string') {
796
+ val = val.split(',').map((v) => v.trim());
797
+ }
798
+
799
+ if (
800
+ !Array.isArray(val) ||
801
+ val.length !== 2 ||
802
+ val[0] === '' ||
803
+ val[1] === ''
804
+ ) {
805
+ // throw new BadRequestException(`Invalid value for in_between: ${val}`);
806
+ console.log(`Invalid value for in_between: ${val}`);
807
+ return null;
808
+ }
809
+ return {
810
+ query: `e.${attr} BETWEEN :${key}_start AND :${key}_end`,
811
+ params: {
812
+ [`${key}_start`]: val[0],
813
+ [`${key}_end`]: val[1],
814
+ },
815
+ };
816
+ }
817
+
818
+ case 'today': {
819
+ const today = new Date().toISOString().split('T')[0]; // 'YYYY-MM-DD'
820
+
821
+ return {
822
+ query: `DATE(e.${attr}) = :today`,
823
+ params: {
824
+ today,
825
+ },
826
+ };
827
+ }
828
+
829
+ case 'empty': {
830
+ return {
831
+ query: `e.${attr} IS NULL`,
832
+ params: {},
833
+ };
834
+ }
835
+
836
+ case 'not_empty': {
837
+ return {
838
+ query: `e.${attr} IS NOT NULL`,
839
+ params: {},
840
+ };
841
+ }
842
+ default:
843
+ throw new BadRequestException(`Unsupported operator for date: ${op}`);
844
+ }
845
+ }
846
+
847
+ private buildSelectCondition(
848
+ attr: string,
849
+ op: string,
850
+ val: any,
851
+ key: string,
852
+ ) {
853
+ switch (op) {
854
+ case 'equal':
855
+ return { query: `e.${attr} = :${key}`, params: { [key]: val } };
856
+ case 'not_equal':
857
+ return { query: `e.${attr} != :${key}`, params: { [key]: val } };
858
+ case 'empty':
859
+ return { query: `e.${attr} IS NULL`, params: {} };
860
+ case 'not_empty':
861
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
862
+ default:
863
+ throw new BadRequestException(`Unsupported operator for select: ${op}`);
864
+ }
865
+ }
866
+
867
+ private buildMultiSelectCondition(
868
+ attr: string,
869
+ op: string,
870
+ val: any,
871
+ key: string,
872
+ ) {
873
+ if (Array.isArray(val) && val.length === 0) {
874
+ return { query: '1=1', params: {} };
875
+ }
876
+
877
+ if ((op === 'equal' || op === 'not_equal') && !Array.isArray(val)) {
878
+ throw new BadRequestException(
879
+ `Value for multi-select must be an array for operator: ${op}`,
880
+ );
881
+ }
882
+
883
+ switch (op) {
884
+ case 'equal':
885
+ return {
886
+ query: `e.${attr} IN (:${key})`,
887
+ params: { [key]: val },
888
+ };
889
+ case 'not_equal':
890
+ return {
891
+ query: `e.${attr} NOT IN (:${key})`,
892
+ params: { [key]: val },
893
+ };
894
+ case 'contains':
895
+ return {
896
+ query: `e.${attr} LIKE :${key}`,
897
+ params: { [key]: `%${val}%` },
898
+ };
899
+ case 'not_contains':
900
+ return {
901
+ query: `e.${attr} NOT LIKE :${key}`,
902
+ params: { [key]: `%${val}%` },
903
+ };
904
+ case 'empty':
905
+ return { query: `e.${attr} IS NULL`, params: {} };
906
+ case 'not_empty':
907
+ return { query: `e.${attr} IS NOT NULL`, params: {} };
908
+ default:
909
+ throw new BadRequestException(
910
+ `Unsupported operator for multiselect: ${op}`,
911
+ );
912
+ }
913
+ }
914
+
915
+ private buildYearCondition(attr: string, op: string, val: any, key: string) {
916
+ switch (op) {
917
+ case 'equal':
918
+ return {
919
+ query: `e.${attr} = :${key}`,
920
+ params: { [key]: parseInt(val, 10) },
921
+ };
922
+ case 'not_equal':
923
+ return {
924
+ query: `e.${attr} != :${key}`,
925
+ params: { [key]: parseInt(val, 10) },
926
+ };
927
+ case 'greater_than':
928
+ return {
929
+ query: `e.${attr} > :${key}`,
930
+ params: { [key]: parseInt(val, 10) },
931
+ };
932
+ case 'less_than':
933
+ return {
934
+ query: `e.${attr} < :${key}`,
935
+ params: { [key]: parseInt(val, 10) },
936
+ };
937
+ default:
938
+ throw new BadRequestException(`Unsupported operator for year: ${op}`);
939
+ }
940
+ }
941
+ }