added remarks in RTGS transactions
This commit is contained in:
@@ -10,7 +10,8 @@ async function send(
|
|||||||
amount,
|
amount,
|
||||||
ifscCode,
|
ifscCode,
|
||||||
beneficiaryName,
|
beneficiaryName,
|
||||||
remitterName
|
remitterName,
|
||||||
|
remarks
|
||||||
) {
|
) {
|
||||||
const commission = 0;
|
const commission = 0;
|
||||||
try {
|
try {
|
||||||
@@ -27,6 +28,7 @@ async function send(
|
|||||||
stAddress1: '',
|
stAddress1: '',
|
||||||
stAddress2: '',
|
stAddress2: '',
|
||||||
stAddress3: '',
|
stAddress3: '',
|
||||||
|
remarks: remarks
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
await recordInterBankTransaction(
|
await recordInterBankTransaction(
|
||||||
|
|||||||
@@ -15,6 +15,7 @@ const rtgsRoute = async (req, res) => {
|
|||||||
amount,
|
amount,
|
||||||
beneficiaryName,
|
beneficiaryName,
|
||||||
remitterName,
|
remitterName,
|
||||||
|
remarks
|
||||||
} = req.body;
|
} = req.body;
|
||||||
|
|
||||||
try {
|
try {
|
||||||
@@ -25,7 +26,8 @@ const rtgsRoute = async (req, res) => {
|
|||||||
amount,
|
amount,
|
||||||
ifscCode,
|
ifscCode,
|
||||||
beneficiaryName,
|
beneficiaryName,
|
||||||
remitterName
|
remitterName,
|
||||||
|
remarks
|
||||||
);
|
);
|
||||||
|
|
||||||
if (result.status.startsWith('O.K.')) {
|
if (result.status.startsWith('O.K.')) {
|
||||||
|
|||||||
Reference in New Issue
Block a user