usp_GetLicenseModestySettings.sql
1.61 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
SET QUOTED_IDENTIFIER ON
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[usp_GetLicenseModestySettings]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[usp_GetLicenseModestySettings]
GO
-- ====================================================
-- Author: Magic Software
-- Create date: 05-Feb-2018
-- Description: To get all the modesty settings of a license and its related editions
-- ====================================================
create PROCEDURE [dbo].[usp_GetLicenseModestySettings]
-- Add the parameters for the stored procedure here
@iLicenseId int, @iBuildingLevelId int
AS
BEGIN
IF 1=0 BEGIN
SET FMTONLY OFF
END
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
IF @iBuildingLevelId = 0
BEGIN
SELECT LicenseToEdition.Id as LicenseEditionId, Edition.Title, LicenseToEdition.IsModesty as IsModesty
FROM LicenseToEdition
INNER JOIN Edition ON LicenseToEdition.EditionId = Edition.Id
WHERE LicenseToEdition.LicenseId=@iLicenseId and Edition.IsActive=1 ORDER BY Edition.Priority
END
ELSE
BEGIN
SELECT LicenseToEdition.Id as LicenseEditionId, Edition.Title, SiteToLicenseEdition.IsModesty as IsModesty
FROM SiteToLicenseEdition
INNER JOIN LicenseToEdition ON SiteToLicenseEdition.LicenseEditionId = LicenseToEdition.Id
INNER JOIN Edition ON LicenseToEdition.EditionId = Edition.Id
WHERE SiteToLicenseEdition.SiteId=@iBuildingLevelId and Edition.IsActive=1 ORDER BY Edition.Priority
END
END
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO