You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

80 lines
1.5 KiB

USE [FastMoneyPro_Remit]
GO
/****** Object: StoredProcedure [dbo].[proc_tranViewHistory] Script Date: 7/4/2019 11:35:48 AM ******/
DROP PROCEDURE [dbo].[proc_tranViewHistory]
GO
/****** Object: StoredProcedure [dbo].[proc_tranViewHistory] Script Date: 7/4/2019 11:35:48 AM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE proc [dbo].[proc_tranViewHistory]
@flag VARCHAR(50)
,@user VARCHAR(30) = NULL
,@tranId VARCHAR(30) = NULL
,@controlNo VARCHAR(50) = NULL
,@agentId VARCHAR(30) = NULL
,@tranViewType VARCHAR(50) = NULL
,@remarks VARCHAR(MAX) = NULL
,@rowId INT = NULL
,@sortBy VARCHAR(50) = NULL
,@sortOrder VARCHAR(5) = NULL
,@pageSize INT = NULL
,@pageNumber INT = NULL
AS
IF @tranId IS NULL
SELECT @tranId=id FROM remitTran WHERE controlNo=dbo.FNAEncryptString(LTRIM(RTRIM(@controlNo)))
IF @flag = 'i'
BEGIN
INSERT INTO tranViewHistory (
agentId
,tranViewType
,createdBy
,createdDate
,tranId
,remarks
,controlnumber
)
SELECT
@agentId
,@tranViewType
,@user
,GETDATE()
,@tranId
,@remarks
,@controlNo
END
IF @flag = 'i1'
BEGIN
INSERT INTO tranViewHistory (
agentId
,tranViewType
,createdBy
,createdDate
,tranId
,remarks
,controlnumber
)
SELECT
@agentId
,@tranViewType
,@user
,GETDATE()
,@tranId
,@remarks
,@controlNo
SET @rowId = SCOPE_IDENTITY()
EXEC proc_errorHandler 0, 'Success.', @rowId
END
GO