mirror of
https://github.com/bitwarden/server.git
synced 2025-04-05 05:00:19 -05:00
[AC-2165] Unable to Link New Plans to a Resale Provider (#4699)
* Changes to make all teams and ent plan visible Signed-off-by: Cy Okeke <cokeke@bitwarden.com> * Resolve the typeo --------- Signed-off-by: Cy Okeke <cokeke@bitwarden.com>
This commit is contained in:
parent
2384e0b7ef
commit
917658520c
@ -21,7 +21,7 @@ BEGIN
|
|||||||
INNER JOIN
|
INNER JOIN
|
||||||
[dbo].[User] U ON U.[Id] = OU.[UserId]
|
[dbo].[User] U ON U.[Id] = OU.[UserId]
|
||||||
WHERE
|
WHERE
|
||||||
((O.[PlanType] >= 2 AND O.[PlanType] <= 5) OR (O.[PlanType] >= 8 AND O.[PlanType] <= 15)) -- All 'Teams' and 'Enterprise' organizations
|
((O.[PlanType] >= 2 AND O.[PlanType] <= 5) OR (O.[PlanType] >= 8 AND O.[PlanType] <= 20) AND (O.PlanType <> 16)) -- All 'Teams' and 'Enterprise' organizations
|
||||||
AND NOT EXISTS (SELECT * FROM [dbo].[ProviderOrganizationView] PO WHERE PO.[OrganizationId] = O.[Id])
|
AND NOT EXISTS (SELECT * FROM [dbo].[ProviderOrganizationView] PO WHERE PO.[OrganizationId] = O.[Id])
|
||||||
AND (@Name IS NULL OR O.[Name] LIKE @NameLikeSearch)
|
AND (@Name IS NULL OR O.[Name] LIKE @NameLikeSearch)
|
||||||
AND (U.[Email] LIKE @OwnerLikeSearch)
|
AND (U.[Email] LIKE @OwnerLikeSearch)
|
||||||
@ -36,7 +36,7 @@ BEGIN
|
|||||||
FROM
|
FROM
|
||||||
[dbo].[OrganizationView] O
|
[dbo].[OrganizationView] O
|
||||||
WHERE
|
WHERE
|
||||||
((O.[PlanType] >= 2 AND O.[PlanType] <= 5) OR (O.[PlanType] >= 8 AND O.[PlanType] <= 15)) -- All 'Teams' and 'Enterprise' organizations
|
((O.[PlanType] >= 2 AND O.[PlanType] <= 5) OR (O.[PlanType] >= 8 AND O.[PlanType] <= 20) AND (O.PlanType <> 16)) -- All 'Teams' and 'Enterprise' organizations
|
||||||
AND NOT EXISTS (SELECT * FROM [dbo].[ProviderOrganizationView] PO WHERE PO.[OrganizationId] = O.[Id])
|
AND NOT EXISTS (SELECT * FROM [dbo].[ProviderOrganizationView] PO WHERE PO.[OrganizationId] = O.[Id])
|
||||||
AND (@Name IS NULL OR O.[Name] LIKE @NameLikeSearch)
|
AND (@Name IS NULL OR O.[Name] LIKE @NameLikeSearch)
|
||||||
ORDER BY O.[CreationDate] DESC
|
ORDER BY O.[CreationDate] DESC
|
||||||
|
@ -0,0 +1,47 @@
|
|||||||
|
CREATE OR ALTER PROCEDURE [dbo].[Organization_UnassignedToProviderSearch]
|
||||||
|
@Name NVARCHAR(50),
|
||||||
|
@OwnerEmail NVARCHAR(256),
|
||||||
|
@Skip INT = 0,
|
||||||
|
@Take INT = 25
|
||||||
|
WITH RECOMPILE
|
||||||
|
AS
|
||||||
|
BEGIN
|
||||||
|
SET NOCOUNT ON
|
||||||
|
DECLARE @NameLikeSearch NVARCHAR(55) = '%' + @Name + '%'
|
||||||
|
DECLARE @OwnerLikeSearch NVARCHAR(55) = @OwnerEmail + '%'
|
||||||
|
|
||||||
|
IF @OwnerEmail IS NOT NULL
|
||||||
|
BEGIN
|
||||||
|
SELECT
|
||||||
|
O.*
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationView] O
|
||||||
|
INNER JOIN
|
||||||
|
[dbo].[OrganizationUser] OU ON O.[Id] = OU.[OrganizationId]
|
||||||
|
INNER JOIN
|
||||||
|
[dbo].[User] U ON U.[Id] = OU.[UserId]
|
||||||
|
WHERE
|
||||||
|
((O.[PlanType] >= 2 AND O.[PlanType] <= 5) OR (O.[PlanType] >= 8 AND O.[PlanType] <= 20) AND (O.PlanType <> 16)) -- All 'Teams' and 'Enterprise' organizations
|
||||||
|
AND NOT EXISTS (SELECT * FROM [dbo].[ProviderOrganizationView] PO WHERE PO.[OrganizationId] = O.[Id])
|
||||||
|
AND (@Name IS NULL OR O.[Name] LIKE @NameLikeSearch)
|
||||||
|
AND (U.[Email] LIKE @OwnerLikeSearch)
|
||||||
|
ORDER BY O.[CreationDate] DESC
|
||||||
|
OFFSET @Skip ROWS
|
||||||
|
FETCH NEXT @Take ROWS ONLY
|
||||||
|
END
|
||||||
|
ELSE
|
||||||
|
BEGIN
|
||||||
|
SELECT
|
||||||
|
O.*
|
||||||
|
FROM
|
||||||
|
[dbo].[OrganizationView] O
|
||||||
|
WHERE
|
||||||
|
((O.[PlanType] >= 2 AND O.[PlanType] <= 5) OR (O.[PlanType] >= 8 AND O.[PlanType] <= 20) AND (O.PlanType <> 16)) -- All 'Teams' and 'Enterprise' organizations
|
||||||
|
AND NOT EXISTS (SELECT * FROM [dbo].[ProviderOrganizationView] PO WHERE PO.[OrganizationId] = O.[Id])
|
||||||
|
AND (@Name IS NULL OR O.[Name] LIKE @NameLikeSearch)
|
||||||
|
ORDER BY O.[CreationDate] DESC
|
||||||
|
OFFSET @Skip ROWS
|
||||||
|
FETCH NEXT @Take ROWS ONLY
|
||||||
|
END
|
||||||
|
END
|
||||||
|
GO
|
Loading…
x
Reference in New Issue
Block a user