Skip to content

Commit f2810cf

Browse files
authored
Finish feature/OTC-243
OTC-243: added rights for claim admin to enquire insuree
2 parents 102746d + 17622b7 commit f2810cf

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

Migration script/openIMIS migration latest.sql

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1514,6 +1514,13 @@ BEGIN
15141514
VALUES (@SystemRole, 111012, CURRENT_TIMESTAMP)
15151515
END
15161516

1517+
-- OTC-243 Enquiry in IMIS Claims doesn't function.
1518+
IF NOT EXISTS (SELECT * FROM [tblRoleRight] WHERE [RoleID] = @SystemRole AND [RightID] = 101105)
1519+
BEGIN
1520+
INSERT [dbo].[tblRoleRight] ([RoleID], [RightID], [ValidityFrom])
1521+
VALUES (@SystemRole, 101105, CURRENT_TIMESTAMP)
1522+
END
1523+
15171524
-- OP-141: Fixing uspSSRSCapitationPayment stored procedure
15181525

15191526
SET ANSI_NULLS ON

0 commit comments

Comments
 (0)