added remarks in RTGS transactions

This commit is contained in:
2025-09-18 13:13:07 +05:30
parent cf94a3b425
commit 051e86b1ff
2 changed files with 6 additions and 2 deletions

View File

@@ -10,7 +10,8 @@ async function send(
amount,
ifscCode,
beneficiaryName,
remitterName
remitterName,
remarks
) {
const commission = 0;
try {
@@ -27,6 +28,7 @@ async function send(
stAddress1: '',
stAddress2: '',
stAddress3: '',
remarks: remarks
}
);
await recordInterBankTransaction(

View File

@@ -15,6 +15,7 @@ const rtgsRoute = async (req, res) => {
amount,
beneficiaryName,
remitterName,
remarks
} = req.body;
try {
@@ -25,7 +26,8 @@ const rtgsRoute = async (req, res) => {
amount,
ifscCode,
beneficiaryName,
remitterName
remitterName,
remarks
);
if (result.status.startsWith('O.K.')) {