-- =============================================
-- Author: leelin
-- Create date: 2020-6-5 19:20:20
-- Description: 获取代金券使用额度
-- =============================================
ALTER PROCEDURE [dbo].[Pm_获取代金券使用额度]
@G代金券使用代码 nvarchar(max),
@U使用金额 nvarchar(max) output,
@U使用状态 nvarchar(max) output
AS
BEGIN
set
@U使用金额=(select B代金券额度 from [dbo].[B分期付款明细表] where B代金券使用代码 = @G代金券使用代码 AND B代金券有效期>convert(varchar(10),getDate(),112) and (B代金券使用状态 = 0 OR B代金券使用状态 = 2))
set
@U使用状态=(select B代金券使用状态 from [dbo].[B分期付款明细表] where B代金券使用代码 = @G代金券使用代码)
END
|