config changes

This commit is contained in:
2026-03-18 15:19:24 +05:30
parent 0c23bae325
commit 5e16a9d22a
212 changed files with 1353 additions and 5 deletions

View File

@@ -68,7 +68,13 @@ class NEFTDataMapper:
return ''
s = status.strip()
if s == 'PROS':
return 'PROCESSED'
return 'PROCESSED'
if s == 'SUSP':
return 'SUSPENDED'
if s == 'FAIL':
return 'FAILED'
if s == 'RVRS':
return 'REVERSED'
return s
except Exception as e:
logger.error(f"Error processing status: {e}")