From d38681613b970dd370375cf63a59e0caa06411d8 Mon Sep 17 00:00:00 2001 From: asif Date: Thu, 18 Sep 2025 13:05:35 +0530 Subject: [PATCH] added remarks in NEFT transaction --- src/controllers/neft.controller.js | 4 +++- src/routes/neft.route.js | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/src/controllers/neft.controller.js b/src/controllers/neft.controller.js index 32b9feb..7db99d5 100644 --- a/src/controllers/neft.controller.js +++ b/src/controllers/neft.controller.js @@ -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( diff --git a/src/routes/neft.route.js b/src/routes/neft.route.js index ae5d78b..19e6a57 100644 --- a/src/routes/neft.route.js +++ b/src/routes/neft.route.js @@ -15,6 +15,7 @@ const neftRoute = async (req, res) => { amount, beneficiaryName, remitterName, + remarks } = req.body; try { @@ -25,7 +26,8 @@ const neftRoute = async (req, res) => { amount, ifscCode, beneficiaryName, - remitterName + remitterName, + remarks ); logger.info(result);